Getting Your First Agent Live

The Governance Gap: Why 72% of Enterprises Deploy Agents Without Accountability

Abstract illustration: The Governance Gap: Why 72% of Enterprises Deploy Agents Without Accountability

What you will have after reading this

A clear map of where enterprise agent governance breaks down, the specific production failures that follow, and a sequence for building accountability infrastructure before those failures reach you.

If your organisation is already moving agents toward production, the guide on what it takes to get your first agent live covers the operational side. This article covers what holds that operation accountable once it is running.


The deployment-governance gap is already measurable

Enterprises are running agents in production. According to Gravitee’s April 2026 State of AI Agent Security report, 80% of organisations are already deploying AI agents, but only 10% say they feel they have control over what those agents do. The same report found that only 7.2% of organisations have a named individual with formal accountability for AI agent behaviour.

That gap is not an accident. Agents get deployed through engineering teams whose job is to ship. Governance infrastructure, the ownership model, the access policy, the audit trail, gets treated as something to add later. CIO.com’s reporting found that 72% of enterprises lack accountability frameworks despite having agents in production. Later, for most of those organisations, has not arrived yet.

The pattern repeats across sectors. Banking and insurance lead on agent adoption at 47% of enterprises with at least one agent in production. Healthcare and government sit at 18% and 14% respectively. Governance maturity does not track with deployment rate in any of those categories.


Three places where the gap becomes a production failure

The governance gap is not theoretical. It surfaces in specific, repeatable failure modes. Three of them are already well documented.

Shared credentials across agents

When agents are deployed without individual identity, they share credentials. One credential covers multiple agents, sometimes across teams and environments. The consequence is that any agent with access to that credential can act as any other agent.

CSO Online’s reporting on enterprise deployments found that shared credentials across AI agents are now a documented production risk, with organisations unable to attribute actions to individual agents after the fact. An audit log that says “credential X performed action Y” tells you nothing useful if credential X is used by six agents across three workflows.

The fix is straightforward in principle: each agent gets its own identity, scoped to the minimum permissions it needs for its specific task. In practice, this requires someone to own the decision, which returns to the accountability problem. Without a named owner, the path of least resistance is a shared service account that everyone can use and no one audits. Understanding RBAC versus ABAC for agents is a practical starting point for scoping those identities correctly.

Bypassed approval workflows

The GhostApproval vulnerability, documented by Wiz in July 2026, showed how a coding assistant agent could be manipulated through prompt injection to bypass approval gates that were supposed to sit between the agent’s output and a production action. The agent had the technical ability to proceed without human sign-off, and the governance model assumed the approval workflow would always run. The vulnerability report made clear that the workflow itself was the only control, and when the workflow was bypassed, no secondary control existed.

This is the core problem with relying on process controls rather than layered governance. An agent that can take a consequential action should require an independent check on that action, not just a step in its own workflow that can be skipped. Runtime governance versus pre-deployment review are not alternatives; they are layers. The GhostApproval case is an example of what happens when runtime monitoring is absent.

Private data leaks through prompt injection

GitHub’s July 2026 documentation of prompt injection risks in agentic workflows described a scenario where an agent with access to private repository data could be manipulated by content in that repository to exfiltrate information outside its intended scope. The disclosure identified the agent’s access scope as the root cause. The agent had broader read access than its task required, and the injection gave it an instruction to use that access in an unintended way.

Minimum-privilege access policy, applied at the agent level rather than the team level, limits the blast radius of this class of attack. An agent that can only read the specific resources it needs for a specific task cannot leak data it was never permitted to see.

flowchart TD
    A[Agent receives task] --> B{Does agent identity exist?}
    B -- No --> C[Block deployment\nCreate scoped identity]
    B -- Yes --> D{Credentials scoped\nto minimum privilege?}
    D -- No --> E[Revoke shared credential\nAssign task-scoped access]
    D -- Yes --> F{Approval workflow\nhas independent check?}
    F -- No --> G[Add runtime monitor\nor human-in-loop gate]
    F -- Yes --> H[Agent proceeds\nAll actions logged]
    H --> I{Named owner\nreviews audit log?}
    I -- No --> J[Assign accountable owner]
    I -- Yes --> K[Governance cycle complete]

