TL;DR: Most enterprise AI agent programs still rely on prompt guidance and monitoring while allowing tool execution to proceed by default, according to Visiq Labs. The paper argues that production-grade governance requires pre-execution enforcement at the dispatch path, because once an agent can trigger workflows, mutate records, or invoke admin tooling, the risk is unauthorized action rather than bad text output.
At a glance
What this is: This is a white paper arguing that AI agents need runtime default-deny controls, with enforcement placed on the tool dispatch path rather than in prompts or post-execution monitoring.
Why it matters: It matters because IAM, PAM, and AI governance teams must control what agentic systems can do in production, not just what they are instructed to do, especially when agent actions create real business side effects.
👉 Read Visiq Labs' white paper on default-deny controls for AI agent execution
Context
AI agent governance fails when organisations treat prompts as the control boundary. Once an agent can call tools, trigger workflows, or change records, the issue is no longer model output quality alone. The core problem is whether the runtime can stop unauthorised execution before the side effect occurs, which makes this a governance and access-control question as much as an AI question.
Visiq Labs frames the migration as monitor-first to default-deny, which is consistent with how enterprise control maturity usually develops. The wider lesson for IAM and AI governance teams is that operational agents need enforced approval logic, scoped execution paths, and evidence of denied actions, not just observability or policy intent. That is the right framing for AI agent identity and runtime authorization.
The article’s starting position is typical of many enterprise deployments: strong guidance, weak runtime control, and a reliance on review after the fact.
Key questions
Q: How should security teams govern AI-enabled workflows that can act on their own?
A: Treat them as identity-governed execution paths, not just software features. Assign a named owner, define least-privilege access, log every tool call, and require revocation paths for credentials and tokens. If the workflow can touch production systems or sensitive data, its permissions must be reviewed with the same discipline used for privileged machine identities.
Q: Why do prompt-level controls fail for AI agent security?
A: Prompt-level controls fail because they inspect a single input while the real risk emerges across multiple decisions and tool calls. An agent can begin with an acceptable prompt and still leak data, misuse tools, or expose secrets later in the action chain. Effective governance must assess the full execution path, not just the first instruction.
Q: When should organisations move from monitor mode to default-deny for AI agents?
A: After they have enough real traffic to understand which tools, arguments, and targets the agent actually uses. Monitor mode is useful for discovery, but it should not become the steady state for production. The move to default-deny should follow coverage analysis, approval design, and simulation against live workloads.
Q: Who is accountable when an AI agent makes an unauthorised change?
A: Accountability should be assigned to the governance model that authorised the delegation, the owner of the workflow, and the team that set the policy boundary. In practice, organisations need clear responsibility for agent configuration, monitoring, and incident response because the machine’s speed does not remove human accountability for the delegated identity.
Technical breakdown
Why prompt-only controls do not stop tool execution
Prompt instructions can shape behaviour, but they do not create an enforcement boundary. If an agent framework allows a tool call to leave the planner and reach the execution layer, a system instruction cannot guarantee denial. That is why prompt-only approaches work as guidance and fail as governance. In practice, the control point must sit where the action is dispatched, because that is the last place a decision can stop a side effect before it happens.
Practical implication: place authorization in the execution path, not in prompts or review notes.
How pre-execution authorization and no-coverage defaults work
A default-deny posture treats each action class as disallowed unless a policy explicitly permits it, routes it for approval, or blocks it. The architecture described here evaluates proposed actions in-process against a local control bundle before the tool runs. If no policy matches, the no-coverage default decides the outcome. That makes reads, writes, deletes, and admin functions independently governable, while also allowing different handling for monitor mode, enforce mode, and human approval gates.
Practical implication: define no-coverage defaults per operation class and simulate them against real traffic before enforcement.
Why observability is not the same as governance
Tracing tells you what happened after the fact. Governance decides whether the action was allowed, denied, masked, or paused before execution. The difference matters because a logged tool call can still mutate data, trigger workflows, or access privileged systems. For operational AI, the value is not simply auditability. It is provable control over whether a tool call can proceed at all, and what happens if evaluation fails or the control bundle disappears.
Practical implication: require fail-closed behaviour for evaluation errors and missing control state.
NHI Mgmt Group analysis
Default-deny is the correct governance model for operational AI agents. Once an agent can do more than generate text, the relevant risk becomes unauthorised execution with business impact. That shifts the control problem into IAM and PAM territory, because the system is effectively acting as a privileged runtime identity. Teams should treat agent action scope as a governed entitlement set, not a prompt-quality problem.
Prompt restrictions are policy hints, not access controls. Organisations that rely on instructions like 'ask before acting' are assuming the agent will respect a recommendation as if it were a control. In practice, runtime authorisation must be enforced at dispatch, with explicit deny, approval, and mask outcomes. Practitioners should model agent execution like any other privileged path and remove ambiguity from the point of action.
Monitor-first migration is a sound deployment pattern, but only as a transition state. The article correctly treats default-deny as a destination reached through observed coverage growth, not a day-one switch. That matters because organisations need evidence of real tool usage before they can safely lock down uncovered actions. The practitioner conclusion is to build from telemetry, then convert observation into enforceable policy.
Agent governance creates a new identity boundary inside the application stack. The meaningful question is not only who can log in, but what an AI agent can dispatch once it is inside the runtime. That is where agent identity, workload identity, and privileged access management converge. Security teams should align approvals, deny rules, and evidence capture around the action surface rather than the model interface.
Default-deny becomes a named control concept for enterprise AI: runtime execution control. This is the point where governance becomes operational, because the control decision happens before the side effect and is recorded as evidence. The practitioner takeaway is to standardise on execution-path enforcement as the reference model for production AI agents.
What this signals
AI agent programmes are moving into the same governance conversation that IAM and PAM teams already know: privilege must be explicit, scoped, and revocable before the action occurs. The operational signal is that monitoring alone will not satisfy audit or resilience requirements once agents can mutate systems, so runtime control design now belongs in the identity architecture conversation.
Runtime execution control: the emerging governance pattern is to treat every agent action as a policy decision rather than a discretionary tool call. That implies tighter alignment between workload identity, approval workflows, and evidence capture, with the AI RMF NIST AI Risk Management Framework useful as a governance anchor and OWASP Agentic AI Top 10 for threat-driven control design.
For readers building production programmes, the immediate question is not whether agents should exist, but which actions they are trusted to take without human intervention. Teams should expect pressure to prove coverage, denial handling, and approval latency as part of control maturity, especially where agents touch tickets, CI/CD, finance, or admin tooling.
For practitioners
- Implement runtime authorization on the dispatch path Evaluate each proposed tool call before execution and make permit, deny, mask, or approval decisions in-process rather than after the action occurs.
- Define no-coverage defaults by operation class Set separate defaults for read, write, delete, and admin actions so uncovered behaviour resolves predictably instead of falling through silently.
- Use fail-closed handling for control failures Deny actions when evaluation errors occur or when an enforcing agent loses its control bundle, and restore governance state before resuming privileged execution.
- Run monitor mode only as a migration stage Use monitor mode to inventory real tool usage, then convert repeated patterns into explicit controls and approval gates before moving agents into enforce mode.
- Log denied and approved actions as evidence Record every decision as signed evidence so security, audit, and platform teams can show what was allowed, what was blocked, and why.
Key takeaways
- AI agents become a governance problem the moment they can execute tools, not just generate recommendations.
- Runtime default-deny is the control model that turns agent behaviour into a managed entitlement surface.
- Teams should start with monitored evidence, then convert uncovered actions into explicit deny or approval paths.
Standards & Framework Alignment
This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.
OWASP Agentic AI Top 10 address the attack and risk surface, while NIST AI RMF, NIST CSF 2.0, NIST Zero Trust (SP 800-207) and NIST SP 800-53 Rev 5 set the governance and control requirements practitioners need to meet.
| Framework | Control / Reference | Relevance |
|---|---|---|
| OWASP Agentic AI Top 10 | The article focuses on agent goal misuse, tool execution abuse, and runtime enforcement gaps. | |
| NIST AI RMF | GOVERN | The paper is fundamentally about governance, accountability, and enforced decision boundaries. |
| NIST CSF 2.0 | PR.AC-4 | The issue is access control over agent actions and allowed execution paths. |
| NIST Zero Trust (SP 800-207) | Default deny and continuous verification align with zero trust for runtime actions. | |
| NIST SP 800-53 Rev 5 | AC-6 | Least privilege is central to limiting the actions an agent can perform in production. |
Map agent tool execution paths to OWASP agentic risks and require pre-execution controls on sensitive actions.
Key terms
- Default deny: Default deny is an authorization pattern where no traffic is allowed until a policy explicitly permits it. For microservices, it exposes hidden service dependencies and prevents accidental trust between workloads that should only communicate through named, reviewable paths.
- Runtime Authorisation: Runtime authorisation is the practice of deciding access while a task is in progress, rather than only at provisioning time. It matters for NHIs because credentials and entitlements can change risk mid-session, especially when automation or AI agents interact with sensitive systems.
- Monitor Mode: A transitional operating state in which actions are observed and recorded but not blocked. It is useful for discovering real agent behaviour, but it is not a production control because it does not prevent the action or limit the side effect.
- Access Bundle: An access bundle is a packaged set of entitlements granted together under one requestable unit. It can improve usability and reduce ticket volume, but it also increases the importance of review, ownership, and expiry discipline because multiple privileges move as one decision object.
What's in the full article
Visiq Labs' full white paper covers the operational detail this post intentionally leaves for the source:
- The exact monitor-first migration sequence used to move from observation to enforcement without breaking dependent workflows.
- The action-class matrix for read, write, delete, and admin operations, including how the no-coverage default changes over time.
- The in-process decision flow for permit, deny, mask, and approval-required outcomes before the tool body runs.
- The rollout mechanics for control bundles, coverage-gap queues, and simulation against recent traffic before enforcement changes land.
Deepen your knowledge
The NHI Foundation Level course, the industry's only accredited NHI security programme, covers NHI governance, workload identity, secrets management, and agentic AI identity. It helps security and identity practitioners build the control thinking needed for operational AI and other non-human access models.
Published by the NHIMG editorial team on August 16, 2026.
NHI Mgmt Group — the independent authority on Non-Human Identity, IAM, and Agentic AI security. nhimg.org