What problem does it solve? Building systems where a single agent hits context limits or lacks diverse expertise requires structured multi-agent design, and this Skill provides the architecture patterns, communication models, and implementation guidance to do it correctly. ## Core Features & Use Cases - Architecture Patterns: Provides four proven patterns (Orchestrator, Pipeline, Specialist, Debate) with diagrams and guidance on when to use each. - Implementation Templates: Includes Python class skeletons for Agent and Orchestrator with routing logic. - Workflow Checklists: Offers phased checklists covering role definition, interaction patterns, execution, and validation checkpoints. - Use Case: When building a code review system, use the Orchestrator pattern to coordinate a Coder agent, Tester agent, and Reviewer agent with clear handoff triggers and a summarizer for final output. ## Quick Start Design a multi-agent system for my code review workflow using the orchestrator pattern with coder, tester, and reviewer agents.