AgentClash Runtime Resources Setup

SkillCloud & infra

Use when configuring AgentClash workspace secrets, provider accounts, provider models, runtime profiles, workspace tools, and readiness checks required before agent builds, deployments, evals, or runs.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the AgentClash Runtime Resources Setup skill

What this skill tells your AI

The instructions your AI receives, as published by agentclash/agentclash in cli/internal/skills/snapshot/agentclash-runtime-resources-setup/SKILL.md and read by ahel’s review.

Purpose

Prepare the workspace infrastructure chain that lets AgentClash turn a ready agent build version into a runnable deployment: secrets, provider accounts, provider model IDs, runtime profiles, optional workspace tools, and readiness checks.

Use When

  • A deployment cannot run because provider accounts, provider model IDs, workspace secrets, runtime profiles, or workspace tools are missing.
  • A user has a ready agent build/version but does not yet have the runtime resources needed to deploy it.
  • A challenge pack or deployment references a secret, tool, provider model, provider account, or runtime profile that is unavailable in the selected workspace.
  • A coding agent needs a checklist before moving from CLI setup to agent build/deployment setup.

Do Not Use When

  • The CLI is not authenticated or no workspace is selected; use agentclash-cli-setup first.
  • The user is authoring challenge pack YAML fields; use challenge-pack skills after workspace resources are clear.
  • The user is creating the agent build itself; use agentclash-agent-build-author.
  • The user already has resource IDs and only needs to create/select a deployment; use agentclash-agent-deployment-setup.

Inputs Needed

  • Workspace ID and confirmation that agentclash doctor can reach it.
  • Provider key, such as openai, and the credential secret key name.
  • Desired provider model ID, or enough criteria to select one from the account's live model list.
  • Runtime profile requirements: execution target, trace mode, iteration/tool limits, timeouts, and sandbox/network policy.
  • Optional workspace tool names, tool kinds, and JSON specs.
  • Whether the user wants to create resources now or only audit readiness.

Environment

Use hosted production by default:

export AGENTCLASH_API_URL="https://api.agentclash.dev"

Commands that create or list workspace resources also need a resolved workspace:

agentclash doctor
agentclash secret list

If workspace resolution fails, run the CLI setup skill first and do not create resources yet.

Resource Order

  1. Verify CLI auth and workspace context.
  2. Store provider credentials as workspace secrets.
  3. Create a provider account that references a workspace secret.
  4. List models available through that provider account and choose a provider model ID.
  5. Create a runtime profile with execution and sandbox limits.
  6. Create optional workspace tools if deployments or packs expect reusable workspace tools.
  7. List resources and record IDs and the provider model ID for agent build/deployment setup.

Procedure

  1. Run agentclash doctor and stop on auth or workspace warnings.
  2. Run agentclash secret list to see which secret keys already exist. If a secret value is not already available in the user's shell, ask the user to set it themselves with agentclash secret set <KEY>; do not request or receive the value in chat.
  3. Create or select the provider account. Prefer credential_reference: "workspace-secret://KEY" over putting raw keys in JSON files.
  4. Run agentclash infra provider-account models <PROVIDER_ACCOUNT_ID> and choose the exact provider model ID needed by the deployment. The list is live when the provider supports discovery and may include static pricing metadata.
  5. Create or select a runtime profile. Keep limits explicit: iterations, tool calls, step timeout, run timeout, and sandbox/network policy.
  6. Create workspace tools only when the deployment or product workflow needs reusable workspace tool resources. Keep these separate from pack-defined composed tools.
  7. Re-list all resources and report the IDs and provider model ID downstream skills need.

Commands

Verify setup and workspace:

export AGENTCLASH_API_URL="https://api.agentclash.dev"
agentclash doctor

Store provider credentials as workspace secrets:

printf '%s' "$OPENAI_API_KEY" | agentclash secret set OPENAI_API_KEY
agentclash secret list

Create a provider account from a JSON file:

{
  "provider_key": "openai",
  "name": "OpenAI Workspace Account",
  "credential_reference": "workspace-secret://OPENAI_API_KEY",
  "limits_config": {
    "rpm": 60
  }
}
agentclash infra provider-account create --from-file provider-account.json
agentclash infra provider-account list
agentclash infra provider-account get <PROVIDER_ACCOUNT_ID>

List the models reachable through that account:

agentclash infra provider-account models <PROVIDER_ACCOUNT_ID>

