They distribute work across multiple agents, tools, and model calls, which makes execution easy to trace but harder to govern. Framework logs usually show what ran, not who authorised access or whether policy was enforced. Without external controls, organisations lose clear accountability for sensitive data access, delegated actions, and downstream business decisions.
Why Multi-Agent Workflows Break Traditional Accountability
Multi-agent systems do not fail only because they are complex; they fail because responsibility is distributed across planning, delegation, tool use, and model output. Security teams can often trace execution paths, but that does not answer who approved the action, whether access was justified, or which policy gate was actually enforced. OWASP’s OWASP Top 10 for Agentic Applications 2026 and NIST’s NIST AI Risk Management Framework both reflect this gap: the primary risk is not just model error, but uncontrolled delegation.
NHIMG research on the Top 10 NHI Issues shows why identity and secret handling remain central when software acts on behalf of business users. In practice, a workflow can look fully logged while still hiding the real decision points that matter for audit, especially when one agent hands off to another or when a tool call triggers privileged access. The result is a record of activity without a reliable record of accountability. In practice, many security teams discover this only after a delegated action has already touched sensitive data or changed a business record.
How Audit Gaps Emerge Across Agents, Tools, and Delegation Chains
Auditability weakens when each agent contributes a partial view of the work. One agent may plan, another may retrieve context, a third may call an API, and a tool wrapper may execute the final action. That produces fragmented logs with no single control plane for authorisation. Current guidance suggests treating each agent and tool invocation as a separate security event, not as a generic application transaction. The operational question is not simply what the system did, but which identity requested it, which policy allowed it, and whether the action exceeded its intended scope.
This is where runtime controls matter. A strong design uses workload identity for each agent, short-lived credentials for each task, and policy evaluation at request time. That aligns with current work in the CSA MAESTRO agentic AI threat modelling framework and the NHIMG view in OWASP NHI Top 10, which both emphasise that identity, delegation, and tool access must be controlled outside the model. Practical implementations increasingly rely on OIDC-backed workload identity, SPIFFE-style service identities, and policy-as-code decisions that can be evaluated with full context.
- Log the requesting agent identity, not just the application name.
- Bind each tool call to a task-scoped credential with a short TTL.
- Record the policy decision, input context, and approval path separately from model output.
- Revoke access automatically when the task completes or the context changes.
These controls tend to break down in asynchronous, multi-tenant environments where agents share tools and cache credentials across tasks because the audit trail becomes decoupled from the actual privilege boundary.
Common Variations, Edge Cases, and What Still Fails
Tighter delegation controls often increase operational overhead, requiring organisations to balance stronger accountability against faster automation. There is no universal standard for this yet, so best practice is still evolving. One common edge case is the “manager agent” pattern, where a higher-level agent authorises sub-agents. That can improve orchestration, but it also creates a single point where approval logic may be assumed rather than verified. Another is human-in-the-loop review, which improves accountability only if the reviewed action matches the eventual action taken; otherwise the audit trail becomes symbolic.
Secrets handling is another weak point. NHIMG’s State of Secrets in AppSec reports that organisations maintain an average of 6 distinct secrets manager instances, which fragments control and complicates revocation. When agents can chain tools, even a short-lived secret can become overpowered if scope is broad or telemetry is incomplete. External guidance from the NIST Cybersecurity Framework 2.0 helps frame the issue as governance plus detection, not logging alone. In the real world, accountability gaps persist whenever teams assume that traceability in the workflow engine is the same thing as enforceable authorisation.
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, OWASP Non-Human Identity Top 10 and CSA MAESTRO 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 | A2 | Addresses insecure delegation and missing controls in agentic workflows. |
| OWASP Non-Human Identity Top 10 | NHI-03 | Covers weak secret lifecycle controls that obscure accountable access. |
| CSA MAESTRO | M-4 | Focuses on agent identity, orchestration, and control-plane visibility. |
| NIST AI RMF | Supports governance, traceability, and accountability for AI system behaviour. | |
| NIST CSF 2.0 | PR.AC-4 | Least privilege and access management are central to limiting hidden delegation. |
Assign ownership for each agent decision and validate governance across the full workflow.
Related resources from NHI Mgmt Group
- Why is single-provider AI agent governance not enough for enterprise security?
- Why do multi agent systems create more identity risk than single AI assistants?
- Why do multi-hop AI agent workflows create more risk than single-agent automation?
- Why do MCP-based agent workflows create audit and authorisation gaps?