What problem does it solve? Single-agent systems hit context window limits, suffer from context degradation, and cannot parallelize work across independent subtasks. This Skill provides architectural patterns and coordination utilities for distributing work across multiple LLM agents without introducing coordination overhead that negates the benefits. ## Core Features & Use Cases - Three Architecture Patterns: Implement supervisor/orchestrator, peer-to-peer swarm, and hierarchical agent structures with guidance on when each fits. - Coordination Utilities: Use the included Python module for agent messaging, task delegation, weighted consensus voting, handoff protocols, and circuit-breaker failure handling. - Framework References: Apply framework-specific implementations for LangGraph, AutoGen, and CrewAI from the references directory. - Use Case: When building a research system where a single agent's context overflows, use this Skill to design a supervisor that routes subtasks to specialized researcher, analyzer, and writer agents with isolated contexts and validated handoffs. ## Quick Start Design a multi-agent system with a supervisor coordinating specialized worker agents for my research workflow.