Create a runtime profile:

{
  "name": "default-native",
  "execution_target": "native",
  "trace_mode": "full",
  "max_iterations": 24,
  "max_tool_calls": 32,
  "step_timeout_seconds": 120,
  "run_timeout_seconds": 1800,
  "profile_config": {
    "sandbox": {
      "allow_shell": true,
      "allow_network": false
    }
  }
}
agentclash infra runtime-profile create --from-file runtime-profile.json
agentclash infra runtime-profile list
agentclash infra runtime-profile get <RUNTIME_PROFILE_ID>

Optional workspace tools:

tool.json:

{
  "name": "inventory-api",
  "tool_kind": "http",
  "capability_key": "inventory.lookup",
  "definition": {}
}
agentclash infra tool list
agentclash infra tool create --from-file tool.json
agentclash infra tool get <TOOL_ID>

Archive or delete only with explicit user confirmation:

agentclash infra runtime-profile archive <RUNTIME_PROFILE_ID>
agentclash infra provider-account delete <PROVIDER_ACCOUNT_ID>
agentclash secret delete <SECRET_KEY>

Expected Output

  • secret list shows secret keys and timestamps, never secret values.
  • provider-account list shows provider key, account name, status, and ID.
  • provider-account models returns provider model IDs, display names, and pricing metadata when available.
  • runtime-profile list shows execution target, max iterations, and ID.
  • infra tool list shows workspace tool name, kind, lifecycle status, and ID.
  • The final handoff contains the provider account ID, provider model ID, runtime profile ID, relevant secret key names, and optional tool IDs.

Failure Modes

  • no workspace specified: run agentclash link, pass --workspace, set AGENTCLASH_WORKSPACE, or add project config with agentclash init.
  • Provider account creation fails because the secret is missing: run agentclash secret list, then set the expected key and use workspace-secret://KEY.
  • A raw api_key was passed and cannot be read back: expected behavior; the infrastructure manager stores it as a workspace secret named PROVIDER_<PROVIDER_KEY>_API_KEY and keeps only workspace-secret://PROVIDER_<PROVIDER_KEY>_API_KEY on the provider account. The provider key is uppercased and hyphens become underscores, so x-ai becomes PROVIDER_X_AI_API_KEY.
  • Model listing fails: run agentclash infra provider-account test <PROVIDER_ACCOUNT_ID> --model <MODEL_ID> to distinguish credential/connectivity failures, and verify the provider account is active.
  • Deployment setup later fails because no runtime profile exists: create or select a runtime profile and pass its ID into deployment setup.
  • Runs fail because network, shell, timeout, or tool-call limits are too strict: review profile_config, max_iterations, max_tool_calls, step_timeout_seconds, and run_timeout_seconds.
  • Workspace tools are confused with pack-defined tools: workspace tools are agentclash infra tool ... resources; pack-defined tools live inside challenge pack YAML.

Safety Notes

  • Never print, paste, request, receive, or commit raw provider keys. Prefer stdin for secret set; if the value is not already in the user's shell, ask the user to run the command themselves.
  • Prefer credential_reference: "workspace-secret://KEY" in provider account specs.
  • Treat delete and archive commands as destructive enough to require explicit user confirmation.
  • Use list and get before create, delete, or archive to avoid duplicating or mutating the wrong workspace resource.
  • Keep local/self-hosted API URLs explicit; hosted examples should use https://api.agentclash.dev.

Report Back Format

Workspace: <workspace-id>
Secrets: <KEY present | KEY missing>
Provider account: <id or action needed>
Provider model: <provider model ID>
Runtime profile: <id or action needed>
Workspace tools: <ids or none>
Readiness: <ready for deployment setup | blocked>
Next skill: agentclash-agent-build-author | agentclash-agent-deployment-setup
Notes: <credential, limit, sandbox, or tool caveats>

Related Skills

  • agentclash-cli-setup
  • agentclash-agent-build-author
  • agentclash-agent-deployment-setup
  • agentclash-challenge-pack-tools-sandbox

Related Docs

  • /docs-md/guides/configure-runtime-resources
  • /docs-md/concepts/agents-and-deployments
  • /docs-md/concepts/tools-network-and-secrets
  • /docs-md/reference/cli
  • /docs-md/reference/config

Signals

GitHub stars
30
Forks
2
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
agentclash-runtime-resources-setup
Source
github.com/agentclash/agentclash