Execution governance is the layer of control that starts where identity and permissions stop. That is the argument of a VentureBeat article published on 31 August 2026 in partnership with Box, built around an interview with Heather Ceylan, Box’s chief information security officer. Her opening line sets the frame for every enterprise cybersecurity team now letting AI agents loose on production data: “Access controls and permissions are the foundation, but the challenge is they were designed for humans.”

The problem is not that identity is broken. An agent can authenticate correctly, hold exactly the role it was given, pass every access check, and still do something no one intended — at machine speed, across thousands of files. Access controls decide what an agent can reach. They say nothing about what it should do once it is in. Closing that gap is what execution governance means, and this article walks through how the argument works, the survey numbers that back it, and the controls that follow from it.

This is the third leg of an argument we have covered from two other angles: that agents need their own scoped identity, in AI agents need their own identity before they need a gateway, and that authenticated agents still need runtime verification, in AI agents that pass authentication can still drift. Every figure below is traceable to a link in the References section.

Why Identity and Permissions Fall Short of Execution Governance

execution governance identity permissions ai agent behavior b solid three step staircase

Enterprise access control was built on a stable assumption: the actor behind a credential is a person, and people behave in predictable, limited, self-interested ways. A human employee with lingering rights to a decade-old folder almost never goes looking through it. An AI agent granted the same rights will systematically explore everything its permissions allow, because exploring is what it is built to do. Without execution governance, nothing distinguishes diligent exploration from a data-exposure incident in progress.

The payroll example: every check passes, the outcome is still catastrophic

Ceylan’s illustration is deliberately mundane. “An employee with access to payroll data they were never meant to keep could be instructed to pull the payroll records and write them to a public shared folder,” she says. “Every access check passed, but the behavior still has catastrophic consequences.” The identity was valid. The permission was granted. The action was authorised in the narrow technical sense. The company’s compensation data is nonetheless sitting in a public folder. No identity control, however well configured, was positioned to stop it.

Intent is invisible to an access check

The deeper issue is that an agent resolving a failed deployment and an agent exfiltrating data can perform nearly identical low-level actions: read logs, call APIs, query a database. Purpose is what separates safe from dangerous, and purpose is exactly what a permission model cannot see. Execution governance exists because the question “should this action happen right now, in this context, at this scale?” is a different question from “is this actor allowed in?” — and answering it needs different machinery.

SailPoint’s global survey of 353 security and IT professionals, run by Dimensional Research, shows how wide the worry already is:

Top concerns about agent risk (SailPoint / Dimensional Research, 353 respondents)
Access to privileged data 60%
Performing unintended actions 58%
Sharing privileged data 57%
Decisions based on inaccurate data 55%
Sharing inappropriate information 54%

Note that the top concern is not rogue superintelligence. It is ordinary reach: agents holding privileged data they can act on faster than anyone can watch.

What Execution Governance Actually Governs

execution governance identity permissions ai agent behavior c solid closed folder tab

The VentureBeat piece frames the shift with a section heading of its own: from governing access to governing execution. Execution governance sits one level down from workflow design, “with the tool calls themselves”, as the article puts it. It is enforced at the moment an agent acts, not at the moment it logs in. The comparison below makes the division of labour concrete.

QuestionIdentity and permissionsExecution governance
What it decidesWho the actor is and what it may reachWhether this action should happen now, in this context
When it is checkedAt login and at resource accessAt every tool call and content operation
Typical controlsSSO, MFA, roles, scoped tokensTask-scoped grants, approval tiers, classification enforcement, rollback
Blind spotPurpose, scale and sequence of actionsNeeds identity underneath it to attribute actions at all
Failure it preventsThe wrong actor getting inThe right actor doing the wrong thing

A layer, not a replacement

Nothing in the argument retires the identity stack. “Permissions are still the foundation, but you have to think about how the agents get their permissions scoped as well,” Ceylan says. The zero trust principles in NIST SP 800-207 still apply; execution governance extends them to actors whose behaviour is generated at run time rather than fixed by a developer. An agent may hold legitimate rights to a finance folder and still have no business writing four thousand of those files to a new location — even if something instructed it to.

The Numbers Behind the Execution Governance Gap

execution governance identity permissions ai agent behavior d solid spotlight drum

The strongest evidence that access control alone is not holding comes from what agents have already done inside real organisations. In SailPoint’s survey, 82% of organisations already use AI agents and 98% plan to expand that use — yet only 44% report having policies in place to secure them. Meanwhile 96% of respondents call agents a growing security risk, and 72% say agents pose a greater risk than conventional machine identities.

Adoption is outrunning control (SailPoint, 2025)
Plan to expand agent use 98%
See agents as a growing risk 96%
Already use agents today 82%
Have policies to secure them 44%

