claude-code) lets you run Anthropic’s Claude Code agent on your Clawboo team. Clawboo installs the Claude Code CLI, spawns it per task in an isolated git worktree, and reports results to the shared board. You get a 200,000-token context window, live streaming output, and real USD cost reporting for every run.
This is the runtime to reach for when you need deep, multi-file coding work with Anthropic’s models. Each agent works in its own worktree, can resume prior sessions, and attaches Clawboo’s Tasks, Memory, Tools, and TeamChat MCP servers automatically.
Capabilities
| Capability | Value |
|---|---|
| Streaming (live text deltas) | ✅ |
| MCP (Clawboo’s tool servers) | ✅ |
| Worktrees (isolated git workspace) | ✅ |
| Resume (continue a prior session) | ✅ |
| Tool approval gates | ✅ |
| Context window | 200,000 tokens |
| Persistent home across runs | ❌ |
Claude Code is stateless between runs — the cognition lives in the model, not in a durable per-identity home on disk. If you need an agent that compounds memory and skills across dispatches, see Hermes.
Prerequisites
- Node.js 22+ and
npm(bundled with Node). - An Anthropic API key. Alternatively, if you already have the
claudeCLI logged in on your machine, the SDK can fall back to that auth.
Connect from the Runtimes panel
Install the Claude Code CLI
In the Runtimes panel, click Install on the Claude Code card. Clawboo streams the install progress in a terminal box:The package is pinned to the current major version so a future breaking release is never auto-installed. The health binary Clawboo checks for is
claude.Connect your Anthropic API key
Once installed, the card moves to Needs auth. Click Connect and paste your Anthropic API key. Clawboo stores it in the encrypted vault under
ANTHROPIC_API_KEY and the card flips to Ready.Session resume
After each run, Clawboo captures the native Claude session ID. On a subsequent run of the same task by the same runtime, Clawboo passes that session ID back to the Claude Agent SDK — producing a genuine continuation of the prior session, not just a prose summary. Cross-runtime continuity (resuming on a different runtime) uses theAGENT_HANDOFF.json prose handoff instead.
Context window and session rotation
Claude Code’s 200,000-token context window drives Clawboo’s proactive session-rotation watermark. As a run approaches the limit, Clawboo can spin up a fresh successor session carrying a handoff note and continue the task — rather than failing when the window fills. When a run hits its turn ceiling, Clawboo treats this as a clean rotation signal, not an error.Real USD cost reporting
Claude Code reports actualtotal_cost_usd per run. Clawboo passes this straight through as a concrete costUsd on cost and done events — not an estimate. This means the budget kill-switch can enforce dollar caps on Claude Code runs.
Verify it worked
After connecting,GET /api/runtimes should show claude-code with connectionState: "ready" and health.ok: true. After running a task, check that the task advanced on the board, the worktree contains file changes and an AGENT_HANDOFF.json, and a report-up summary appears as a board comment.
Troubleshooting
See also
- Runtimes overview — the full capability matrix across all five runtimes
- Connecting runtimes — the install/connect/disconnect lifecycle and the encrypted vault
- Codex · Hermes · Clawboo Native · OpenClaw — the other runtimes