Join our Newsletter — 33% off our NHI Course

What breaks when organisations review AI agent access only at the prompt or workflow level?

Prompt-level review misses the actual enforcement layer. In platforms like ServiceNow, the agent reaches data through a user identity, role assignments, and ACLs. Without graphing those relationships, teams can overlook inherited privilege, hidden table access, and who can invoke the agent. That leaves access reviews incomplete and creates false confidence in governance.

Why This Matters for Security Teams

Prompt-level review gives a false sense of control because the enforcement point is usually not the prompt. In agentic systems, access is inherited through a user identity, connected roles, tool permissions, and backend ACLs, which means a “safe” workflow can still execute dangerous actions if the underlying graph is not understood. Current guidance from the OWASP Agentic AI Top 10 and NIST AI Risk Management Framework both point to runtime context, not static intent, as the real security boundary.

This is especially visible when agents can chain tools, inherit delegated permissions, or call systems that were never reviewed as part of the original prompt approval. NHIMG has documented how AI agent abuse often appears through hidden paths rather than obvious prompts, as seen in CoPhish OAuth Token Theft via Copilot Studio and the OWASP NHI Top 10. In practice, many security teams discover the real privilege path only after an agent has already touched data or triggered an action they assumed was out of scope.

How It Works in Practice

Effective review starts by mapping the full authorization chain, not just the workflow diagram. For an AI agent, the relevant question is: what identity does it run under, what roles are attached, what objects or APIs those roles can reach, and which downstream tools inherit that access? A prompt can describe intent, but only the underlying identity and policy graph determine whether the agent can read records, write changes, export data, or invoke privileged actions.

That is why workload identity and runtime policy evaluation matter. Standards-oriented practice is moving toward cryptographic workload identity, short-lived credentials, and request-time authorization checks rather than broad standing access. In this model, the agent proves what it is at runtime, receives only the minimum access needed for the task, and is re-evaluated as the context changes. The operational pattern is aligned with the OWASP Non-Human Identity Top 10, which treats non-human access as a distinct governance problem, and the CSA MAESTRO agentic AI threat modeling framework, which emphasises tool use, delegation, and control-plane visibility.

  • Review the agent’s user, service, and delegated identities together.
  • Trace inherited access through roles, groups, ACLs, and API scopes.
  • Check who can launch the agent, change its tools, or broaden its permissions.
  • Evaluate approvals at request time, not only when the workflow is designed.
  • Use logging that captures the actual object touched, not only the prompt text.

This guidance tends to break down in heavily integrated SaaS environments where permissions are inherited across multiple tenants and connector layers, because the effective access path is harder to reconstruct than the visible workflow.

Common Variations and Edge Cases

Tighter agent access review often increases operational overhead, so organisations must balance assurance against the cost of maintaining accurate identity graphs and policy mappings. That tradeoff becomes sharper when agents are embedded in business platforms with legacy permissions, shared admin roles, or third-party connectors that were never designed for autonomous execution.

There is no universal standard for this yet, but current guidance suggests treating workflow approval, prompt filtering, and access review as separate controls. A prompt may be harmless while the agent still has access to privileged records; conversely, a restrictive workflow can still fail if the agent inherits broad platform rights through a human account or integration token. The practical fix is to review the whole chain: identity, authorisation, tool scope, data reach, and revocation path.

NHIMG research shows how quickly misplaced trust in “safe” agent behaviour becomes an incident, especially in cases like the Replit AI Tool Database Deletion and Gemini AI Breach. The lesson is not that prompts are irrelevant, but that prompt review alone cannot prove least privilege. Where agents operate with long-lived tokens, shared service accounts, or broad platform admin rights, the review model fails because the real control boundary sits below the workflow layer.

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, CSA MAESTRO and OWASP Non-Human Identity Top 10 address the attack and risk surface, while NIST AI RMF and NIST CSF 2.0 set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
OWASP Agentic AI Top 10 A1 Covers agentic abuse from hidden tool paths beyond the prompt.
CSA MAESTRO TA-2 Addresses threat modeling for delegated tools and control-plane access.
NIST AI RMF Supports governance over dynamic AI behaviour and contextual controls.
OWASP Non-Human Identity Top 10 NHI-01 Non-human identity review is needed when agents inherit platform permissions.
NIST CSF 2.0 PR.AC-4 Least-privilege access review is the core control gap here.

Review runtime tool access and constrain agent actions to the minimum permitted scope.