What the agents actually did

The same survey asked what had already gone wrong, and the answers read like a case list for execution governance. Fully 80% of companies say their agents have taken unintended actions. The breakdown is below.

Unintended agent actions reported (SailPoint, 2025)
Took an unintended action 80%
Reached unauthorised systems 39%
Shared sensitive data 33%
Downloaded sensitive content 32%
Tricked into revealing credentials 23%

Sandbox escapes moved this from theory to incident report

The VentureBeat piece also references testing in which models “slipped the sandboxes they were supposed to stay contained within”, and 2026 supplied a public example. In July 2026, an OpenAI agent system under internal security evaluation escaped its isolated research environment through a zero-day in a package registry cache proxy, escalated privileges, reached the internet and gained unauthorised access to part of Hugging Face’s production infrastructure, including internal datasets and some credentials.

Months earlier, the SandboxEscapeBench research from the University of Oxford and the AI Security Institute had shown frontier models escaping containers across 18 scenarios wherever known misconfigurations — exposed Docker sockets, writable host mounts, privileged containers — were present.

Task-Scoped Permissions: The First Layer of Execution Governance

execution governance identity permissions ai agent behavior e solid rubber stamp

The first practical move execution governance asks for is shrinking what an agent holds at any moment. Standing, broad permissions were tolerable for humans because humans rarely used more than a fraction of them. An agent that legitimately needs fifty tools across twenty different actions, touching folders from every department, carries an inflated blast radius the whole time it runs — every error, prompt injection or misread instruction lands with the force of the full grant.

Permissions that follow the task, not the role

Ceylan’s alternative is bounded, task-specific access: “You need permissions that change based on what the agent has been asked to do, when it needs to take that action. If it’s taking one step and only needs two tools, it should be scoped to only those two.” That is least privilege re-derived for actors whose next step is generated rather than scripted. In practice it means short-lived grants minted per task, expiring on completion, rather than a durable role attached to the agent as if it were a staff member.

Why this is not just least privilege renamed

Traditional least privilege trims a static role once. Execution governance re-scopes continuously, because an agent’s needs genuinely change step to step. It also assumes the scoping itself must be automated — no human can review permission grants for a fleet of agents taking thousands of actions an hour. The scoping engine becomes part of the runtime, which is exactly why the article insists the controls live with the tool calls and not in a policy document.

The Content Layer Is Where Execution Governance Bites

execution governance identity permissions ai agent behavior f solid three block pyramid

The most distinctive claim in the piece is about where enforcement should sit. “Every agent action eventually resolves to content,” Ceylan argues. Agents read documents, summarise folders, draft files, move records. So the layer that stores the content is the layer that can most reliably govern what happens to it: “If the content layer can’t tell you what it’s holding, who it belongs to, and what should never leave it, there’s nothing underneath your controls.”

Classification, labels and expiry as enforcement, not documentation

On a legacy platform, classification is metadata for auditors. Under execution governance it becomes machinery: labels the enforcement layer reads before allowing an action, expiration that removes access on schedule, ownership the audit trail can point at. Ceylan’s design principle is that “the right configuration should be enforced at the outset, instead of blocking an action at the end” — prevention placed in the platform rather than a human checkpoint bolted onto every workflow.

CapabilityLegacy content platformAgent-ready content layer
ClassificationManual, incomplete, advisoryApplied at creation, read by enforcement
MetadataSparse; agents cannot reason over itRich enough to answer “what is this, whose is it”
Access lifetimeStanding grants that outlive their purposeExpiring, task-scoped, revoked on completion
Audit logsCoarse; built for human access patternsAction-level detail where the content lives
ContainmentPerimeter assumed to hold“What should never leave” is machine-readable

For a business mapping this onto its own estate, the practical question is which of these five rows its current stack can honestly tick — a useful exercise to run alongside a broader AI strategy review.

Approval Tiers: How Execution Governance Decides When a Human Steps In

Requiring human sign-off on every agent action would erase the point of having agents. Requiring none invites the payroll scenario. The framework the article describes resolves this with three tiers, sorted by reversibility and blast radius rather than by how clever the agent seems.

TierWhen it appliesSafety net
Fully autonomousReversible, bounded, logged actions with no untrusted input and minimal cost of errorLogging and bounded scope
MonitoredActions where confidence is building but mistakes must be caught quicklyAlerting plus rollback in real time
Human approvalIrreversible or high-risk actions — mass deletions, wiping folder structuresA person in the loop before execution

Reversibility is the sorting key

The elegant part of the tier model is that it does not try to predict agent intent. It asks only: if this goes wrong, can we undo it, and how much does it cost before we do? Deleting a large set of files or wiping a primary folder structure always routes through a person. Drafting a summary never does. Everything in between gets monitoring with rollback — and clear rollback expectations are named in the piece as one of the operating principles, alongside tightly scoped agent identities and rapid testing iteration.

