dashclaw
Integrates with CrewAI to govern actions within CrewAI agent workflows, enforcing policies and requiring approvals for risky operations.
Routes pending approvals to Discord, allowing one-tap allow or deny via Discord notifications.
Integrates with LangChain via a callback handler to intercept and govern agent actions within LangChain applications.
Integrates with LangGraph to govern agent actions within LangGraph workflows.
Integrates with OpenAI Agents SDK to govern agent actions, enforcing policies and requiring approvals.
Routes pending approvals to Telegram, allowing one-tap allow or deny via Telegram notifications.
60-second proof path
Read the loop: DashClaw intercepts risky agent intent, enforces policy, records the decision, routes approval when required, and verifies the final outcome. Where the block is mechanical vs honored by the agent depends on the surface — hooks and server-executed capabilities halt the action itself; SDK/MCP/chat callers honor the decision. The per-surface table is
docs/architecture/enforcement-boundary.md.Try it hosted, no install: open hosted.dashclaw.io/connect, mint a trial workspace, and send your first governed action straight from the browser. Expected proof: the action lands in your decisions ledger, replayable.
Or run the local demo:
npx dashclaw-demo. Expected proof: a simulated high-risk deployment is blocked and opens Decision Replay.Self-host the runtime from the deploy guide, then run
npm run doctorlocally ordashclaw doctoragainst the hosted URL. Expected proof: the doctor command exits 0 or names the blocking setup item.Connect one agent with
DASHCLAW_BASE_URLandDASHCLAW_API_KEY. Expected proof: one action appears in/decisions, any held action appears in/approvals, and/api/setup/live-proofcan capture setup evidence for onboarding or CI.
Related MCP server: cordon
What DashClaw does
Intercept | Risky agent actions are evaluated before they execute. Block, warn, or hold for approval, by policy — halted mechanically on hook/gateway surfaces (Claude Code, Codex, Hermes, OpenClaw) and for capabilities DashClaw executes; honored cooperatively by SDK/MCP/chat callers (enforcement boundary). |
Verify identity | Agents authenticate with JWKS-verified OIDC bearer tokens (EdDSA / RSA / ECDSA). Replay protection rejects reused tokens; optional action binding scopes a token to one intended call. Cryptographic attribution, not self-assertion. |
Enforce | Declarative policies (risk thresholds, deploy gates, capability access rules, semantic checks) evaluate every reported action; a |
Approve | Pending approvals route to a dashboard queue, the CLI inbox, a mobile PWA, Telegram, or Discord, with one-tap allow or deny. |
Record | Every action becomes a replayable decision record: declared goal, reasoning, risk score, matched policies, assumptions, evidence. |
Finalize | Terminal outcomes are one-shot and durable. Lost confirmations are swept and surfaced, so retries do not double-execute. |
Govern external systems | The capability registry wraps real HTTP APIs with per-agent access rules, rate limits, and audit. Workflows compose these into multi-step governed runs. |
Improve | Code Sessions ingests Claude Code transcripts (Stop-hook live or JSONL backfill), prices the spend, surfaces optimizer signals (stuck loops, cache crater, context gaps), and distills sessions into an Optimal Files bundle — root CLAUDE.md, path-scoped rules, hooks, and skill packs — applied locally via |
The control plane, running
Real screenshots from a live instance governing a working agent fleet. Dark instrument panel, orange only where attention is required.
The decisions ledger. Every governed action lands here with its risk score, matched policies, signature state, and terminal outcome. 77,000+ decisions on this instance; each one replayable.
Mission Control. Fleet posture, the intervention queue, and a live ledger of governed events on one calm screen. Repeated signal occurrences collapse into one row; dismissing it clears them all.
Spend and posture, measured. Analytics prices every action and breaks enforcement down by agent and type. Governance posture is one gaming-resistant score: a policy only counts when replaying real traffic proves it fires, and drafting a policy never raises the number.
Choose your integration path
DashClaw meets agents where they already are. Every path lands on the same governance primitives, audit ledger, and approval queue — pick the one closest to how your agent already runs.
Coverage at a glance
If your agent is… | Use this path | Install |
Claude Code | Plugin + hooks |
|
Codex | Plugin |
|
Hermes Agent | Plugin (8 lifecycle hooks) |
|
OpenClaw | OpenClaw plugin |
|
Claude Desktop (chat, web, Cowork) | Custom connector (OAuth, no install) | Settings → Connectors → paste |
Any stdio MCP host | MCP server (stdio) |
|
Claude Managed Agents | MCP server (Streamable HTTP) | Point at |
LangChain | Python SDK callback handler |
|
CrewAI | Python SDK task callback / agent wrapper |
|
AutoGen | Python SDK instrumentation |
|
LangGraph, OpenAI Agents SDK | Node or Python SDK |
|
Custom / framework-less | Node or Python SDK |
|
Anything HTTP | REST API + webhooks |
Working end-to-end examples for each runtime live in examples/ — anthropic-governed-agent, autogen-governed, claude-code-review-agent, codex-review-agent, crewai-governed, langgraph-governed, managed-agent-governed, managed-agent-mcp, openai-agents-governed, and more.
1. Coding-agent plugins (Claude Code, Codex, Hermes Agent)
One plugin source, three ecosystems. Distributed via plugins/dashclaw/. Each manifest ships the MCP server config, the dashclaw-governance protocol skill, the dashclaw-platform-intelligence reference skill, and a distinct agent_id so Mission Control separates sessions per host.
# Claude Code — no clone needed: the CLI downloads the hooks bundle from your
# instance, wires ~/.claude/settings.json, and defaults to observe mode
npm i -g @dashclaw/cli
dashclaw install claude # prompts for endpoint + API key
dashclaw install claude --trial # browser signup on hosted.dashclaw.io (default), paste the key
# Codex — installer wires manifest, hooks, and AGENTS.md governance protocol
node cli/bin/dashclaw.js install codex --project /path/to/your/project
# Hermes Agent — 8 lifecycle hooks (pre/post tool, pre/post LLM, on-session
# start/end, secret redaction, subagent_stop ROI tracking)
bash scripts/install-hermes-plugin.sh # macOS / Linux
powershell -File scripts/install-hermes-plugin.ps1 # WindowsFor Claude Code specifically, dashclaw install claude governs Bash, Edit, Write, MultiEdit, sub-agent spawns, and every mcp__* tool call with semantic classification, risk scoring, and per-turn token capture — no SDK calls in your agent code, no repo clone. Identity is per-harness (the installer writes an explicit --agent-id onto each hook command, so Claude Code, Codex, and Hermes on one machine report as three distinct agents), and sub-agents appear as their own fleet identities (claude-code:explore) grouped under their parent in /agents, inheriting its permissions, targeted policies, and spend budgets. It starts in observe mode (decisions logged, nothing blocked); flip to enforce by setting DASHCLAW_HOOK_MODE=enforce in ~/.dashclaw/claude-hooks/.env. Working from a checkout instead, npm run hooks:install does the same wiring. Full details in hooks/README.md.
Verify it fires: pipe a fake tool call through the hook — a clean exit (and a guard evaluation when DashClaw is reachable) confirms the wiring. Use python3 if your system has no python on PATH; the installer picks the right one automatically.
echo '{"tool_name":"Bash","tool_input":{"command":"echo hello"},"tool_use_id":"test_001","session_id":"smoke"}' | python .claude/hooks/dashclaw_pretool.py2. MCP server (zero code, any MCP host)
@dashclaw/mcp-server exposes 33 governance MCP tools across 12 groups — core governance, optimal files, session continuity, credential hygiene, skill safety, open loops, learning + retrospection, agent inbox, agent identity, behavior learning, governance posture, work orders — plus 6 read-only resources (dashclaw://policies, dashclaw://capabilities, dashclaw://agent/{agent_id}/history, dashclaw://status, dashclaw://code-sessions/projects, dashclaw://code-sessions/sessions/{session_id}).
As of v2.0.0 the local stdio server also carries governed execution: provider tools for GitHub, Vercel, Neon, Stripe and ten more (each registering only when its credential env var is present), and stateful launch plans (create_launch_plan / get_launch_status / preflight_launch / verify_launch) that track the launch tail with reality-checked, never self-reported completion — every step through the same guard/policy/approval path. See mcp-server/README.md and mcp-server/docs/launch-plans.md.
Stdio (Claude Code, any stdio MCP client — not Claude Desktop chat, whose bundled Node crashes local MCP servers; Desktop uses the OAuth connector below):
{
"mcpServers": {
"dashclaw": {
"command": "npx",
"args": ["@dashclaw/mcp-server"],
"env": {
"DASHCLAW_URL": "https://your-dashclaw.vercel.app",
"DASHCLAW_API_KEY": "oc_live_xxx"
}
}
}
}Streamable HTTP (Claude Managed Agents, any remote MCP client): every DashClaw instance serves MCP at /api/mcp — no npm package, no client install. For Claude Desktop / claude.ai, add it as a custom connector (Settings → Connectors → paste https://<instance>/api/mcp): OAuth auto-discovers — no key in the UI — and tool calls attribute to the claude-desktop agent identity. Full walkthrough: docs/CLAUDE-DESKTOP-PLUGIN.md.
agent = client.beta.agents.create(
name="Governed Agent",
model="claude-sonnet-4-6",
tools=[{"type": "agent_toolset_20260401"}],
mcp_servers=[{
"type": "url",
"url": "https://your-dashclaw.vercel.app/api/mcp",
"headers": {"x-api-key": "oc_live_xxx"},
"name": "dashclaw"
}],
)3. Node and Python SDKs — including framework integrations
For custom agents, frameworks, and anywhere you want explicit control over what gets governed.
npm install dashclaw # Node 18+
pip install dashclaw # Python 3.7+147-method canonical Node surface: core governance, durable execution finality, scoring profiles, learning analytics, messaging, handoffs, security scanning, sessions, agent reputation, agent registry, x402 spend governance, work orders, drift detection, and the execution-studio domains (workflow templates, model strategies, knowledge collections, capability runtime). The Python SDK exposes 233 methods including ready-made framework integrations:
# LangChain — auto-log LLM calls, tool use, and costs
from dashclaw.integrations.langchain import DashClawCallbackHandler
agent.run("Hello world", callbacks=[DashClawCallbackHandler(claw)])
# CrewAI — per-task callback or agent-level instrumentation
from dashclaw.integrations.crewai import DashClawCrewIntegration
integration = DashClawCrewIntegration(claw)
analyst = integration.instrument_agent(analyst)
# AutoGen — multi-agent conversation monitoring
from dashclaw.integrations.autogen import DashClawAutoGenIntegration
DashClawAutoGenIntegration(claw).instrument_agent(assistant)Full method catalogues: sdk/README.md (Node, camelCase), sdk-python/README.md (Python, snake_case). The 4-step governance loop is in the Quick start below.
4. OpenClaw plugin
For agents built on OpenClaw, @dashclaw/openclaw-plugin wires governance into the lifecycle directly.
npm install @dashclaw/openclaw-pluginIt intercepts every tool-use call (before_tool_call, llm_output, after_tool_call, agent_end), calls guard / record / waitForApproval automatically, and ships a HOOK.md the openclaw CLI installs. Tool-classification vocabulary aligns with DashClaw guard action types so policies behave consistently across plugin, hook, and SDK paths.
5. Direct REST API and webhooks
Every governance primitive is reachable as HTTP. The stable contract is pinned in docs/openapi/critical-stable.openapi.json; the full inventory (332 routes: 57 stable, 24 beta, 251 experimental) is at docs/api-inventory.md. Webhook events include signal.detected, decision.created, action.created, lost_confirmation, and the rest of the catalog — configurable per org.
6. Work Orders — task-grade contracts + receipts
Work Orders turn an agent call into a contract: a typed input/output schema, a budget ceiling, and a self-verifying receipt. A caller submits an order against a registered type (validated, guard-gated, queued); any agent with an API key claims and completes it; the server validates the output, builds a SHA-256-hashed receipt (cost, timestamps, output hash, governance trail), and writes an audit record. DashClaw stays the control plane — execution is external workers via claim/complete, so there's no LLM key and no cron. Page at /work-orders, API at /api/work-orders, 8 SDK methods each (Node + Python), 2 MCP tools, and a ~75-line reference worker in examples/work-order-worker/.
7. Skills — governance protocol + live platform reference
Two drop-in skills, both available as zip bundles or source directories in public/downloads/ and auto-bundled into the coding-agent plugins:
dashclaw-governance— governance protocol skill. Teaches agents the decision tree (allow / warn / block / require_approval), action recording, approval-wait protocol, session lifecycle, plus six new sections for handoffs, secret hygiene, skill safety, action-scoped open loops, learning, and in-session retrospection.dashclaw-platform-intelligence— live API reference, env var contract, and troubleshooting playbook with progressive disclosure. Regenerated from the codebase on every release so it never drifts from the running runtime.
cp -r public/downloads/dashclaw-governance .claude/skills/
cp -r public/downloads/dashclaw-platform-intelligence .claude/skills/Or grab the zips from dashclaw.io/downloads. The platform-intelligence skill is also published on ClawHub.
Quick start
10-second demo
npx dashclaw-demoSpins up a local demo runtime, fires a simulated high-risk deployment, lets DashClaw block it, and opens Decision Replay in your browser. No setup, no accounts.
Real agent in 8 minutes (SDK path)
npm install dashclaw # or: pip install dashclawimport { DashClaw, GuardBlockedError, ApprovalDeniedError } from 'dashclaw';
const claw = new DashClaw({
baseUrl: process.env.DASHCLAW_BASE_URL,
apiKey: process.env.DASHCLAW_API_KEY,
agentId: 'my-agent',
});
// 1. Guard
const decision = await claw.guard({ action_type: 'deploy', risk_score: 80 });
// 2. Record
const action = await claw.createAction({
action_type: 'deploy',
declared_goal: 'Ship release 2.13.4 to production',
});
// 3. Verify reasoning basis
await claw.recordAssumption({
action_id: action.action_id,
assumption: 'Tests passed on the candidate commit',
});
// 4. Outcome (durable, retry-safe)
try {
// ...do the real work...
await claw.reportActionSuccess(action.action_id, 'Deployed 2.13.4');
} catch (err) {
await claw.reportActionFailure(action.action_id, err.message);
}Python uses the same shape with snake_case. Full reference: sdk/README.md. Step-by-step walkthrough: QUICK-START.md.
Deploy
Local
npx dashclaw upInstalls the app, provisions Postgres (Docker or embedded), generates secrets, mints your API key, applies migrations, starts on :3000, and offers to wire Claude Code hooks — one command, no accounts required.
Cloud
$0 to deploy. Vercel free tier plus Neon free tier. Click the button, add the Neon integration when prompted, fill in the env vars listed in .env.example. The schema migration runs as part of the build, so there is no manual migration step.
After deploy
Open the app at
https://your-app.vercel.appand sign in.Copy the integration snippet from Mission Control. It pre-fills your base URL and gives you a one-click API key.
Run it.
node --env-file=.env demo.jsfrom any client environment and watch the governed action land in your decisions ledger.
Optional
Live decision stream. Add Upstash Redis credentials (
UPSTASH_REDIS_REST_URL,UPSTASH_REDIS_REST_TOKEN) to get cross-instance event replay. Without it, Mission Control uses in-memory events, which is fine for getting started but does not persist across serverless invocations.Hosted trial mode. If you want DashClaw itself to mint trial workspaces (operator deployments only), follow
docs/hosted-deployment-runbook.md. That path needs Turnstile, cleanup secrets, and an operator-managed cron.Self-host without Vercel. A Dockerfile and standalone
next startpath are available; seeDockerfile. The schema migration inscripts/auto-migrate.mjsis idempotent and safe to re-run.
Durable execution finality
Approved actions now carry a terminal outcome separate from their lifecycle status. Five states, one-shot transitions, repository-level enforcement:
State | Meaning |
| Approved, no outcome reported yet. |
| Finished successfully. Set by the agent. |
| Started but did not finish. Set by the agent with a progress payload. |
| Attempted and errored. Set by the agent with an error message. |
| Timeout exceeded without a report. Set by the cron sweep. |
// Retry-safe poll before re-trying any approved action
const outcome = await claw.getActionOutcome(actionId);
switch (outcome.status) {
case 'pending': /* still in flight, wait */ break;
case 'completed': /* already executed, skip */ break;
case 'failed': /* safe to retry */ break;
case 'lost_confirmation': /* sweep gave up, safe to retry */ break;
case 'partial': /* clean up then retry */ break;
}
// Make the create itself retry-safe
const key = claw.deriveIdempotencyKey({
agent_id: 'deploy-bot', action_type: 'deploy', scope: 'prod-us-east', request_id,
});
await claw.createAction({ /* ... */, idempotency_key: key });POST /api/actions/[actionId]/outcome is one-shot: the first call wins, every subsequent POST returns 409 with current_status. A daily Vercel cron (hourly externally on Pro or via GitHub Actions) marks stale pending rows as lost_confirmation and emits a signal.detected event so subscribed webhooks know to investigate. Full spec: docs/architecture/durable-execution-finality.md.
Safety and governance model
DashClaw is not observability. It is control before execution. The model:
Every agent action is evaluated against active policies before the action runs. Policies are declarative; the policy builder ships with nine pre-built safety switches (Deploy Gate, Risk Threshold, Rate Limiter, and others), an AI generator, and YAML import.
Sensitive actions require human approval. Approvals route to the dashboard, the CLI (
@dashclaw/cli), the mobile PWA at/approve, Telegram, or Discord. Same action, any surface. Approval volume is governed too: when one policy (or the fleet) exceeds its interruption budget (default 10 per policy / 30 fleet-wide per 15-minute window), per-action pings collapse into a single flood banner on/approvalswith pause-rule and bulk-resolve controls — pending approvals are never auto-resolved, and the platform's own verification traffic is excluded from flood detection.Every decision is recorded. The decisions ledger is replayable: declared goal, reasoning, matched policies, assumptions, signals, and the final outcome.
Outcomes are durable. The five-state finality machine guarantees no silent double-execute on retry, and the sweep catches lost confirmations.
Evidence is exportable. Compliance evidence bundles (signed manifests, JSON exports) are produced from real action records, not synthetic fixtures.
Prompt injection scanning is on by default. Declared goals are scanned for injection patterns. Hits force a
blockdecision at guard time — halted mechanically on enforcing surfaces, honored by cooperative callers (enforcement boundary).Agent identity is cryptographically verified. Agents may present a JWKS-verified JWT instead of self-asserting
agent_id. DashClaw checks the signature against the issuer's published keys (EdDSA / RSA / ECDSA), rejects replayed tokens, and can bind a token to its intended action — the verifiedsuboverrides any body-suppliedagent_id. Fail-soft: a downed issuer never blocks a decision. Seedocs/agent-identity.md.
The full architecture map lives in PROJECT_DETAILS.md. The runtime API contract is in docs/architecture/runtime-api.md.
Approvals beyond the dashboard
Surface | Purpose | Setup |
Dashboard ( | Primary inbox for operators in front of a browser. | None. |
CLI ( | Terminal-first inbox. |
|
Mobile PWA ( | Phone-first allow/deny with risk score and policy. Add to home screen. | None. |
Telegram | Inline Approve/Reject buttons in an admin chat. | Optional. See |
Discord | Inline Approve/Deny on DM embeds. | Optional. See |
waitForApproval() unblocks within roughly one second regardless of which surface resolves the action. All surfaces hit the same /api/approvals/[actionId] endpoint.
Beyond the basics
Feature | Description | Docs |
Drift detection | Statistical reasoning and metric drift across sessions. | |
Capability registry | Wrap real HTTP APIs with per-agent access rules and health monitoring. | |
Workflow engine | Compose governance into multi-step runs with variables, | |
Scoring profiles | Multi-dimensional evaluation with weighted composites and auto-calibration. | |
Recovery recipes | Six built-in recipes mapping signals to remediations. | |
Agent profiles | Per-agent governance dashboard at | |
Analytics | Cost trends, action volume, agent and type breakdowns, policy enforcement stats, and token efficiency at | |
Doctor |
| |
Live host canary |
| |
Coverage truth | Every action row records how it closed ( | |
Fleet attribution | Every action carries its harness session ( |
Documentation
Quick start: eight-minute walkthrough from clone to first governed action.
/explain — interactive explainer: the governance loop, a guard-decision simulator, and a policy playground.
Node SDK reference: canonical reference for the
dashclawnpm package.Python SDK reference: same surface, snake_case.
SDK parity matrix: Node v2 vs Python coverage.
Agent identity guide: JWKS verification, replay protection, and action binding (Phase 2 / 2b / 2c).
Runtime API contract: minimal core governance endpoints.
Guard enforcement contract: fail-closed degradation, evaluation deadline, MCP/hook unavailable policy, idempotency keys, org kill switch.
API inventory: full route list with maturity tier.
Durable execution finality spec: five-state machine, sweep, idempotency.
Architecture map: system boundaries and SDK surface inventory.
Changelog: release history.
Security guide: operator-facing security model, controls, and coordinated disclosure.
License
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ucsandman/DashClaw'
If you have feedback or need assistance with the MCP directory API, please join our Discord server