Subscribe to the Non-Human & AI Identity Journal

Intent-based security

Intent-based security governs access by combining what an AI agent can do with what it is supposed to achieve. The model uses purpose, context, and runtime behaviour to decide whether an action remains within bounds. It is especially useful when agents adapt their plans during execution.

Expanded Definition

Intent-based security is a policy model for AI agents and other NHIs that evaluates whether an action matches approved purpose, context, and runtime behaviour, not just whether the agent possesses valid credentials. In practice, it sits alongside Zero Trust Architecture and NIST Cybersecurity Framework 2.0 style governance, because access decisions must account for what the identity is trying to do right now.

Definitions vary across vendors, especially when the term is applied to autonomous agents, policy engines, or runtime authorisation layers. Some products treat intent as a declarative task description, while others infer intent from a plan, tool call sequence, or workflow context. For NHI security, the practical meaning is narrower: an agent should be allowed to continue only while its observed behaviour remains aligned with the authorised objective and trusted environment. That makes intent-based security different from simple RBAC, and more adaptive than static PAM approvals. It is especially relevant where MCP-connected agents can alter tool use mid-execution, because the policy must recognise changes in scope rather than assume the original request still holds. The most common misapplication is equating intent with a one-time approval, which occurs when teams approve a task at launch but fail to re-evaluate the agent after its context, inputs, or tool chain changes.

Examples and Use Cases

Implementing intent-based security rigorously often introduces latency and policy complexity, requiring organisations to weigh tighter runtime control against faster agent execution.

  • An AI agent is authorised to summarise customer tickets, but when it attempts to export records to an external SaaS tool, the policy blocks the action because the export is outside the approved intent.
  • A code assistant can read repository files during a change task, yet it is denied access to deployment secrets because the runtime context does not justify secret retrieval, even though its token is still valid.
  • A finance automation agent is allowed to generate payment batches, but a second-step approval is required before it can invoke a transfer API, reflecting JIT escalation rather than permanent privilege.
  • A procurement agent can query supplier status, but if its behaviour starts matching bulk discovery patterns associated with data harvesting, the session is constrained and reviewed.

For broader NHI governance patterns, the Ultimate Guide to NHIs explains why agent authority must be bounded across lifecycle events, not just at provisioning. The same runtime mindset is reinforced by the NIST Cybersecurity Framework 2.0, which pushes organisations toward continuous risk-aware control rather than one-time identity checks.

Why It Matters in NHI Security

Intent-based security matters because NHIs often operate at machine speed, across many systems, with privileges that outlive the original business task. When teams rely only on static access grants, they miss the moment an agent drifts from its intended purpose, continues after its job is complete, or starts chaining actions in ways the operator never approved. That is especially dangerous when secrets are stored broadly or service accounts are over-privileged, because the damage can spread quickly once an agent crosses scope.

NHIMG research shows that 97% of NHIs carry excessive privileges in modern enterprises, which means intent controls become a practical containment layer rather than a theoretical safeguard. The risk is amplified when organisations cannot see how agents interact with external services, or when delegated workflows continue after token issuance. The Ultimate Guide to NHIs also highlights how weak rotation and poor offboarding turn routine automation into persistent exposure. In governance terms, intent-based security helps translate policy into runtime enforcement, complementing the control objectives described in NIST Cybersecurity Framework 2.0.

Organisations typically encounter the need for intent-based security only after an agent has already overreached, exfiltrated data, or triggered an unintended transaction, at which point the control becomes operationally unavoidable to address.

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 CSF 2.0 and NIST Zero Trust (SP 800-207) set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
OWASP Agentic AI Top 10 A2 Runtime tool use and agent scope drift are core concerns in agentic security guidance.
NIST CSF 2.0 PR.AC-4 Access permissions should be managed dynamically to support least privilege at runtime.
NIST Zero Trust (SP 800-207) 3.1 Zero Trust requires continuous evaluation of trust and authorization for each request.

Continuously reassess NHI access decisions against current context, not just initial authentication.