Commands for interviewing about specifications and generating implementation plans.
Version: 0.1.1 License: MIT
This plugin provides two commands that work together in a specification-driven development workflow. The interviewer command helps gather detailed requirements through structured questioning, while the planner command generates actionable implementation plans from specifications.
Install from marketplace:
/install spec-interviewer-planner@leefowlercu-agent-kitRun the interviewer to gather detailed requirements for your specification:
/spec-interviewerThe command reads SPEC.md from your current directory, analyzes the codebase to understand its architecture and patterns, and then conducts an in-depth interview covering technical implementation, UI/UX, concerns, tradeoffs, and edge cases. After the interview, it updates SPEC.md with the gathered details.
Run the planner to generate an implementation plan:
/spec-plannerThe command analyzes your codebase, reads SPEC.md, and generates PLAN.md containing a structured implementation plan and a to-do style checklist.
| Component | Type | Description |
|---|---|---|
| spec-interviewer | Command | Interview user about SPEC.md to gather detailed implementation requirements |
| spec-planner | Command | Generate implementation plan from SPEC.md after analyzing codebase |
- A
SPEC.mdfile in the current working directory containing the specification to be interviewed or planned
- Create a
SPEC.mdfile with your initial specification - Run
/spec-interviewerto refine the specification through detailed questioning - Run
/spec-plannerto generate an implementation plan inPLAN.md - Follow the checklist in
PLAN.mdduring implementation