From scaffolding
Builds minimal, reversible implementation plans after research, sequencing multi-file changes with rollback and verification steps.
How this skill is triggered — by the user, by Claude, or both
Slash command
/scaffolding:planning-methodologyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Systematic approach for creating minimal, reversible implementation plans after research phase.
Systematic approach for creating minimal, reversible implementation plans after research phase.
## ImplementationPlan: [Feature]
### Scope
- Files to modify: X
- New files: Y
- Tests to add: Z
### Changes
| # | File | Action | Verification |
|---|------|--------|--------------|
| 1 | path/file.ts | MODIFY | type-check |
| 2 | path/new.ts | CREATE | builds |
### Steps
1. [Step with verification]
2. [Step with verification]
### Rollback
[How to revert each change]
### Success Criteria
- [ ] npm run validate passes
- [ ] Feature works as specified
Plan must score >= 85:
| Criterion | Points |
|---|---|
| All files listed | 15 |
| Step-by-step sequence | 15 |
| Verification per step | 15 |
| Rollback complete | 15 |
| APIs match research | 15 |
| Risk assessment | 10 |
| Test plan | 10 |
| Success criteria | 5 |
npx claudepluginhub komluk/scaffolding --plugin scaffoldingTransforms research findings into actionable implementation plans with granular steps, verification criteria, and stakes-based enforcement. Useful for structuring complex coding tasks before execution.
Generates execution-ready implementation plans from research docs in .artifacts/research/. Ensures junior developers can execute tasks with zero ambiguity. Planning only—no code changes, fixes, or verification.
Generates structured implementation plans from feature descriptions or requirements, grounded in repo patterns and research. Deepens existing plans via interactive sub-agent review.