An append-only, signed audit trail for sovereign AI agents. Every refusal, every override, every policy event — captured, queryable, exportable for compliance.
Every decision your agent makes against a constitutional article is recorded. Tampering would break the chain.
One-click JSONL export designed for auditor ingestion. Per-workspace retention windows from 90 days to 7 years.
Workspaces with role-based access (owner, admin, reviewer, viewer). Per-tenant API key bindings prevent cross-writes.
Filter by event type, article, severity, source agent. See which guardrails fire most often and why.
curl -X POST https://www.webagentbridge.com/api/governance-saas/workspaces/$WS/events \
-H "X-API-Key: $WAB_KEY" \
-H "Content-Type: application/json" \
-d '{
"source": "shopping-agent-v3",
"event_type": "refusal",
"severity": "medium",
"subject": "user:1234 / merchant:example.com",
"article": "constitutional.privacy.v1#3",
"outcome": "refused",
"detail": "Refused to disclose payment method without user re-confirmation."
}'
curl -H "X-Workspace-Token: $WS_TOKEN" \
https://www.webagentbridge.com/api/governance-saas/workspaces/$WS/export \
> audit-trail.jsonl
To open a workspace, contact governance@webagentbridge.com or run the admin API with X-Admin-Token.