Agent Teams — Pre-GA Architecture Preview and Design Principles
Anthropic has published a pre-GA architecture preview of Agent Teams — the upcoming capability that will allow multiple Claude instances to collaborate on tasks through a structured orchestration layer. While Agent Teams is not yet available for general access, the preview document describes the architectural design choices, the trust model between orchestrator and sub-agents, and the message-passing protocol that enables multi-agent coordination. Early access is available for enterprise customers via the API waitlist.
Architecture overview
- Orchestrator-worker model — a designated orchestrator Claude instance decomposes tasks and dispatches subtasks to worker agents; workers complete their subtasks and return structured results to the orchestrator, which synthesises the final output
- Scoped trust — worker agents receive operator-level system prompts from the orchestrator but cannot exceed the permission level of the orchestrating agent; this prevents privilege escalation within a team
- Stateless workers by default — worker agents are stateless between subtask calls, enabling parallel dispatch; stateful workers (maintaining conversation history between calls) are supported but must be explicitly configured
- Failure propagation — the orchestrator receives structured error signals when a worker fails, and can choose to retry with a modified subtask, skip the subtask, or surface the failure to the user