The Enterprise AI Agent Governance Framework: Action Blast Radius, Delegation Boundaries, and Reversibility Budgets for Agentic AI at Enterprise Scale
Arjun Jaggi   and   Aditya Karnam Gururaj Rao
Enterprise AI Research  ·  arjunjaggi.com
Concept Paper EAGF-2026-002  ·  Submitted August 2026  ·  arjunjaggi.com/papers/enterprise-ai-agent-governance.html

Executive Summary

Agentic AI systems, architectures in which large language models execute multi-step tasks by selecting and invoking real-world tools across extended sessions, introduce a class of enterprise governance risk that single-request LLM deployments do not. A model API call produces a completion that a human reviews before acting on. An agent produces file deletions, sent emails, database writes, and external API calls that take effect before any human is aware. The governance infrastructure required for this class of system is absent from most enterprise AI deployments in 2026. This paper introduces the Enterprise AI Agent Governance Framework (EAGF): a five-component architectural layer governing the lifecycle of agent sessions. Four findings are central to this paper:

  1. The agent governance gap is structurally distinct from the inference governance gap. The Enterprise AI Control Plane (EAGF companion paper, EACP-2026-001) governs individual inference requests. The EAGF governs sequences of actions taken autonomously across extended sessions. These are different governance problems requiring different controls; an organization with a mature EACP can simultaneously have no agent governance controls whatsoever.
  2. The Action Blast Radius of an uncontrolled agent is bounded only by its tool set and granted permissions. An agent with file system write access, email send capability, and database write permission can, in a single session and without human review, delete production files, send communications to external parties, and modify financial records. The EAGF's Action Classification Engine and Delegation Boundary Enforcer structurally bound this radius at policy definition time.
  3. Regulatory exposure for autonomous AI action is materially higher than for inference-only deployments. The EU AI Act (Regulation EU 2024/1689) applies its most stringent requirements to AI systems exercising autonomy in high-risk domains. OWASP's LLM Top 10 identifies Excessive Agency (LLM08) as a primary risk class for deployed LLM systems; the AI Access Policy Matrix defined in EACP-2026-001 is insufficient for agent governance without the three-dimensional Delegation Boundary extension defined in this paper.
  4. Implementation of the Contained architecture is indicatively achievable in 90 days. The Contained architecture establishes the minimum viable EAGF (action classification, delegation boundary enforcement, agent audit logging) within an indicative 90-day horizon for a team of three to five engineers, producing a bounded blast radius and a defensible audit trail for every agent session.

Abstract: Agentic AI systems, architectures in which large language models execute sequences of tool invocations across extended sessions without per-action human review, introduce enterprise governance requirements not addressed by existing LLM governance frameworks. The irreversible real-world consequences of agent actions, including file modifications, external communications, and database writes, create a governance risk class qualitatively distinct from the inference-level risks addressed by the Enterprise AI Control Plane (Jaggi and Rao, EACP-2026-001). This paper introduces the Enterprise AI Agent Governance Framework (EAGF): a five-component architectural layer governing agent session lifecycle, action authorization, audit logging, and human escalation. Three original contributions are presented. The Action Blast Radius is formally defined as the maximum irreversible consequence set reachable from a single agent invocation given its tool set and permission scope, providing a bounded, auditable governance parameter. The Agent Delegation Boundary is introduced as a three-dimensional control structure (principal, capability, context) extending the AI Access Policy Matrix to the multi-action agent case, not addressed by existing RBAC standards or the single-request policy model. The Reversibility Budget is defined as a session-level governance metric enabling automated policy enforcement across multi-action agent sessions without per-action human review. A four-tier maturity model for organizational self-assessment is presented alongside three reference deployment architectures: Contained, Extended, and Autonomous. The framework is evaluated against NIST AI RMF 1.0, the EU AI Act (Regulation EU 2024/1689), and ISO/IEC 42001:2023. An indicative 90-day implementation roadmap for the Contained architecture is provided.

Index Terms: enterprise AI governance, agentic AI, LLM agents, action blast radius, agent delegation boundary, reversibility budget, AI agent risk management, excessive agency, NIST AI RMF, EU AI Act compliance, ISO/IEC 42001, multi-step AI governance, tool-using LLMs, agent session governance


I. Introduction

The enterprise AI governance discipline has, to date, focused primarily on the risks of individual inference requests: a model receives a prompt, produces a completion, and a human or downstream system acts on the result. The governance controls for this model, including access policy, audit logging, cost attribution, and failure handling, are the subject of the companion paper EACP-2026-001 [9]. This paper addresses a structurally different problem.

Agentic AI systems, architectures grounded in the ReAct paradigm of Yao et al. [1] and extended by tool-using model architectures including those described by Schick et al. [2], execute tasks by selecting actions from a set of available tools and invoking them in sequence. Unlike a single inference call, an agent session may span dozens of tool invocations, produce irreversible real-world side effects at each step, and complete without any human reviewing the intermediate decisions. The agent's reasoning traces, which contain the decision logic that produced each action, are generated and discarded within the session unless explicitly logged.

