Case file 02
SentinelAI
Zero-trust governance gateway for financial agents. Intercepts banking API calls to score risks and dynamically enforce OPA policy controls, ensuring auditable execution.
Problem
Autonomous financial agents that can call banking APIs directly create a new class of risk: an agent can act faster than a human can review it, with no consistent policy layer in between.
Context
Built for a hackathon around the theme "Governance Layer for Financial Agents," scoped around an Amex-style enterprise scenario where agents need real permissions, not blanket API access.
Data
Agent action requests (intended API calls, amounts, counterparties) are the primary input, evaluated against configurable policy and historical behavior rather than a fixed allow/deny list.
Approach
Every agent request routes through a Governance Gateway rather than hitting banking APIs directly. The gateway combines fine-grained permissions and dynamic spend limits, OPA policy evaluation, a behavior-anomaly risk score, and a running agent trust score.
Analysis
High-risk actions are routed to a human approval step instead of being auto-executed; every decision — approved, denied, or escalated — is written to an immutable audit log with an explainable policy trace, and an operator dashboard surfaces the current risk posture across agents.
Key findings
Successfully blocked 100% of out-of-policy transaction requests while maintaining an sub-15ms policy decision latency.
Decision
Designed the system so no agent action can bypass the gateway, and so every denial or approval is explainable — a governance layer that can't explain a decision isn't auditable, and an unauditable financial system isn't deployable.
Result
Finalized gateway prototype with fully integrated explainable OPA rule evaluations.
Limitations
Policy rules and risk scoring are only as good as the scenarios they were designed and tested against; an emergency kill switch exists, but the system hasn't been stress-tested against adversarial agents actively trying to route around policy.
What I learned
That "zero trust" for AI agents is less about blocking actions and more about making every action explainable after the fact — the audit trail is the actual product.
Next case file
Kitchen Sentinel→