Spec plan
Agent Skills for Spec-Driven Development
npx -y skills add h3y6e/spec-skills --skill spec-planAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Create or update specs/{feature}/plan.md by turning an approved spec into one execution-ready document with key technical decisions, phased tasks, IDs (T001...), parallel candidates (P), story linkage, TDD-oriented bite-sized steps, and Definition of Done per phase. Use this skill whenever someone wants to translate a spec into concrete implementation work without maintaining a separate execution-design file, create a structured task checklist for a feature, add DoD to task phases, or create/update plan.md. This follows spec-specify and precedes spec-implement in the spec-driven workflow. Don't use for general to-do lists or project management outside the spec workflow.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
5.9 KB, as published. Nobody here has run it
Plan Skill
Purpose
Core principle: Write plans assuming the engineer has zero codebase context. Document everything they need: which files, what code, how to test, how to verify. No guessing.
Create or update specs/{feature}/plan.md as the execution source of truth, including technical context, key decisions, phased tasks, and completion conditions.
Input
- Existing
specs/constitution.mdwhen present specs/{feature}/spec.md
Output
specs/{feature}/plan.mdspecs/{feature}/spec.mdwhen backflow is required
Steps
- Resolve
languageand shared rules fromspecs/constitution.mdwhen present; otherwise infer from the available workflow documents and the user's own message. Ask only if still unclear, then conduct all subsequent interaction in this language. - Read
spec.md, extract frontmatter dependencies, user stories, and constraints, and confirm spec approval state.- Require
spec.mdto beapprovedbefore generating the execution plan - Read listed
dependenciesbefore planning; use them to resolve scope, sequencing, or validation constraints
- Require
- Create the plan from
references/plan-template.md.- Summary
- Execution Context
- Key Decisions
- Requirement Coverage
- Phases: Setup, Foundational, User Story (P1, P2, ...), Polish
- When uncertainty could change the spec or plan structure, delegate to
spec-researchinstead of investigating inline
- Map out the file structure before defining tasks.
- List which files will be created or modified and what each one is responsible for
- Prefer smaller, focused files over large ones that do too much; files that change together should live together
- In existing codebases, follow established patterns; if a file has grown unwieldy, include a split in the plan
- Capture only execution-facing detail that must stay aligned during implementation.
- Record technical context, constraints, validation strategy, and key decisions here instead of splitting them into another document
- Reference the spec for user-facing intent rather than repeating full story prose
- Standardize the task format.
- [ ] Txxx ...- Use
(P)for parallel candidates - Use
[USn]for story linkage - Assume the implementer is skilled but has little codebase or domain context; each task should be a single action that can be completed quickly and independently
- When testing is required, make the expected test change, verification command, and expected outcome explicit instead of assuming the implementer will fill them in
- Every task must contain the concrete content needed to execute it; do not use placeholders such as "TBD", "TODO", "implement later", "fill in details", or references like "Similar to Task N"
- Do not defer critical details behind vague instructions such as "Add appropriate error handling" or "Write tests for the above"; spell out the required work directly
- Add a requirement coverage map.
- Map each user story, functional requirement, and success criterion to task IDs or phase DoD
- If a requirement has no task or DoD coverage, add the missing task or run backflow
- Add
DoDunder each phase.- Include checks for testing, observability, and rollback readiness
- Write DoD as proof that the phase itself is complete
- Express execution dependencies through phase order and task descriptions.
- Place high-uncertainty discovery work before irreversible implementation tasks
- Preserve spec-to-spec prerequisites in
spec.mdfrontmatterdependencies
- Run backflow if requirement gaps or contradictions are discovered.
- Update
spec.md - Reset
spec.mdstatus todraft
- Update
- Update frontmatter.
- Required keys:
status,summary - Initial
status:draft - Set
status: approvedwhen the plan is ready for implementation
- Required keys:
- Perform final review and keep the file within 150 lines.
- Verify every story, requirement, and success criterion has task or DoD coverage
- Search for placeholders and vague work instructions
- Check that paths, task IDs, commands, and expected outputs are internally consistent
- Remove repetition
- Simplify wording
- Resolve contradictions
- In the completion message, suggest the next step.
- After approval:
spec-implement - If requirement changes are needed:
spec-specify - If technical investigation is needed:
spec-research
- After approval:
Success Criteria
- The plan combines execution design and delivery sequencing without requiring another execution document.
- The plan supports independent delivery by story.
- Every story, requirement, and success criterion has explicit task or DoD coverage.
- Each phase has a clear DoD.
(P)marks valid parallel work.- Every task contains concrete code, commands, and expected output — no placeholders.
- High-uncertainty work is front-loaded as spike or research tasks when needed.
- Spec frontmatter dependencies are considered before tasking.
- Backflow handling is explicit.
Completion Guidance
- Next recommended step:
spec-implement - If technical investigation is needed before proceeding:
spec-research - Include the target feature and generated
plan.mdpath in the response