OWASP's Top 10 for LLM Applications identifies Excessive Agency (LLM08) as a primary risk class for deployed LLM systems, characterizing it as the condition where an LLM-based system has been granted more capabilities, permissions, or autonomy than required to accomplish its task [4]. Excessive agency is not a model property; it is a governance property. It emerges from the absence of bounded delegation policies and action classification controls, not from model behavior. The EAGF addresses it structurally.

IBM's Cost of a Data Breach Report 2024 records a $4.88 million mean breach cost and a $1.88 million differential between organizations with and without AI and automation in security operations [7]. This differential reflects the observability and response speed advantages that a mature governance layer enables. For agentic systems, where a single compromised or misdirected agent session can execute dozens of consequential actions before detection, the governance differential is substantially wider.

This paper makes four primary contributions:

  • The Enterprise AI Agent Governance Framework (EAGF) is introduced as a named, bounded architectural concept positioned between the application layer that spawns agents and the tool execution layer where agent actions take real-world effect.
  • The Action Blast Radius is formally defined as the maximum irreversible consequence set reachable from a single agent invocation, providing a bounded governance parameter enabling least-privilege agent design and organizational risk assessment.
  • The Agent Delegation Boundary is introduced as a named three-dimensional control structure (principal, capability, context) extending the AI Access Policy Matrix [9] to the multi-action agent case. A complete Delegation Boundary specification is a necessary prerequisite for least-privilege agent governance not achievable through single-request policy models alone.
  • The Reversibility Budget is defined as a session-level governance metric providing a continuous, automatable measure of accumulated irreversibility within an agent session. A minimum reversibility budget policy enables automated human escalation without requiring per-action review, resolving the latency-governance tension in operational agent deployments.
Observation 1: The Agent Reasoning Trace Irreversibility Property
Agent reasoning traces share the governance property identified for inference logs in EACP-2026-001 [9]: if not captured at execution time, they cannot be reconstructed. An agent executing a 30-step task that deletes database records in step 27 and is not logged has permanently destroyed the forensic record of why it took that action. Unlike single-inference logs, agent reasoning traces are substantially longer, contain multiple intermediate decision points, and are significantly more valuable for incident investigation because they reveal how the agent interpreted its context at each branching decision. Their loss is correspondingly more consequential for regulatory compliance and incident response.
II. Background: Agentic AI Architectures and the Governance Gap
A. The ReAct Architecture and Tool-Using Agents

Yao et al. introduced the ReAct paradigm as an architecture for language model agents that interleave reasoning traces with action execution [1]. In the ReAct pattern, the model generates a reasoning step ("Thought"), selects an action ("Act"), observes the result ("Observe"), and iterates until the task is complete. Each action step can invoke a real-world tool. Schick et al. demonstrated that language models can learn to invoke APIs and external tools through in-context examples, extending the single-completion model to one in which the model operates as an autonomous orchestrator of external capabilities [2].

B. The Governance Gap in Agentic Deployments

The ReAct and tool-use architectures create a governance gap with four characteristics not present in single-inference deployments. First, actions are irreversible: the agent can send an email, modify a file, or write a database record before any governance control is applied after the fact. Second, action sequences compound: a single misdirected agent session can chain many irreversible actions in rapid sequence before any human observes the outcome. Third, intent is opaque without logging: the reasoning trace that motivated each action is discarded unless explicitly captured, making post-hoc incident investigation impossible. Fourth, the attack surface extends: prompt injection techniques can redirect an agent's action sequence by modifying tool outputs, a vector not present in single-request architectures.

C. The Control Plane Analogy

The EAGF is architecturally analogous to the Enterprise AI Control Plane described in EACP-2026-001 [9], which drew its structural precedent from software-defined networking and cloud infrastructure control planes. Where the EACP interposes between the application layer and the model layer to govern individual inference requests, the EAGF interposes between the application layer that spawns agents and the tool execution layer where agents take real-world actions. The EACP governs what models receive; the EAGF governs what agents do. Both are necessary; neither is sufficient alone.

III. The Enterprise AI Agent Governance Framework

The Enterprise AI Agent Governance Framework is defined as the architectural layer positioned between the agent orchestration layer (which spawns and directs agent sessions) and the tool execution layer (where agent actions produce real-world effects). The EAGF evaluates each proposed agent action against organizational policy before execution, logs every reasoning step and action outcome to an immutable audit record, tracks session-level governance state, and escalates to human review when policy thresholds are reached.

The EAGF comprises five components. Fig. 1 presents the reference architecture. Table I presents the failure mode analysis for each component.

