They create governance risk because the meaningful security event is often the sequence of actions, not the final answer. A system can appear correct while still taking unsafe routing paths, calling unnecessary tools, or reusing state in ways that widen exposure. Normal monitoring misses that hidden path, so teams need trajectory-level evidence.
Why This Matters for Security Teams
Multi-agent systems change the unit of risk from a single prompt or response to a chain of delegated actions. A task can be approved, split, retried, handed off, and completed through several tools and sub-agents, which means the harm often sits in the path rather than the payload. That makes conventional application monitoring incomplete because it is usually tuned to record outputs, errors, and latency, not decision provenance, tool selection, or state transfer. Guidance in the NIST Cybersecurity Framework 2.0 still applies, but governance has to extend into how autonomous components are authorised and observed.
The practical issue is accountability. When one agent delegates to another, or when an orchestrator reuses context across multiple tools, it becomes harder to explain why a specific data source was accessed or why an action was taken at all. That matters for data minimisation, segregation of duties, approval controls, and incident reconstruction. It also matters for model risk, because a system can appear successful while quietly violating policy boundaries, using unnecessary privileges, or compounding small unsafe choices into a material exposure. In practice, many security teams encounter the problem only after an audit query, customer complaint, or downstream abuse has already exposed the missing trajectory evidence.
How It Works in Practice
Governance for multi-agent systems works best when security teams treat every significant action as part of an auditable workflow, not just a final output. That means capturing who requested the task, which agent accepted it, which tools were invoked, what state was passed forward, and whether any guardrail or approval was bypassed. The aim is to reconstruct intent and control flow, especially when agents can branch, retry, or escalate based on intermediate results.
Several control practices are useful:
- Log task decomposition so delegated steps can be traced back to the initiating request.
- Record tool use with inputs, outputs, and policy decisions, not only success or failure.
- Separate planning, execution, and approval functions where business risk is material.
- Limit shared memory and cross-agent state to reduce accidental data propagation.
- Validate outputs at the point of action, especially before external side effects.
For threat modelling, the CSA MAESTRO agentic AI threat modeling framework and the OWASP Top 10 for Agentic Applications 2026 are useful because they emphasise orchestration failures, tool abuse, and trust boundary confusion, not just model misbehaviour. The NIST AI Risk Management Framework adds a broader governance lens for mapping risks, controls, and accountability. These controls tend to break down when agents are allowed to create ad hoc sub-agents, call external tools dynamically, and persist long-lived shared state without a central policy checkpoint.
Common Variations and Edge Cases
Tighter orchestration controls often increase latency and reduce autonomy, requiring organisations to balance speed against evidence quality and approval depth. That tradeoff is real, and current guidance suggests there is no universal standard for how much agent autonomy is acceptable in every use case. High-volume customer support, internal productivity workflows, and regulated decision support systems will tolerate different levels of traceability and human review.
Edge cases usually appear where agents interact with external systems or where a simple “allowed tool list” is not enough. For example, an agent may be permitted to query one system but then infer a need to pivot into another data set, or it may trigger a secondary agent that inherits broader context than intended. Best practice is evolving on how to govern those cascading decisions, but the direction is clear: policy should follow the sequence, not just the endpoint. The MITRE ATLAS adversarial AI threat matrix is helpful when the concern includes manipulation of agent behaviour, while the Anthropic report on an AI-orchestrated cyber espionage campaign illustrates how autonomous tooling can be steered into real-world abuse. Where agents operate inside regulated or safety-sensitive processes, trajectory evidence should be treated as a control, not a nice-to-have.
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, MITRE ATLAS 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 | Agentic systems need controls for orchestration, tool abuse, and unsafe delegation paths. | |
| NIST AI RMF | AI RMF is the governance backbone for risk, accountability, and traceability. | |
| NIST CSF 2.0 | GV.OV-01 | Governance and oversight map directly to trajectory-level accountability needs. |
| MITRE ATLAS | ATLAS covers adversarial manipulation of AI behaviour and tool use. | |
| CSA MAESTRO | MAESTRO is built for agentic AI threat modelling and trust boundaries. |
Use agentic app guidance to log, constrain, and review every delegated step before side effects occur.