An open-source engineering governance standard defining trust boundaries for conversational AI agents in high-stakes domains. MIT Licensed.
What is this?
An Open Governance Standard for Conversational Finance Agents is an open, MIT-licensed engineering specification that defines the structural governance components a conversational AI agent must implement before being deployed in any context where its outputs could create financial obligations, regulatory exposure, or consumer harm. It is not a software product. It is a public-domain technical specification β analogous to an RFC β that any enterprise with engineering resources can implement.
This standard is engineered under the AI Native Engineering paradigm: governance is not retrofitted onto AI systems after deployment as an external audit layer. Governance mechanisms β intent classification, authorization gating, generation boundary enforcement, circuit-breaking, and audit logging β are embedded as structural components from the first line of code. They are properties of the interaction architecture, not post-hoc content filters.
The standard addresses a structural vacuum: as systems shift from graphical user interfaces (GUI) to conversational user interfaces (CUI), AI agents make decisions about what to say, what to promise, and what to authorize. No shared, industry-level specification currently defines the trust boundaries within which these agents must operate.
Architecture
User β [Agent Runtime] β [Protocol Middleware] β [LLM]
β
βββββββ΄ββββββ
β Input β
β Safeguard β
βββββββ¬ββββββ
β
βββββββ΄ββββββ
β Intent β
βClassifier β
βββββββ¬ββββββ
β
ββββββββββββββββββββΌβββββββββββββββββββ
β β β
ββββββββ΄βββββββ ββββββββ΄βββββββ ββββββββ΄βββββββ
βAuthorizationβ β Generation β β Insurance β
β Trigger β β Boundary β β Fuse β
β Engine β β Engine β β Engine β
ββββββββ¬βββββββ ββββββββ¬βββββββ ββββββββ¬βββββββ
β β β
ββββββββββββββββββββΌβββββββββββββββββββ
β
βββββββ΄ββββββ
β Audit β
β Trail β
β Logger β
βββββββββββββ
Five-Layer Architecture
The standard defines five structural layers, each enforced at a specific point in the agent's generation pipeline:
- Input Safeguard Layer β Pre-processes user input to detect and neutralize prompt injection, PII leakage, and adversarial input patterns before downstream processing.
- Intent Classifier Layer β Classifies each conversational intent along two independent axes: Financial Commitment Risk (F0βF3) and Regulatory Sensitivity (R0βR3).
- Authorization Trigger Layer β Applies the Authorization Trigger Decision Table. If the classified intent requires authorization, the agent suspends generation and obtains explicit user confirmation before proceeding.
- Generation Boundary Layer β Enforces categorical prohibitions at two points: pre-generation (blocking before LLM invocation) and post-generation (suppressing violating output).
- Audit Trail Layer β Produces an immutable, hash-chained, machine-readable log of every generation, authorization, escalation, and circuit-break decision.
Core Mechanisms
- Authorization Trigger β A structured taxonomy of conversational intents that require explicit user authorization before an AI agent may proceed. Intents are classified along two axes: financial commitment risk (F0βF3) and regulatory sensitivity (R0βR3). The trigger fires before the agent generates any response.
- Generation Boundary β A categorical specification of content types an agent must never autonomously generate, including financial commitments, price guarantees, compliance representations, and discriminatory or deceptive outputs. Enforced at both pre-generation and post-generation stages.
- Insurance Fuse β A circuit-break mechanism that severs the agent's generation privilege in real time when conversation state reaches pre-defined compliance thresholds. Unlike Authorization Trigger, which suspends generation pending user confirmation, Insurance Fuse terminates generation authority outright and transfers control to a human operator or deterministic SOP. Trigger conditions include: cumulative conversation patterns approaching regulatory limits, user vulnerability signals, and multi-turn escalation trajectories exceeding safe bounds.
- Audit Trail β A standardized, immutable log format capturing every generation, authorization, escalation, and fuse-trigger decision with full decision-chain traceability, supporting both internal governance and third-party audit.
- Three-Tier Adoption Model β Lite (default configuration, zero customization), Standard (designated audit role), and Full (forkable for enterprise integration). The same specification serves both small organizations and large enterprises.
Core/Mapping Decoupling
A defining architectural property of this standard is the separation of core governance logic from jurisdiction-specific compliance rules. The five layers remain architecturally invariant across deployment contexts. Jurisdiction-specific requirements β retention periods, notification thresholds, additional prohibited content categories β are configured through a Compliance Mapping Layer without modifying the core specification.
Who is this for?
Any enterprise whose conversational AI agents handle interactions that touch payments, financial commitments, or regulated consumer decisions β including financial institutions, healthcare booking platforms, legal intake services, education enrollment systems, and retail delivery platforms.
Getting Started
- Lite β Read the spec. Deploy the reference implementation with default configuration. Zero customization required.
- Standard β Read the spec. Deploy the reference implementation. Assign one person to periodic audit review.
- Full β Fork the spec and reference implementation. Integrate with existing compliance infrastructure. Customize the compliance mapping layer.
See /spec for the full specification.
Repository Structure
βββ README.md β You are here
βββ LICENSE β MIT
βββ spec/ β The protocol specification (the core artifact)
βββ src/ β Reference implementation
βββ background/ β Research foundation β concept paper, architecture whitepaper, research proposal
Background
- Concept Paper β Academic framing: AI governance framework and trust mechanisms
- Architecture Whitepaper β The 5-Layer reference architecture
- Research Proposal β Empirical study design: GenAI as process innovation in organizational contexts
Comments