Subscribe to the Non-Human & AI Identity Journal

What should IAM teams do when agent-to-agent delegation is involved?

IAM teams should preserve provenance across the delegation chain and avoid credential handoffs that erase the original requester. Every downstream action should remain tied to the initiating subject, the task scope, and the policy that authorized it. That is what makes the workflow auditable and the accountability model defensible.

Why This Matters for Security Teams

Agent-to-agent delegation changes the identity problem from “who logged in?” to “who initiated this chain of actions, and under what authority?” That matters because autonomous software can pursue a goal across multiple tools, services, and contexts, and a simple credential handoff can sever the original provenance. When that happens, RBAC alone is too blunt, because the agent’s next move is often dynamic rather than pre-declared. Current guidance in OWASP Agentic AI Top 10 and NIST AI Risk Management Framework both point toward stronger runtime governance, not just static entitlements.

The practical risk is that downstream agents inherit power without inheriting context, so investigations later show only a service account, not the initiating subject or task scope. That is how approvals become non-defensible and why intent-based authorisation is increasingly discussed for agentic workflows. NHI Mgmt Group research also shows why this is urgent: 59.8% of organisations see value in dynamic ephemeral credentials, yet many still rely on patterns that do not preserve chain-of-custody. In practice, many security teams encounter delegation failures only after an automated workflow has already crossed a trust boundary, rather than through intentional design.

How It Works in Practice

For delegated agent workflows, IAM teams should treat every hop as a new authorisation event, not as a reason to mint a long-lived shared secret. The initiating agent should present a workload identity, and each downstream service should evaluate policy at request time against the original task, current context, and allowed action set. That is the operational move from static access to intent-based authorisation. In agentic environments, the identity primitive should be the workload, not an impersonated human session.

A workable pattern usually includes:

  • short-lived, task-scoped credentials issued just in time, then revoked on completion;
  • cryptographic workload identity such as SPIFFE/SPIRE or OIDC-backed tokens for proof of what the agent is;
  • policy-as-code enforcement at each hop, using context, data sensitivity, and delegation depth;
  • explicit propagation of provenance fields such as initiating subject, task ID, and policy decision.

That approach aligns with CSA MAESTRO agentic AI threat modeling framework and with the delegation concerns highlighted in OWASP NHI Top 10. It also fits the operational reality documented in the Ultimate Guide to NHIs, where excessive privilege and weak secret handling remain common. These controls tend to break down in high-latency, multi-cloud pipelines with ad hoc broker services because provenance fields are dropped or translated inconsistently between systems.

Common Variations and Edge Cases

Tighter delegation control often increases orchestration overhead, so organisations have to balance auditability against throughput and developer friction. That tradeoff is real, especially when multiple agents collaborate across teams or when a workflow needs to call third-party tools that do not natively understand delegated context. There is no universal standard for this yet, so current guidance suggests preserving provenance even when the downstream platform cannot fully enforce it.

Two edge cases come up often. First, if an agent must pass work to another agent in a different domain, do not forward the original secret; exchange it for a narrower token or capability with a lower TTL. Second, if a vendor platform only supports coarse RBAC, wrap it with an internal policy layer so that delegation decisions are still evaluated against task intent and the initiating subject. This is especially important in environments where secrets already sprawl across code and CI/CD systems, a pattern discussed in AI LLM hijack breach and Analysis of Claude Code Security. The key exception is any legacy system that cannot bind authorisation to request context; in those environments, delegated agents can act with more authority than the security team can later prove.

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 Addresses runtime risks from autonomous agent chains and delegated tool use.
CSA MAESTRO Covers threat modeling for multi-agent delegation and context loss.
NIST AI RMF Supports governance, accountability, and lifecycle controls for autonomous systems.

Assign ownership for each agent workflow and document how authorization is decided at runtime.