Subscribe to the Non-Human & AI Identity Journal

How do you know if your identity governance model is keeping up with AI agents?

You know it is keeping up when it can explain each agent’s authority, delegation path, and review state in real time. If access is only checked at provisioning or quarterly review, the model is already behind. Strong governance for AI agents must account for runtime decisions, sub-agent creation, and fast revocation before the session closes.

Why This Matters for Security Teams

AI agents change the governance problem because they do not behave like fixed service accounts. They request tools, chain actions, create sub-agents, and act on goals, not on a static job description. That means a model that only checks RBAC at onboarding can look compliant while still granting excessive access at runtime. Current guidance is moving toward intent-based authorisation and real-time policy evaluation, because the question is no longer “who was this agent at provisioning?” but “what is it allowed to do right now, for this task, in this context?”

That shift is visible in research: the OWASP NHI Top 10 and the CSA MAESTRO agentic AI threat modeling framework both point to control failures that appear after an agent is already executing. NIST also frames AI governance as a lifecycle issue in the NIST AI Risk Management Framework, which is useful because agent authority must be observable continuously, not reviewed only at intervals. In practice, many security teams encounter the first serious overreach only after an agent has already called the wrong API, not through an intentional access review.

How It Works in Practice

Effective governance for AI agents combines workload identity, short-lived secrets, and runtime policy checks. Instead of issuing a long-lived credential that can be reused for any future action, the platform should mint a JIT credential for a single task, tie it to a verified workload identity, and revoke it when the task finishes. That is the operational difference between governing a human user and governing an autonomous system that may act hundreds of times inside one session.

Practitioners should look for controls that answer three questions at runtime: what agent is this, what is it trying to do, and does the current context permit it? That usually means policy-as-code, request-time evaluation, and strong telemetry on delegation chains. The NIST AI Risk Management Framework is helpful here because it treats governance as an ongoing control loop, while OWASP Agentic AI Top 10 highlights the agent-specific abuse paths that static IAM often misses.

Operationally, the model should include:

  • Ephemeral tokens or certificates with tight TTLs, not standing credentials.
  • Intent-based approvals for sensitive actions, especially writes, deletes, and privilege changes.
  • Separate authority for the parent agent and any sub-agent it creates.
  • Automatic revocation when the task ends, the risk score changes, or the session becomes ambiguous.
  • Audit logs that preserve delegation path, policy decision, and tool invocation history.

The Ultimate Guide to NHIs remains useful as the baseline for lifecycle and offboarding discipline, but agentic environments demand faster decision loops and finer-grained scope than traditional NHI programs. These controls tend to break down when agents operate across multiple control planes with inconsistent identity brokers, because policy decisions stop matching the actual execution path.

Common Variations and Edge Cases

Tighter runtime control often increases engineering overhead, requiring organisations to balance faster automation against more frequent policy updates and more granular logging. That tradeoff is real, and there is no universal standard for how much autonomy to expose in every environment. Best practice is evolving, especially for multi-agent systems and tool-using copilots that can change behaviour mid-session.

One common edge case is the “confidently wrong” agent that still appears compliant because the IAM layer approves the request even when the request itself is unsafe. Another is shadow delegation, where a parent agent can spawn a sub-agent that inherits too much authority by default. The Analysis of Claude Code Security is relevant because it shows how code-oriented agent workflows can expand authority faster than review processes can track. For infrastructure teams, this is where the MITRE ATLAS adversarial AI threat matrix helps frame lateral movement and tool abuse as identity problems as much as model problems.

For organisations still relying on static secrets, the answer is usually not “more RBAC.” It is narrower standing access, stronger workload identity, and a governance model that can prove the agent’s current purpose before every sensitive action. If that proof cannot be produced in real time, the model is already lagging behind the agent.

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 and CSA MAESTRO address the attack and risk surface, while NIST AI RMF set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
OWASP Agentic AI Top 10 A01 Agent tool abuse and overreach are central to keeping governance current.
CSA MAESTRO MAESTRO focuses on threat modeling and runtime controls for agentic systems.
NIST AI RMF AI RMF frames governance as an ongoing lifecycle rather than a one-time review.

Validate each agent action at request time and block tool use outside approved intent.