Documentation

Everything you need to evaluate, implement, and operate Claw EA.

Get started in 5 minutes

Install the SDK, generate a DID keypair, emit a proof bundle, and verify it.

1. Install the SDK

npm install @clawbureau/clawsig-sdk

2. Generate a DID keypair

npx clawsig keygen --out ./agent-key.json
# Output: did:key:z6Mkf...xy3m (your agent DID)

3. Sign a commit

COMMIT_SHA=$(git rev-parse HEAD)
npx clawsig sign "commit:$COMMIT_SHA" --key ./agent-key.json
# Output: commit.sig.json

4. Verify the signature

npx clawsig verify ./commit.sig.json
# Output: PASS — signature valid for did:key:z6Mkf...xy3m

5. Add to your CI pipeline

See the GitHub Actions proof pipeline guide for a complete workflow file.

Next steps