Hermosa Research·Synthesis
Multi-Agent Interaction Patterns
A source-backed catalogue of 45 recurring coordination patterns in LLM agent systems, grouped into 9 families and three maturity levels. Each entry names the mechanism, multi-agent rationale, use cases, and a defining source.
- Published
- 4 April 2026
- Data as of
- 6 September 2026
- Research type
- [synthesis]Distils many external sources into a position. The rigor lives in source verification and per-claim attribution.[tentative]Reasonably supported, but parts are still unverified or liable to drift.
- Topics
- [multi-agent][ai-agents][orchestration]
Method: We grouped 40 cited patterns from foundational and 2026 literature into nine families. Each record names the coordination mechanism, multi-agent rationale, use cases, maturity, and a defining source.
Background
Multi-agent systems add another design layer: coordination. A result depends not only on the models, but on who proposes, verifies, routes work, shares state, and decides. We call that arrangement an interaction pattern.
This survey groups 45 patterns into established, emerging, and frontier work. Each record states the mechanism, why it requires multiple agents, the failure modes it addresses, and a defining source. Maturity is an editorial assessment of evidence and adoption, not a benchmark ranking.
Key findings
- 1Coordination is a separate design choice. Model selection does not determine who proposes, verifies, routes work, shares state, or makes the final decision. The interaction pattern does.
- 29 patterns are established. Role-based workflows, independent verification, judging, ranking, debate, and ensembling have defining sources and broad use.
- 314 are emerging and 22 remain frontier. These categories mark the strength and age of the evidence. They are editorial maturity labels, not performance scores.
- 4Adaptive topology is a clear recent direction. Several 2026 papers route or rebuild the communication graph by task, query, or round instead of fixing it at design time.
- 5More agents are not a default upgrade. The MAST study reports that multi-agent systems often fail to outperform a single agent. Added roles need a specific purpose and an explicit coordination cost.
The pattern catalogue
45 patterns across 9 families, grouped by coordination mechanism. Each record states the core dynamic, its multi-agent rationale, the MAST failure categories it may address, example domains, maturity, and a defining source.
pattern 1 of 45 · Decomposition & Roles
Standard Operating Procedures (SOP)
Decomposition & Roles
Why multi-agent
Summary
A complex task is decomposed into ordered phases with role-bound agents and gated hand-offs, an assembly line rather than a free-for-all conversation.
- Use cases
- Software project scaffolding
- Structured report generation
- Document production
- Recurring operational heartbeats (clock-driven pipeline ticks with triage routing)
- MAST categories addressed
- Cat 1
- Cat 3
Browse all patterns, fields, sources, and CSV/JSON downloads →
The established core
The dataset labels 9 patterns as established. Build-Verify-Reflect separates construction from checking and feeds failures into a bounded retry. Standard operating procedures and role specialisation divide work into named responsibilities.
Other established patterns make evaluation or aggregation explicit. LLM-as-judge and arena rating assign comparison to a separate role. Structured debate tests opposing arguments before a decision, while layered ensembling combines independent proposals.
The emerging tier
The 14 emerging patterns explore coordination that is less standardised in current systems. Adversarial stress testing, multi-model consensus, and negotiation seek genuinely different perspectives or objectives. Evolutionary selection, teacher-student transfer, and competitive arenas use populations, transfer, or incentives to change the result over repeated rounds.
Recent research
The 22 frontier entries focus on graphs that adapt to the query, the current round, or changes in shared state. These are recent research results, often supported by a single paper, so the catalogue treats them as directions to watch rather than settled practice.
Topology becomes task-specific
Recent work selects a graph per query, rebuilds sparse communication links between rounds, or changes structure as agent capabilities evolve.
Isolation protects context
An orchestrator can give workers narrow contexts and collect compact outputs. The design reduces cross-talk but moves risk to aggregation, where conflicting or redundant results meet.
Shared state needs explicit rules
Parallel agents can read and change the same artifact over long intervals. Ordering, ownership, conflict detection, and repair must be part of the topology.
CoAgent illustrates the shared-state problem. It assigns a serial order, allows writes to proceed, then notifies affected agents so they can repair conflicts instead of holding a lock across long inference steps.
Where multiple agents help
The MAST study found that multi-agent systems often fail to outperform a single agent, with many failures caused by system design rather than model limits. A second agent is justified when it has a distinct job: independent verification, isolated context, adversarial review, specialised knowledge, or an explicit decision role. Without that separation, extra agents add cost and coordination risk without adding evidence.