Table I. EAGF Component Failure Mode Analysis
Component Primary Failure Mode (Absent) Organizational Consequence
Action Classification Engine All agent actions treated as equivalent regardless of reversibility or blast radius category No automated differentiation between low-risk reversible actions and high-risk irreversible ones; governance decisions cannot be calibrated by action consequence; policy enforcement is binary (all or nothing) rather than risk-proportionate
Delegation Boundary Enforcer Agents operate with implicit maximum permissions; no policy check at action invocation time Excessive agency (OWASP LLM08) [4] is structurally enabled; prompt injection attacks can direct agents to take actions outside the intended task scope; no audit trail of boundary violations; highest regulatory exposure of any EAGF component
Reversibility Budget Monitor No session-level view of accumulated irreversibility; governance decisions are made action-by-action without session context An agent session can accumulate many irreversible actions before any governance threshold is triggered; no automated escalation mechanism; human reviewers must monitor agent sessions manually to detect accumulating risk
Agent Audit Logger Reasoning traces and action outcomes are not persisted; session state is lost at completion Forensic investigation of agent behavior after an incident is impossible; regulatory compliance demonstration (EU AI Act Article 12, NIST AI RMF Manage function) is not achievable; model drift in agent decision patterns cannot be detected; the Agent Reasoning Trace Irreversibility Property (Observation 1) applies with amplified consequence
Human Escalation Orchestrator No automated trigger for human review; agents complete sessions of arbitrary length and irreversibility autonomously No structured mechanism to insert human judgment at policy-defined checkpoints; agents operating near or beyond their blast radius boundary continue without oversight; incident response depends on human observers noticing anomalous behavior rather than systematic detection
Failure modes characterize the direct consequence of operating agentic AI systems without each component. Organizations commonly deploy agents with partial governance coverage, where a component exists for some agent classes but not others; partial absence produces proportionally partial failure modes.
AGENT ORCHESTRATION LAYER CRM Agent opportunity management Code Agent repo + PR automation SOC Agent alert triage + response Data Agent pipeline orchestration Document Agent research + synthesis spawn sessions ENTERPRISE AI AGENT GOVERNANCE FRAMEWORK (EAGF) 1. ACTION CLASSIFICATION ENGINE Reversibility classification Blast radius category assignment Data classification check Pre-execution risk scoring 2. DELEGATION BOUNDARY ENFORCER Principal · capability · context check Out-of-boundary action blocking Policy violation logging Injection attempt detection 3. REVERSIBILITY BUDGET MONITOR Session reversibility tracking ρ(S) computation per action Budget threshold alerting Escalation trigger at ρ_min 4. AGENT AUDIT LOGGER Reasoning trace capture (per step) Action + outcome logging Escalation event logging Immutable session record 5. HUMAN ESCALATION ORCHESTRATOR Checkpoint insertion · Re-authorization workflow · Session suspension Blast radius threshold alerts · Boundary violation escalation Approval-gated action queue · Incident triage handoff classify · bound · monitor · log · escalate TOOL EXECUTION LAYER File System read / write / delete External APIs third-party services Email / Comms send / calendar / slack Database read / write / delete Code Runtime execution environment execute actions
Fig. 1. Reference architecture of the Enterprise AI Agent Governance Framework (EAGF). The EAGF interposes between the agent orchestration layer (which spawns agent sessions) and the tool execution layer (where agents produce real-world effects). Five components govern the lifecycle of every agent action. Return arrow (dashed) represents tool output routed back through audit logging before the agent reasoning loop receives it.
A. Component 1: Action Classification Engine

The Action Classification Engine evaluates each agent-proposed action before execution, assigning it a reversibility classification and a blast radius category. The reversibility classification determines whether the action can be undone: a database read is reversible; a sent email is irreversible; a file modification may be reversible (if version-controlled) or irreversible (if not). The blast radius category determines the scope of potential consequence: an internal API call has a bounded organizational blast radius; an external API call may have an unbounded one.

Fig. 2 presents a directional illustration of relative reversibility and blast radius by action category. The Action Classification Engine operationalizes this taxonomy as a pre-execution classification policy, enabling downstream components to apply risk-proportionate governance without requiring human review of every action.

Definition: Action Blast Radius
For an agent A operating with tool set T and permission scope S, the Action Blast Radius R(A) is the set of all irreversible real-world state changes reachable from a single agent invocation through any sequence of tool calls permitted by T ∩ S. R(A) is bounded by the intersection of tool capabilities and granted permissions. The governance objective is to minimize R(A) to the minimum required for the agent's operational purpose. An agent's blast radius is a design-time governance parameter; it is determined by which tools are granted, not by how the agent chooses to use them. Organizations can audit R(A) for each deployed agent class before any session is executed.
B. Component 2: Delegation Boundary Enforcer

The Delegation Boundary Enforcer validates each proposed action against the organization's Agent Delegation Boundary before permitting execution. The Delegation Boundary extends the AI Access Policy Matrix defined in EACP-2026-001 [9] to the multi-action agent case. Where the AI Access Policy Matrix governs a single (principal, capability, data classification) triple mapping to a permitted model provider, the Agent Delegation Boundary governs a (principal, capability, context) triple mapping to a permitted action set within an agent session.

