What problem does it solve? Engineers often start coding multi-step features without a clear roadmap, leading to missed requirements, poor test coverage, and inconsistent commits. This Skill turns a spec or requirements document into a comprehensive, step-by-step implementation plan that any developer can follow without prior codebase context. ## Core Features & Use Cases - Bite-Sized Task Breakdown: Splits work into 2-5 minute steps following TDD: write failing test, verify failure, implement minimal code, verify pass, commit. - Standardized Plan Format: Produces plans with exact file paths, complete code snippets, exact commands with expected output, and a required header saved to docs/plans/YYYY-MM-DD-<feature-name>.md. - Execution Handoff: Offers a choice between subagent-driven execution in the current session or a parallel session using an executing-plans skill. - Use Case: Given a feature spec for a new API endpoint, generate a plan where each task lists exact files to create or modify, failing tests to write first, and commit commands, ready for task-by-task execution. ## Quick Start Ask the agent to use the writing-plans skill to create an implementation plan from your feature spec before writing any code.