What problem does it solve? Turning a high-level architecture plan into concrete, assignable work is slow and error-prone. This Skill breaks plans and design specs into small, independently testable task files that Coder, QA, Designer, and Automation agents can execute in parallel without cross-repo confusion. ## Core Features & Use Cases - Plan Decomposition: Reads architecture plans from .workflow/plans/ and produces structured task files with type, status, repo, parallel group, branch naming, and acceptance criteria. - Parallel Group Assignment: Groups tasks by dependency order so the Coordinator can spawn independent tasks simultaneously across repos and mono-repo sub-projects. - Contract Embedding: Extracts cross-repo API shapes, data models, and event schemas and embeds them verbatim into each task file so execution agents never need to read other repos. - Dual Workflow Backends: Supports a default markdown backend writing to .workflow/tasks/ and a github_project mode that delegates task creation to a board-man agent as GitHub sub-issues. - Use Case: Given a multi-repo feature plan touching a backend service and a mobile app, generate task files where schema changes land in group 1, backend work in group 2, and mobile UI in group 3, each with its own feature sub-branch. ## Quick Start Ask the agent to read the feature plan in .workflow/plans/ and decompose it into parallel-grouped task files for the affected repos.