Definition: Agent Delegation Boundary
For an organization with principal set P, agent capability set C, and session context set X, the Agent Delegation Boundary B is a function B: P × C × X → 2Actions ∪ {deny} that maps each (principal, capability, context) triple to the set of actions the agent may execute on behalf of that principal in that context, or to a denial. Actions proposed by the agent that fall outside B(p, c, x) are blocked by the Delegation Boundary Enforcer and logged as boundary violations. An organization without a defined Agent Delegation Boundary implicitly assigns B(p, c, x) = all possible actions for all agents in all contexts, representing the highest-risk default and the structural enabler of the Excessive Agency condition identified in OWASP LLM08 [4].

The Delegation Boundary Enforcer also provides structural defense against prompt injection: if injected instructions direct the agent to take an action outside B(p, c, x), the action is blocked regardless of the agent's reasoning. The agent's reasoning may be compromised; the boundary policy is enforced externally and cannot be overridden by the agent.

C. Component 3: Reversibility Budget Monitor

The Reversibility Budget Monitor tracks the session-level ratio of reversible to irreversible actions in real time. This metric, the Reversibility Budget, provides a continuous governance parameter enabling automated escalation decisions without requiring per-action human review.

Definition: Reversibility Budget
For an agent session S containing n completed actions, each classified as reversible (r) or irreversible (i) by the Action Classification Engine, the Reversibility Budget ρ(S) = |{aj : aj is reversible}| / n. ρ(S) ranges from 0 (all actions irreversible) to 1 (all actions reversible). An organization's agent governance policy specifies a minimum reversibility budget ρmin for each agent class. When ρ(S) falls at or below ρmin, the Reversibility Budget Monitor signals the Human Escalation Orchestrator to insert a checkpoint before the next action. The Reversibility Budget converts the continuous governance question "how much irreversible action has this session accumulated?" into an automatable policy threshold.
D. Component 4: Agent Audit Logger

The Agent Audit Logger creates an immutable record of every reasoning step, proposed action, Delegation Boundary check outcome, action execution result, and escalation event within an agent session. This component is the mechanism by which the EAGF enables post-hoc forensic investigation, regulatory compliance demonstration, and systematic quality management for agent behavior.

The NIST AI RMF Manage function requires organizations to respond to AI risks in deployment [5]. For agentic systems, responding to AI risks requires knowing what decisions the agent made and why. Without the Agent Audit Logger, the agent's reasoning traces are lost at session completion. The Agent Reasoning Trace Irreversibility Property (Observation 1) applies: no subsequent investment can reconstruct the reasoning that led to a given irreversible action.

E. Component 5: Human Escalation Orchestrator

The Human Escalation Orchestrator manages the workflow by which agent sessions are paused and human judgment is inserted at governance-defined checkpoints. Escalation triggers include: the Reversibility Budget Monitor reaching ρmin; the Delegation Boundary Enforcer detecting a proposed out-of-boundary action; the Action Classification Engine scoring a proposed action above a configured blast radius threshold; and the Agent Audit Logger detecting a reasoning pattern associated with prompt injection or goal drift.

The Human Escalation Orchestrator resolves the central tension in operational agent deployment: agents are valuable because they reduce human review burden, but governance requires human judgment at high-consequence decision points. The Reversibility Budget and Delegation Boundary provide the policy precision required to minimize escalations to those genuinely requiring human judgment, rather than escalating every action or escalating nothing.

IV. Agent Governance Maturity Assessment Model

A four-tier maturity model is defined for EAGF assessment, using the same tier nomenclature as the EACP companion paper [9]: Ad Hoc, Defined, Managed, and Optimizing, adapted from the CMMI framework's five-level progression. In practitioner observation, most enterprise agent deployments in 2026 operate without formal EAGF infrastructure; Fig. 2 illustrates directional relative risk by action category and Fig. 3 presents the maturity concentration heatmap across the five EAGF components.

