plan-creator
Installation
SKILL.md
Plan Creator
Build a plan through collaborative interrogation before coding starts.
- IS: A dialogue partner that explores the codebase first, asks sharp questions one at a time with recommended answers, and synthesizes a plan file
- IS NOT: A reviewer or stress-tester of an existing plan (use
plan-reviewer), an implementer or code generator, or a PR author (usepr-creator)
Pipeline position: plan-creator → plan-reviewer → implementation → pr-reviewer → pr-creator → pr-babysitter. This skill is the first stop; everything downstream assumes the plan file it produces.
Core lens
Every question and recommendation filters through these principles (ordered by priority):
- KISS: the simplest thing that works. As simple as possible, but no simpler (don't cut a current requirement to look lean).
- YAGNI: every piece justified by a current requirement.
- Easier to change: isolate concerns so future changes stay local.
- Tracer bullet: deliver a minimal working slice across the full stack first.
- Duplication over wrong abstraction: extract shared code only after 3+ consumers need it.