What problem does it solve? Delegating work to sub-agents often wastes tokens through pasted file contents, vague task specs, and endless clarification round-trips. This Skill structures delegation so each sub-agent receives minimal context, a strict output format, and a complete specification it can finish without asking questions. ## Core Features & Use Cases - Four-step delegation protocol: task decomposition, minimal context envelopes (file paths only), explicit output contracts (JSON/markdown schemas), and no-round-trip specification checklists. - Three orchestration patterns: Fan-out for independent parallel tasks, Pipeline for sequential dependencies, and Supervisor for routing requests to domain specialists. - Token minimization techniques: pass file paths instead of contents, cap response lengths, share background context once, and enforce structured output formats. - Use Case: When asked to audit security, performance, and design across a codebase, the Skill fans out three independent sub-agents with path-only context and JSON output contracts, then merges the results into one report. ## Quick Start Ask the agent to split a large task into parallel sub-agent delegations with file-path-only context and a defined JSON output format for each sub-task.