What problem does it solve? Coordinating multi-step implementation work from a task plan is error-prone: dependencies get missed, tasks run in the wrong order, and completed work goes unverified. This Skill automates execution of a tasks.yaml file by resolving dependencies, dispatching implementation agents, and gating completion on independent verification. ## Core Features & Use Cases - Dependency-aware orchestration: Reads tasks.yaml, finds ready tasks whose dependencies are done, and runs them sequentially or in parallel (up to 3 concurrent agents) based on file overlap. - Agent delegation with verification: Dispatches code-writer-simple or code-writer-complex agents with a structured task packet, then requires an independent verifier subagent to return an evidence-backed PASS before marking any task done. - Status tracking via CLI: Uses tasks.py commands (summary, ready, set, verify) to keep task state consistent and report progress. - Use Case: You have a spec broken down into .specs/auth-feature/tasks.yaml. Run the Skill against that file and it executes each task in dependency order, verifying each implementation before moving on. ## Quick Start Ask the agent to run the tasks in .specs/auth-feature/tasks.yaml and execute each ready task with verification until all are done.