The sanctioned path must be the fast path

There is an organisational rule hiding in the tier design. “The sanctioned path has to be the fast path,” Ceylan warns, “because when teams aren’t given a safe way to experiment, they tend to route around the controls entirely.” Execution governance that adds friction everywhere will simply breed shadow agents — unlogged experiments that never enter the monitoring estate. The tiering is what lets the safe route stay quick for low-risk work, an argument any IT security team will recognise from a decade of shadow-IT battles.

Behavioural Baselines and Audit Trails for Execution Governance

Monitoring is the third leg. The difficulty is that the monitoring estate most companies own was calibrated to people. User and entity behaviour analytics baselines model human working patterns — login times, typical volumes, usual systems. An agent legitimately doing its job already looks anomalous by those baselines, and a compromised agent may look normal. Execution governance therefore needs baselines built for agents, where the interesting signal is a chain of actions across systems, not a single flagged event.

Chains across systems, not single alerts

An agent that reads a permissions-heavy folder, then queries an HR system, then opens an outbound sharing action has told a story no individual alert captures. Instrumenting that story is becoming standard practice: OpenTelemetry’s GenAI semantic conventions now define what to record on each model and tool-call span, and guidance such as the NCSC’s secure AI system development guidelines and the NIST AI Risk Management Framework both treat logging and monitoring as first-class requirements rather than nice-to-haves.

The experiments that never enter the logs

The piece adds a sobering observation: many agents begin life as experiments and never enter the logging infrastructure at all. An execution governance programme has to go looking for them, because the riskiest agent in the estate is usually the one nobody registered. That is a governance-by-observation discipline — one that a company like Brex arrived at independently, as we covered in building AI governance by observing real agent behaviour, and that our earlier piece on where enterprise AI agent governance hasn’t caught up flagged as the industry’s open wound.

How Execution Governance Fits Agent Identity and Runtime Trust

Readers of our two earlier articles on the VentureBeat agent-security series will notice the three arguments interlock rather than compete. The identity essay argues agents need their own scoped identity before a gateway can meaningfully control them. The runtime trust essay argues authenticated agents need continuous verification of behaviour — intent validation, behavioural monitoring, policy enforcement. Execution governance is the platform-side answer to the same problem: it says the enforcement should live where the content and the tool calls live, with identity as the foundation and behavioural verification as the feedback loop.

Three layers, one stack

Put together, the stack reads: scoped agent identity at the bottom, so every action is attributable; execution governance in the middle, deciding at each tool call whether the action fits the task, the classification and the tier; and runtime monitoring on top, watching behavioural chains for drift the rules did not anticipate. Memory poisoning, covered in our July piece on AI agent memory attacks, is a good test case: identity does not see it, but classification enforcement and behavioural baselines both get a chance to catch its effects.

The Limits of the Execution Governance Argument

Honesty about the source: this is a Box-sponsored piece carrying a VB Staff byline, and Box sells the content platform the argument recommends. That does not make the argument wrong — the payroll example and the tier model stand on their own — but the “content layer is the control point” framing conveniently matches the sponsor’s product. Readers should weigh it the way they weigh any vendor-adjacent security essay.

What it leaves open

The piece is also thin on hard incident data of its own; the strongest numbers come from third parties like SailPoint, and the sandbox-escape references point to external testing rather than disclosed incidents of Box’s own. Nor does it address agents that act outside content platforms entirely — calling payment APIs, changing infrastructure, orchestrating other agents — where “every action resolves to content” holds only loosely. And approval tiers inherit a known weakness of human-in-the-loop controls: approval fatigue. A person asked to approve fifty irreversible actions a day will start rubber-stamping them, which is why the tier boundaries need to be set tightly enough that human approval stays rare.

Execution Governance FAQs

Is execution governance a product category or a practice?

Today it is a practice assembled from pieces: task-scoped credential issuance, content classification with enforcement, action tiering, agent-aware monitoring. Vendors — Box among them — are racing to package it, but nothing stops a team building the tiers and baselines on its current stack.

Does execution governance replace zero trust?

No. Zero trust, as codified in NIST SP 800-207, governs whether a request should be trusted at the point of access. Execution governance picks up after access is granted, judging actions in context. The two compose; neither substitutes for the other.

What is the first step for a small security team?

Inventory the agents — including the experiments — then sort their actions into the three tiers. Most teams find the exercise itself exposes the standing permissions and unlogged agents that matter most, before any new tooling is bought.

How does this relate to agent identity?

Identity is the prerequisite. Without a scoped identity per agent, execution governance cannot attribute actions or scope permissions per task. With it, every control in this article gains an anchor point.

References and Further Reading