From scaffolding
Builds minimal, reversible implementation plans after research. Sequences multi-file changes with rollback and verification per step.
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
Note: the Plan >= 85 gate is owned by architect/analyst, which run on the opus tier (
model: opus,effort: high) for higher reasoning rigor. Seedocs/model-tiers.md.
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.
Designs multi-file implementation plans grounded in codebase research. Invoked for any feature, refactor, or change needing structured design before coding.
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.