6 min read · Runtime governance & process audits for AI agents
oci-agent solves this with an Actor-Critic separation and inspectable process audits. ThumbGate turns these process audits into deterministic pre-action gates, blocking unsafe tool dispatch until the critic emits an approved audit receipt.
In classical LLM benchmarks, evaluation is performed solely on the final output string. In production environments without objective ground truth (such as econometric causal inference, regulated medical intake, or complex platform deployments), output-only evaluations fail silently.
| Dimension | Netflix OCI Agent Workflow | ThumbGate Reliability Gateway |
|---|---|---|
| Primary Domain | Observational Causal Inference (Target Trial Emulation) | Universal Pre-Action Tool Interdiction & Agent Firewall |
| Agent Roles | Actor (Spec/Notebook Runner) + Critic (Bias Reviewer) | Proposer Agent + PreToolUse Verifier + Deterministic Policy Gate |
| Audit Mechanism | Process Audits (Notebooks, plots, placebo tests) | Attribution Receipts, Scoped State Verification, DPO Promotion |
| Enforcement Point | Post-execution critique & iteration loop | Pre-execution tool-call boundary (Allow / Warn / Deny) |
| Failure Recovery | Critic suggests spec tweaks; human oversight | Self-improving feedback loop promotes repeated mistakes to hard gates |
To prevent unvetted causal analysis or agent outputs from triggering downstream mutations, ThumbGate implements the actor-critic-process-audit gate template:
{
"gateId": "actor_critic_process_audit",
"category": "agent_governance",
"name": "Actor-Critic Process Audit Gate",
"description": "Requires an authenticated critic audit receipt before downstream mutation tools execute.",
"rules": [
{
"condition": "action.tier === 'write' || action.isDestructive",
"requirement": "action.receipt.criticRating === 'fully_satisfactory' || action.receipt.criticRating === 'satisfactory_with_caveats'",
"onFailure": "DENY",
"reason": "Process audit missing or critic rating not satisfactory."
}
]
}
npx thumbgate init
All pre-action gate safety guarantees are empirically validated: see VERIFICATION_EVIDENCE.md for machine-readable benchmark reports.