What problem does it solve? Completing multi-file or multi-module coding tasks with a single agent is slow and error-prone over long contexts. This Skill decomposes such tasks into independent subtasks, runs them in parallel with sub-agents, and merges the outputs with explicit conflict handling and consistency checks. ## Core Features & Use Cases - Parallel Subtask Decomposition: Splits a task by file/module, independent operations, vertical slices, or responsibility layers, then validates independence across file, interface, shared-resource, and implicit-import dimensions. - Batch Scheduling & Isolated Execution: Groups subtasks into dependency-ordered batches, runs sub-agents that write code to isolated directories, and uses contract files for weak dependencies. - Merge & Consistency Verification: The main agent merges outputs into the project source tree, handles file/interface/logic conflicts in tiers, and verifies compilation, imports, interface consistency, and acceptance criteria. - Use Case: You need to implement user, order, and payment modules at once. The Skill splits them into three fully independent subtasks, launches three sub-agents in parallel, merges their code, and validates the integrated result. ## Quick Start Ask the agent to split the task of implementing the user, order, and payment modules into parallel subtasks and execute them with sub-agents using task-dispatch.