Digitorn
Digitorn
All terms
Agent concepts

Multi-agent system

A set of agents that collaborate, typically a coordinator that spawns specialist workers in parallel.

also known as: multi-agent orchestration, agent swarm, agentic orchestration
In depth

Multi-agent setups are how production-grade agent work scales. The canonical pattern is a coordinator that decomposes a task and delegates each piece to a specialist worker, then merges the results. Each agent has its own brain, its own tools, its own system prompt, which makes it easy to route cheap turns to a cheap model and premium turns to a premium one. The cost story alone is usually enough to justify going multi-agent on any non-trivial task.

What it looks like in practice

YAML
1agents:2  - id: coordinator3    brain: { model: claude-sonnet-4-6 }4    workers: [explorer]5  - id: explorer6    brain: { model: claude-haiku-4-5 }7    modules: [filesystem]
Related concepts
Read the deep dive

How to build a Claude Code clone in YAML

Read article
Newsletter

Get the next post in your inbox.

Engineering notes from the Digitorn team. No marketing, no launch announcements, no "10 prompts that will change your life". Just the things we write that we'd want to read.

One-click unsubscribe. We never share your address. Powered by our own infrastructure, not a tracker.

More in Agent concepts

Agent loop/glossary/agent-loopAgent spawn/glossary/agent-spawnAI agent/glossary/ai-agentCompaction/glossary/compactionCoordinator agent/glossary/coordinatorFunction calling/glossary/function-calling