Plan a Feature
This guide takes a feature from an idea to an approved implementation plan. It assumes the plugin is installed (see Getting started) and that you are working in a repository Claude Code has open.
Every artefact lands in meta/ (paths are
configurable),
so each step can start a fresh conversation without losing context.
-
Capture the feature as a work item (optional but recommended). Run
create-work-itemwith a short description:/accelerator:create-work-item add CSV export to the reports pageThe skill asks a few business-context questions, proposes requirements and acceptance criteria, and — once you approve — writes
meta/work/<id>-add-csv-export-....mdwithstatus: draft. -
Research the affected code. Run
research-codebasewith the question the plan needs answered:/accelerator:research-codebase how does report generation and download work?Parallel subagents explore the codebase and the findings are written to
meta/research/codebase/YYYY-MM-DD-<description>.mdwith file-and-line references. You can ask follow-up questions; they are appended to the same document. -
Create the plan. Run
create-plan, referencing the work item and/or research document:/accelerator:create-plan @meta/work/0042-add-csv-export.mdThis is interactive: the skill asks the questions research could not answer, offers design options, and agrees a phase structure with you before writing the full plan to
meta/plans/YYYY-MM-DD-<description>.md. Each phase carries success criteria split into automated and manual verification. The final plan must contain no open questions. -
Harden the plan before any code exists. Two companions, use either or both:
review-planruns the plan through parallel quality lenses (architecture, correctness, test coverage, …) and records a verdict — APPROVE, REVISE, or COMMENT — inmeta/reviews/plans/.stress-test-planinterrogates you about decisions, edge cases, and assumptions.
Update the plan in response and re-review until it earns APPROVE.
-
Hand over to implementation. Run
implement-plan— in a fresh session if you like, since the plan file carries all the context:/accelerator:implement-plan @meta/plans/2026-07-10-add-csv-export.mdThe skill works phase by phase, ticking off success criteria in the plan file itself, and pauses after each phase for your review.
-
Close the loop. After implementing (and committing), run
validate-planto verify the code matches the plan; a passing validation marks the planstatus: done.
See also
Section titled “See also”- Development Loop — the concepts behind the research → plan → implement spine.
- Full Workflow — where planning sits in the wider skill map.
- Which skill do I need?

