← Web Agent Bridge · العربية

Governance SaaS

An append-only, signed audit trail for sovereign AI agents. Every refusal, every override, every policy event — captured, queryable, exportable for compliance.

Append-only event log

Every decision your agent makes against a constitutional article is recorded. Tampering would break the chain.

EU AI Act Article 12

One-click JSONL export designed for auditor ingestion. Per-workspace retention windows from 90 days to 7 years.

Multi-tenant by design

Workspaces with role-based access (owner, admin, reviewer, viewer). Per-tenant API key bindings prevent cross-writes.

Refusal analytics

Filter by event type, article, severity, source agent. See which guardrails fire most often and why.

Plans

Team

€99 / mo
  • 5 seats · 90-day retention
  • 100 000 events / month
  • JSONL export
  • Email support

Business

€499 / mo
  • 25 seats · 365-day retention
  • 2 M events / month
  • Custom dashboards
  • Priority support

Enterprise

From €2 500 / mo
  • Unlimited seats · 7-year retention
  • DPA + SCC + region pinning
  • Dedicated workspace cluster
  • SLA + onboarding engineer

Ingesting events

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."
  }'

Exporting (auditor-ready)

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.