Why governance infrastructure lags deployment

The structural reason is incentive misalignment. The team that ships an agent sees a clear output: a task that now runs automatically. The cost of missing governance accrues later and to a different part of the organisation, often security or compliance, who were not involved in the deployment decision.

Deloitte’s 2026 Tech Trends research found that 74% of organisations plan to adopt agentic AI within two years, but only 21% have a mature governance model for it. That three-year gap between deployment intent and governance readiness is where most incidents originate.

The governance infrastructure that works is not a committee or a policy document. It is a set of operational controls that run alongside every agent in production.

flowchart TD
    A[Governance cycle] --> B[Identity layer\nOne identity per agent]
    A --> C[Access layer\nMinimum privilege per task]
    A --> D[Audit layer\nEvery action logged with agent ID]
    A --> E[Ownership layer\nNamed human accountable]
    B --> F[Review cadence\nQuarterly at minimum]
    C --> F
    D --> F
    E --> F
    F --> A

Building accountability infrastructure in sequence

The four layers in the diagram above can be built incrementally, but they have a natural order.

Start with identity. Until each agent has its own identity, you cannot attribute actions, which makes every other layer harder to operate. This is also the quickest win: most AI agent governance frameworks treat identity as table stakes, and most cloud environments already support service account scoping at the level you need.

Add access scoping next. Review what each agent can actually reach and reduce it to what the task requires. This is the control that limits the GitHub-class data leak.

Instrument the audit trail third. Every tool call, every external action, every credential use should produce a log entry tied to the agent’s identity. Without this, the ownership layer has nothing to review. Tools that support agent observability make this step considerably less manual.

Assign ownership last, because the owner needs the first three layers to be meaningful. An owner without an audit trail is accountable for something they cannot see. Once identity, access, and logging are in place, the ownership conversation with business and security stakeholders is much easier to have. Some organisations use a platform like Prefactor to centralise the identity and audit layers before assigning business-side ownership.

For leaders who are building AI governance best practices from the ground up, the sequence matters more than the speed. A governance model that covers two agents properly is more useful than one that covers twenty agents on paper.

The enterprise AI security surface area grows with every agent you add. Governance infrastructure that scales is infrastructure that is built into how agents are deployed, not added afterward.


Where to start

If you are not sure where your organisation sits on the deployment-to-governance spectrum, the clearest next step is a structured assessment. Take the agent readiness assessment to identify which governance layers are missing and in what order to address them.

Matt Doughty Matt Doughty CEO & Co-Founder, Prefactor

Founder of Prefactor, writing on the operational reality of getting AI agents into production — identity, governance, evaluation, and the plumbing assistants never needed.

Frequently asked questions

What does an AI agent accountability framework actually include?

At minimum it names a responsible owner for each agent, defines the scope of actions the agent can take, logs every consequential decision, and sets a review cadence. Without those four elements you cannot trace a problem back to a cause or a person.

Why do governance gaps appear even in organisations with mature software delivery?

Agents act across systems autonomously, so the failure modes are different from those in traditional software. A deploy pipeline that catches a bad build does not catch an agent that uses a shared credential to exfiltrate data or bypasses an approval step mid-run. Existing SDLC controls were not designed for that surface area.

How is runtime governance different from pre-deployment review?

Pre-deployment review checks what an agent is designed to do before it goes live. Runtime governance monitors what it actually does while it runs, including which tools it calls, which credentials it uses, and whether its outputs match expected bounds. Both are necessary; neither substitutes for the other.

Which roles should own agent governance in an enterprise?

Ownership typically splits across three roles: the AI or engineering lead defines the agent's permitted action scope, the CISO owns credential and access policy, and a named business owner accepts accountability for the agent's outputs. Leaving any of those seats empty is where most gaps originate.

Stay ahead of the curve

No spam. Unsubscribe anytime. A resource by Prefactor.

Almost there — check your inbox to confirm your subscription.