What problem does it solve? Complex multi-step coding tasks can overload a single agent's context with implementation details, and parallel subagents can corrupt each other's work when workspace isolation is unclear. This Skill enforces a disciplined orchestrator pattern where the lead agent only coordinates, dispatches, and reviews. ## Core Features & Use Cases - Pure orchestration mode: The lead agent dispatches worker subagents for all concrete work (edits, code execution, commits) and never executes directly while the mode is active. - Workspace safety resolution: Detects whether the runtime provides isolated worktrees or a shared filesystem, then assigns disjoint worker scopes or serializes code-changing workers accordingly. - Wave consolidation and cold-review gate: Consolidates patches between dependent waves and spawns an adversarial fresh-context reviewer for large or ambiguous changes. - Use Case: During a large refactor spanning 100+ files, activate orchestrator mode so the lead agent dispatches scoped workers in waves, consolidates their patches, and gates the result with an independent review before declaring done. ## Quick Start Say "/orchestrate-mode" or "become an orchestrator" to switch the session into dispatch-only orchestration, then provide the work item to delegate.