Fig. 2. Directional illustration of relative blast radius and irreversibility by agent action category, normalized to a 0-100 risk index. Values represent practitioner assessment of relative governance priority, not empirical measurement of observed breach frequency. Reversible actions (read, query) present the lowest blast radius; actions with external scope or permanent state change (database delete, external communication, code execution) present the highest. Organizations should calibrate their own Action Classification taxonomy to reflect their specific tool set and data environment.
Fig. 3. EAGF component maturity concentration heatmap. Rows represent five governance components; columns represent the four maturity tiers. Cell values indicate estimated proportion of enterprise agent deployments at each tier based on practitioner assessment. This heatmap is an illustrative reference tool; values are not derived from systematic survey data and should not be cited as empirical findings. Darker shading indicates higher estimated concentration.
Tier 1: Ad Hoc
No formal EAGF component exists for this capability. Agents are deployed with tool access determined by application developers without centralized policy review. Blast radius is bounded only by the provider's API permissions and the developer's choices. All failure modes in Table I are active. Governance outcomes depend entirely on individual developer judgment and are not repeatable across teams.
Tier 2: Defined
A component exists and is documented, but coverage is incomplete. An action classification taxonomy may exist on paper but is not enforced at runtime. Delegation boundaries may be defined for some agent classes but not others. Audit logging may exist for some sessions. Failure modes are partially mitigated for governed agent classes; ungoverned agents operate at Tier 1.
Tier 3: Managed
All production agent deployments are covered by the component. Action classification is enforced before every action execution. Delegation boundaries are defined and enforced for all agent classes. Audit logs are captured for every session. Reversibility budget monitoring is active. Human escalation workflows are tested and operational. Metrics are reviewed regularly and integrated with existing security operations.
Tier 4: Optimizing
The component is automated, policy-driven, and continuously improved. Delegation boundaries are expressed as policy-as-code and version-controlled. Blast radius assessments for new agent tools are automated. Reversibility budget thresholds are calibrated based on observed session data. Audit logs feed drift detection and anomaly identification pipelines. Agent governance is integrated into the AI development lifecycle, with governance review at tool grant time rather than retrospectively.
V. Reference Deployment Architectures

Three reference architectures are defined for organizations at different maturity levels. As with the EACP companion reference architectures [9], these are reference configurations illustrating minimum viable EAGF for each tier, not prescriptive implementations.

A. Architecture 1: Contained (Tiers 1-2)

The Contained architecture establishes the minimum viable EAGF for organizations beginning agent governance implementation. Priority sequence: Action Classification Engine first (to bound blast radius before any session executes), followed by Delegation Boundary Enforcer (to enforce least-privilege access by agent class), followed by Agent Audit Logger (to create the session record required for compliance attestation). Reversibility Budget Monitor and Human Escalation Orchestrator are deferred to the Extended architecture.

In the Contained architecture, high-risk actions (above a configured blast radius threshold) require human approval before execution. This makes all agent actions with irreversible external consequence human-gated, at the cost of reduced agent autonomy. The Contained architecture is appropriate for initial pilot deployments and for agent classes operating on high-risk data. Table II presents the indicative 90-day implementation roadmap for the Contained architecture.

B. Architecture 2: Extended (Tier 3)

The Extended architecture adds the Reversibility Budget Monitor and Human Escalation Orchestrator. At this tier, agents execute reversible actions autonomously; the Reversibility Budget Monitor tracks accumulated irreversibility across the session; and escalation is triggered when ρ(S) approaches ρmin rather than at each individual irreversible action. This substantially reduces human review burden while maintaining governance over session-level risk accumulation.

The Extended architecture integrates with existing enterprise infrastructure: the Agent Audit Logger feeds the organization's SIEM; the Delegation Boundary Enforcer integrates with the enterprise identity provider; and the Human Escalation Orchestrator integrates with existing ticketing and notification workflows.

C. Architecture 3: Autonomous (Tier 4)

The Autonomous architecture adds continuous evaluation pipelines and policy-as-code for delegation boundaries and blast radius thresholds. At this tier, agents execute all actions within their defined Delegation Boundary autonomously; the Reversibility Budget Monitor adjusts ρmin dynamically based on session context and historical behavior; and the Human Escalation Orchestrator is reserved for boundary violations and anomalous reasoning patterns rather than routine budget exhaustion.

The Autonomous architecture aligns with the NIST AI RMF Govern function, requiring organizations to establish policies that are enforced programmatically rather than through manual review [5]. ISO/IEC 42001:2023 management system requirements are satisfiable through the documented policy artifacts and audit evidence produced by this architecture [8].

Table II. Contained Architecture: Indicative 90-Day Implementation Roadmap
Phase Weeks Milestone Success Criterion
Phase 1
Action Classification
1-4 Reversibility taxonomy defined for all tools in scope; action classifier implemented and tested against representative agent workloads; blast radius categories documented for each agent class 100% of agent-proposed actions receive a reversibility classification before execution; blast radius category defined and signed off for every deployed agent class; taxonomy document version-controlled and reviewed by security team
Phase 2
Delegation Boundary + Audit Logger
5-8 Delegation boundaries defined for all agent classes; Boundary Enforcer implemented and blocking out-of-boundary actions; Agent Audit Logger capturing reasoning traces and action outcomes for all production sessions Zero out-of-boundary actions execute without a logged blocking event; 100% of production agent sessions produce an immutable audit record; boundary policy reviewed and approved by CISO or delegated authority
Phase 3
Human Escalation for High-Risk Actions
9-12 High blast radius actions (above configured threshold) routed to human approval queue before execution; escalation workflow tested end-to-end; first monthly agent governance review conducted with security and compliance stakeholders Mean time from escalation trigger to human decision under 4 hours for standard business hours; zero high-risk actions execute without logged human approval; agent governance metrics present in security operations review
Contained architecture implementation is indicative and assumes a team of 3-5 engineers and existing cloud infrastructure. Actual timelines depend on agent deployment complexity, existing tooling, and team capacity. Phase sequencing prioritizes blast radius bounding (highest immediate risk reduction) before audit logging and human escalation workflow.
VI. Regulatory Alignment
A. NIST AI Risk Management Framework

