What problem does it solve? Complex tasks often require multiple agents working across different domains, but naive sequential execution wastes time and poorly briefed workers produce wrong results. This Skill provides a structured coordination mode that decomposes tasks, dispatches parallel workers safely, and synthesizes their outputs into coherent results. ## Core Features & Use Cases - Phase-Based Orchestration: Enforces a Research → Synthesis → Implementation → Verification lifecycle with explicit concurrency rules for each phase. - Worker Prompt Templates: Provides research, implementation, and verification prompt patterns that prevent the "never delegate understanding" anti-pattern. - Fork and Spawn Semantics: Defines when to fork context-inheriting agents versus spawning fresh specialists, plus continue-vs-respawn decision rules. - Use Case: When asked to refactor an authentication system, decompose it into parallel codebase research workers, synthesize findings into a plan, dispatch sequential implementation workers per file set, then run independent verification workers. ## Quick Start Activate coordinator mode to break my complex task into parallel worker subtasks and synthesize their results into a unified plan.