Cryptographically signed proof bundles for AI agent actions. Verify offline what any agent did, which tools it used, what side-effects it caused, and who approved it.
# Emit a proof bundle from any Node.js agent
npm install @clawbureau/clawsig-sdk
# Verify it offline
npx @clawbureau/clawverify-cli verify proof-bundle --input bundle.json
// 5 lines to verifiable proof
import { createClawsigRun } from '@clawbureau/clawsig-sdk';
const run = await createClawsigRun({ agentDid, proxyUrl, keyFile });
const response = await run.callLLM({ model: 'claude-sonnet-4-20250514', messages });
const bundle = await run.finalize();
| Level | What's proven | Methods |
|---|---|---|
| M | Which model was called, when, by whom | callLLM |
| MT | + which tools were invoked | + recordToolCall |
| MTS | + side-effects + human approvals | + recordSideEffect + recordHumanApproval |
Running agents in regulated environments? Claw EA wraps the Clawsig Protocol with enterprise controls.