The NIST AI RMF 1.0 organizes AI risk management around four functions: Govern, Map, Measure, and Manage [5]. The EAGF provides direct operational support for each function in the agent context. The Govern function is operationalized by the Delegation Boundary Enforcer, which enforces policy at the action level. The Map function is supported by the Action Classification Engine's blast radius assessment, which identifies agent risks in context before deployment. The Measure function is supported by the Reversibility Budget Monitor's continuous session-level risk metric. The Manage function is supported by the Human Escalation Orchestrator's checkpoint and response workflow.

B. EU AI Act (Regulation EU 2024/1689)

The EU AI Act applies particularly stringent requirements to AI systems that exercise autonomy in high-risk domains listed in Annex III [6]. Agentic AI systems deployed in high-risk domains, including employment, education, law enforcement, and critical infrastructure, are subject to Article 9 quality management requirements, Article 12 automatic logging requirements, and Article 13 transparency requirements. The EAGF's Agent Audit Logger directly addresses Article 12; the Delegation Boundary Enforcer and its policy documentation support Article 9.

Penalties under the EU AI Act reach 7% of global annual turnover for prohibited practice violations (Article 85(3)) and 3% for provider and deployer obligation violations including logging and transparency requirements (Article 85(2)) [6]. Agentic systems taking autonomous action in high-risk domains face the full penalty exposure of the high-risk system provisions; the EAGF's Contained architecture represents the minimum governance posture for defensible compliance.

C. ISO/IEC 42001:2023

ISO/IEC 42001:2023 requires organizations to establish documented controls for AI risk management and maintain evidence of management system effectiveness [8]. The EAGF's Delegation Boundary policy documentation maps directly to ISO 42001's controls for AI system access and data governance. The Agent Audit Logger provides the measurement and monitoring evidence required by the standard's performance evaluation clause. Organizations pursuing ISO 42001 certification will find that Extended-tier EAGF maturity provides substantial control evidence for agent governance specifically, a gap area in many current ISO 42001 implementations that were designed before widespread enterprise agent deployment.

VII. Return on Investment Framework

The business case for EAGF investment rests on four value driver categories: breach and incident cost reduction, regulatory penalty avoidance, engineering overhead reduction, and agent trust acceleration. Table III presents the value driver framework with mechanism, evidence basis, and measurement approach for each category.

Table III. EAGF Value Drivers and Return on Investment Framework
Value Driver Mechanism Evidence Basis Measurement Approach
Breach and Incident Cost Reduction
(Boundary Enforcer, Audit Logger)
Delegation Boundary blocks unauthorized actions including those induced by prompt injection; Audit Logger enables rapid forensic investigation; blast radius bounding limits maximum incident scope IBM Cost of a Data Breach Report 2024: $4.88M mean breach cost; $1.88M differential for organizations with AI and automation in security operations [7]. Agent-induced incidents have wider blast radius than inference-only incidents; the differential is directionally wider for agentic systems. Track mean time to detect and contain agent-related security events before and after EAGF deployment. Measure reduction in out-of-boundary action attempts. Compare incident investigation time with and without full session audit logs.
Regulatory Penalty Avoidance
(Audit Logger, Boundary Enforcer)
Agent Audit Logger satisfies EU AI Act Article 12 logging for autonomous systems; Delegation Boundary policy documentation satisfies Article 9 quality management requirements; ISO 42001 control evidence is produced as a byproduct of Managed-tier operation EU AI Act Article 85 penalties: up to 7% of global annual turnover for prohibited practice violations; up to 3% for provider and deployer obligation violations including logging and quality management (Regulation EU 2024/1689) [6]. Agentic systems in Annex III high-risk categories face the full penalty exposure. Assess control coverage against EU AI Act Annex III checklist for each deployed agent class. Document audit trail completeness per agent session. Engage external counsel to validate regulatory coverage before claiming compliance.
Engineering Overhead Reduction
(All components)
Centralizing action classification, boundary enforcement, and audit logging eliminates duplicated implementation across agent teams; policy-as-code at Optimizing tier eliminates manual governance review per agent deployment; shared escalation infrastructure removes per-team workflow implementation Qualitative: organizations with multiple agent deployments report that blast radius assessment, permission scoping, and logging are reimplemented independently by each agent team in the absence of shared governance infrastructure. Overhead grows with agent deployment count. Track engineering hours allocated to agent governance per team before and after EAGF deployment. Measure reduction in governance review cycles per new agent deployment. Count duplicate action classification and logging implementations across agent repositories.
Agent Trust Acceleration
(Boundary Enforcer, Reversibility Monitor, Escalation Orchestrator)
Demonstrable blast radius bounds and delegation boundary policies enable risk-aware leadership sign-off on higher-autonomy agent deployments; documented governance posture enables compliance and legal teams to approve agent use cases they would otherwise reject; trust is accumulated through governed operation, not through assertion Qualitative: enterprise agent deployment is frequently blocked or scoped down by risk, legal, and compliance teams who cannot quantify agent risk. A defined blast radius and a documented delegation boundary convert an unquantified risk into a bounded, reviewable one. No empirical citation available; this driver is assessed qualitatively. Track number of agent use cases approved versus rejected before and after EAGF deployment. Measure time from agent proposal to governance sign-off. Survey risk, legal, and compliance stakeholders on agent deployment confidence before and after EAGF implementation.
Value drivers 1-2 are grounded in verifiable external evidence. Engineering overhead reduction and agent trust acceleration (drivers 3-4) are assessed qualitatively pending systematic survey data on enterprise agent governance. All financial estimates from external sources should be validated against the specific organization's circumstances before use in investment decisions.
VIII. Discussion
A. Leadership Decision Framework

