What problem does it solve? Single agents hit context-window limits, suffer lost-in-middle degradation, and cannot parallelize work across domains. This Skill provides proven architectural patterns for splitting work across multiple agents with proper context isolation, coordination, and failure handling. ## Core Features & Use Cases - Three Core Architectures: Supervisor/Orchestrator for controlled delegation, Peer-to-Peer/Swarm for flexible handoffs, and Hierarchical layers for large projects. - Context Isolation Mechanisms: Instruction passing, file-system memory, and bounded task descriptions to keep each agent's context clean. - Consensus & Failure Mitigation: Weighted voting, debate protocols, TTL limits, circuit breakers, and supervisor bottleneck fixes like forward_message. - Use Case: When designing a system where research, coding, and review must run in parallel, apply the supervisor pattern with direct response forwarding to avoid the telephone-game distortion of sub-agent outputs. ## Quick Start Ask the agent to design a multi-agent architecture for your task using the supervisor, swarm, or hierarchical pattern with explicit handoff protocols.