03b206a). The current npm latest is clawboo@0.1.9, so npx clawboo installs 0.1.9 until the v0.2.0 tag is published. See Known Issues.Do I need OpenClaw to use Clawboo?
Do I need OpenClaw to use Clawboo?
builtIn: true, nothing to install) and needs only a provider API key. Paste an Anthropic, OpenAI, or OpenRouter key and you have a working team with no OpenClaw Gateway anywhere.The native-first onboarding flow seeds a leader + specialist team and drops you straight into chat. OpenClaw remains a first-class path if you already run it. See Quickstart (native) and the OpenClaw runtime.Which runtimes are supported?
Which runtimes are supported?
| Runtime | id | Built-in? | Auth |
|---|---|---|---|
| Clawboo Native | clawboo-native | Yes (in-process) | Provider API key |
| OpenClaw | openclaw | — (connected substrate) | Gateway device pairing |
| Claude Code | claude-code | No (npm) | ANTHROPIC_API_KEY |
| Codex | codex | No (npm) | OAuth (codex login) |
| Hermes | hermes | No (pip/pipx) | OPENROUTER_API_KEY |
Is my data sent anywhere?
Is my data sent anywhere?
Where is my data stored?
Where is my data stored?
~/.clawboo/ (override with CLAWBOO_HOME). That directory holds:clawboo.db— the SQLite database (agent registry, board, memory, chat history, settings, governance ledger, and event log — 27 tables)settings.json— gateway URL and first-run statesecrets/— the encrypted credentials vaultproxy-device-identity.json— the OpenClaw device identityapi-port.txt— the bound API port for discovery
~/.openclaw/ directory for interop; it never writes there. See data and state for the full directory map and backup instructions.Does Clawboo cost money?
Does Clawboo cost money?
Can agents run unattended?
Can agents run unattended?
once@<iso>). The schedule is a durable ledger row, so it survives restarts — boot-resume reconstructs every active Routine from the database. See scheduling and the recurring team work guide.Pair Routines with governance before leaving a fleet unattended: USD budgets (hard-cap opt-in), tool-loop circuit breakers, depth/fan-out caps, and approval gates keep an unsupervised run from running away. Verification (builder≠judge) keeps “done” meaning verified rather than merely claimed.The Express server process must stay up — if you stop it, scheduled work pauses until restart.How do I reset Clawboo?
How do I reset Clawboo?
createDb() re-bootstraps the database on the next connect.Reset just the data (keep your provider keys and settings):~/.clawboo first if any of it matters. See data and state for the WAL-sidecar caveat and full instructions.What is the difference between Atlas and the Ghost Graph?
What is the difference between Atlas and the Ghost Graph?
GhostGraphScope = 'atlas' | 'team'):- Ghost Graph (team scope) — renders one team: its Boos, their skills, and the routing edges between them. Embedded inside the team’s group chat.
- Atlas (atlas scope) — the global, all-teams view: Boo Zero presides at the top over per-team rows. Reached from the dedicated Atlas nav button.
How do I expose Clawboo on a network safely?
How do I expose Clawboo on a network safely?
127.0.0.1. Widening the bind is explicit opt-in: set the HOST (or HOSTNAME) environment variable. When you do, always also set STUDIO_ACCESS_TOKEN.The token activates the access gate: every /api/* route requires a valid cookie, set once by opening /?access_token=<token>. The gate compares tokens in constant time and folds path case before its prefix check. If you bind to a non-loopback interface without a token, the server logs a SECURITY warning at boot.One carve-out: loopback requests to /api/mcp/* are exempt from the gate so server-spawned runtimes can attach their MCP clients. Non-loopback /api/mcp/* requests still require the cookie. See security and the self-host guide.Can I use a local model?
Can I use a local model?
http://localhost:11434/v1 (override with OLLAMA_BASE_URL). Ollama is keyless; the trade-off is that its cost is reported as estimated rather than real USD. Configure it during native onboarding or in the model picker. See the native runtime.Is Clawboo multi-user or multi-tenant?
Is Clawboo multi-user or multi-tenant?
tenant_id column, but it is a dormant seam for a future multi-tenant / Postgres swap, not a wired-up feature. Every row is written with tenantId: null.To isolate data for multiple users today, run one Clawboo instance per user, each with its own CLAWBOO_HOME directory. See known issues.Do I have to keep the dashboard open for agents to work?
Do I have to keep the dashboard open for agents to work?
How do agents on different runtimes coordinate?
How do agents on different runtimes coordinate?
isUser=false so it can never be mistaken for a user instruction. See delegation and orchestration.My agent says 'done' but the work is broken — what stops that?
My agent says 'done' but the work is broken — what stops that?
done with a promotable verdict; otherwise it routes back or is marked completed_with_debt. The gate is intrinsic to the board’s state machine, not opt-in. See verification.See also
- Known Issues — candid limitations and the v0.2.0 vs 0.1.9 gap
- Glossary — canonical definitions
- Getting started — the two install paths
- Security — access gate and safe network exposure