The following decision framework maps organizational state to recommended EAGF architecture and primary implementation justification.

Leadership Decision Framework: EAGF Architecture Selection
Organizational State Recommended Architecture Primary Justification First Action
Pilot agent deployment; no formal governance; data sensitivity low to medium Contained (Tier 2) Baseline blast radius bounding before deployment volume grows; lowest implementation cost; produces defensible audit trail Define reversibility taxonomy and blast radius categories for all tools in scope; assign governance ownership to CISO or CTO
Multiple agent deployments; informal boundary controls; some compliance awareness Extended (Tier 3) Reversibility Budget Monitor eliminates per-action human review while maintaining session-level governance; SIEM integration and compliance evidence generation begin Implement Delegation Boundary Enforcer for all agent classes; activate Reversibility Budget Monitor with ρmin configured per agent risk tier; integrate audit logs with SIEM
Many agent deployments; mature security operations; FinOps established Autonomous (Tier 4) Policy-as-code eliminates manual governance overhead per agent deployment; continuous evaluation drives blast radius minimization; agent trust enables higher-value use cases Implement policy-as-code for delegation boundaries; activate continuous session analysis pipeline; establish agent governance board reporting cadence
Agentic AI in EU AI Act Annex III high-risk domain (any deployment count) Contained minimum; Extended preferred Article 12 logging creates immediate compliance obligation for autonomous systems; blast radius bounding required for defensible Article 9 quality management claim Activate Agent Audit Logger for all high-risk agent deployments immediately; define Delegation Boundary for each high-risk agent class; engage external counsel to validate Article 9 controls
Pursuing ISO/IEC 42001:2023 certification with active agent deployments Extended (Tier 3) ISO 42001 performance evaluation clause requires measurement and monitoring infrastructure; Extended architecture provides both session-level metrics and policy documentation required for certification evidence Map EAGF component documentation to ISO 42001 control requirements; schedule gap assessment with certification body; confirm agent session logs satisfy standard's audit evidence requirements
B. Reversibility Budget Dynamics

Fig. 4 illustrates the divergence between a governed and an ungoverned agent session in terms of reversibility budget. In the ungoverned case, the agent accumulates irreversible actions without any session-level tracking, eventually reaching a state of complete irreversibility while the session continues. In the governed case, the Reversibility Budget Monitor tracks ρ(S) continuously and triggers human escalation at the policy-defined threshold, preventing continued irreversible action accumulation beyond the organization's risk tolerance.

Fig. 4. Directional illustration of session reversibility budget ρ(S) over an agent session as a function of action sequence number. In the ungoverned case, ρ(S) decreases without intervention until the session is complete. The EAGF-governed case maintains ρ(S) tracking and triggers human escalation at the policy-defined minimum threshold (ρmin), preventing continuation of a session whose accumulated irreversibility has exceeded organizational risk tolerance. Values are illustrative; actual trajectories depend on task type and action mix.
C. Limitations

The EAGF framework as defined in this paper is a conceptual architecture, not an implementation specification. The action reversibility classification taxonomy requires organization-specific calibration; no universal taxonomy is possible because reversibility depends on the organization's infrastructure, version control practices, and recovery capabilities. The Reversibility Budget metric assumes that actions can be reliably classified as reversible or irreversible at pre-execution time; in practice, some actions have conditional reversibility that depends on downstream system state.

The maturity assessment model is based on practitioner assessment rather than systematic survey data and should be treated as a reference framework. The indicative 90-day implementation roadmap in Table II depends on organizational complexity, existing infrastructure, and team capacity; actual timelines will vary.

D. Relationship to the Enterprise AI Control Plane

