Observe
Intake and classify every agent action before it enters the loop.
Platform
Complete visibility into agent workflows — observe intake, govern with runtime AI policy at dispatch, prove enforcement with signed receipts.
The default layer every irreversible agent action passes through — not session-start prompts alone.
Dispatch architecture — every irreversible step gated
Intake and classify every agent action before it enters the loop.
Runtime AI policy at dispatch — BLOCK · ESCALATE · ALLOW on every irreversible step.2
Approve sends, publishes, and tool calls before execution — with signed receipts.
Tag every agent action before it enters the loop. Scope, tool use, and data-handling flags at the door.
Runtime policy eval on send, publish, and tool calls. BLOCK red-lines · ESCALATE to human · ALLOW with receipt.
Signed ledger per gate · tamper-FAIL · replay demo proves policy ran before the agent acted.
Integrations
Framework-agnostic dispatch layer. Generic patterns only — no vendor lock-in.
Policy eval wraps every tool invocation before execution.
Human approve gates via webhook callback on ESCALATE.
Trace spans for policy eval, gate, and receipt signing.
Versioned packs on disk — pinned on every signed receipt.
Governance metadata only — not full prompt dumps.
Minimal policy pack excerpt
version: "2.4.1"
gates:
- id: outbound_send
on: agent.tool.external_send
rules:
- match: data.classification == "pii"
verdict: BLOCK
- match: requires_human == true
verdict: ESCALATE
- default: ALLOW
receipt:
sign: ed25519
pin_policy_version: true