What problem does it solve? Single agents hit context limits, sequential bottlenecks, and degraded reasoning on complex tasks. This Skill provides proven architectural patterns for distributing work across multiple LLM agents with isolated context windows, explicit handoffs, and reliable coordination. ## Core Features & Use Cases - Three Architecture Patterns: Supervisor/orchestrator for centralized control, peer-to-peer/swarm for flexible handoffs, and hierarchical layers for large-scale projects. - Context Isolation Strategies: Full context delegation, instruction passing, and file system memory to partition work without context bloat. - Consensus & Failure Mitigation: Weighted voting, debate protocols, and mitigations for supervisor bottlenecks, divergence, and error propagation. - Use Case: When building a research assistant that must search multiple sources, analyze data, and write reports, use this Skill to design a supervisor that routes subtasks to specialized researcher, analyzer, and writer agents with direct response forwarding. ## Quick Start Design a multi-agent system with a supervisor coordinating researcher, analyzer, and writer sub-agents for my research workflow.