The EAGF and EACP are complementary, not alternative, frameworks. The EACP governs individual inference requests: what models receive, at what cost, with what audit record, and under what access policy. The EAGF governs what agents do with the models' outputs: what actions they may take, in what sequence, with what blast radius, subject to what delegation constraints. An organization can have a mature EACP and simultaneously have no agent governance infrastructure; the EACP does not constrain what an application does with a model's completion. Both layers are required for a complete enterprise AI governance posture. The recommended implementation sequence is EACP first (governing the inference layer) followed by EAGF (governing the action layer), though organizations deploying agents before establishing an EACP should implement both concurrently.

E. Relationship to Existing AI Safety Frameworks

Constitutional AI, introduced by Bai et al., addresses the alignment of model behavior with specified principles at training and inference time [3]. Constitutional AI and related alignment techniques address the question of what models are disposed to do. The EAGF addresses the complementary question of what agents are permitted to do, governed externally regardless of model disposition. A constitutionally aligned model that is granted unrestricted tool access with no delegation boundary still presents an unlimited blast radius; a model with no alignment training that operates within a bounded delegation boundary and with a monitored reversibility budget presents a bounded organizational risk. The two approaches address different risk surfaces and are not alternatives.

IX. Conclusion

Enterprise AI agent deployments in 2026 are in an analogous governance state to enterprise AI inference deployments in 2024: the capability has arrived and is being deployed widely before the governance infrastructure required to operate it responsibly at scale exists. The Enterprise AI Control Plane addresses the inference governance gap; the EAGF addresses the action governance gap. The two gaps require two different frameworks because they involve different risks at different layers of the stack.

This paper has introduced three original contributions not present in existing AI agent governance literature: the Action Blast Radius as a bounded, auditable governance parameter enabling least-privilege agent design; the Agent Delegation Boundary as a named three-dimensional control structure extending the single-request policy model to the multi-action agent case; and the Reversibility Budget as a continuous, automatable session-level governance metric enabling human escalation to be triggered at policy-defined thresholds rather than at every action or never.

The governance decision for enterprise AI leaders deploying agents is not whether to bound the blast radius, but how large an unbounded radius they are willing to accept while they build the infrastructure to bound it. Every agent session that executes without a delegation boundary is a session that could, by design, do anything the tool set permits. Every agent session that executes without audit logging is a session whose forensic record is permanently destroyed. The EAGF provides the vocabulary, the architectural specification, and the indicative implementation roadmap. The window for deploying governed agents is open now.

References
  1. [1] S. Yao, J. Zhao, D. Yu, N. Du, I. Shafran, K. Narasimhan, and Y. Cao, "ReAct: Synergizing Reasoning and Acting in Language Models," in Proc. International Conference on Learning Representations (ICLR), 2023. arXiv:2210.03629.
  2. [2] T. Schick, J. Dwivedi-Yu, R. Dessi, R. Raileanu, M. Lomeli, L. Zettlemoyer, N. Cancedda, and T. Scialom, "Toolformer: Language Models Can Teach Themselves to Use Tools," in Proc. NeurIPS 2023. arXiv:2302.04761.
  3. [3] Y. Bai, S. Jones, K. Ndousse, A. Askell, A. Chen, N. DasSarma, D. Drain, S. Fort, D. Ganguli, T. Henighan, et al., "Constitutional AI: Harmlessness from AI Feedback," arXiv:2212.08073, Dec. 2022.
  4. [4] OWASP Foundation, OWASP Top 10 for Large Language Model Applications, Version 1.1, LLM08: Excessive Agency. OWASP, 2023. Available: owasp.org/www-project-top-10-for-large-language-model-applications/
  5. [5] National Institute of Standards and Technology, Artificial Intelligence Risk Management Framework (AI RMF 1.0). NIST AI 100-1, Jan. 2023. DOI: 10.6028/NIST.AI.100-1
  6. [6] European Parliament and Council of the European Union, "Regulation (EU) 2024/1689 laying down harmonised rules on artificial intelligence (Artificial Intelligence Act)," Official Journal of the European Union, L Series, 2024.
  7. [7] IBM Security, Cost of a Data Breach Report 2024. IBM Corporation, 2024. Available: ibm.com/reports/data-breach
  8. [8] International Organization for Standardization, ISO/IEC 42001:2023: Information Technology: Artificial Intelligence: Management System. ISO, Dec. 2023.
  9. [9] A. Jaggi and A.K.G. Rao, "The Enterprise AI Control Plane: A Governance and Orchestration Framework for Large Language Model Deployments at Scale," Concept Paper EACP-2026-001, Aug. 2026. Available: arjunjaggi.com/papers/enterprise-ai-control-plane.html
  10. [10] National Institute of Standards and Technology, Guide to Attribute Based Access Control (ABAC) Definition and Considerations. NIST SP 800-162, Jan. 2014. DOI: 10.6028/NIST.SP.800-162

© 2026 Arjun Jaggi and Aditya Karnam Gururaj Rao. Open reference model, free to use with attribution. arjunjaggi.com/papers/enterprise-ai-agent-governance.html