plan-review-workflow
1
总安装量
1
周安装量
#77274
全站排名
安装命令
npx skills add https://github.com/spences10/claude-code-toolkit --skill plan-review-workflow
Agent 安装分布
amp
1
cline
1
opencode
1
cursor
1
continue
1
kimi-cli
1
Skill 文档
Plan Review Workflow
Separate planning from implementation using two sessions.
When to Use
- Complex refactors affecting multiple files
- Architectural decisions with tradeoffs
- Changes requiring domain expertise validation
- When implementation keeps drifting from intent
The Two-Session Pattern
Session A: Planning
- Enter plan mode:
/planor shift+tab - Describe the change, gather context
- Claude produces detailed implementation plan
- Export plan to markdown file
/plan
> Refactor auth to use JWT. Currently session-based in auth.ts.
Plan stays in plan mode until explicitly exited.
Session B: Staff Review
Start fresh session. Load plan as context:
Review this plan as a staff engineer. Challenge assumptions,
identify risks, suggest alternatives.
[paste or reference plan file]
Use challenge prompts from staff-review.md.
Decision: Iterate or Implement
After review:
| Signal | Action |
|---|---|
| Major gaps identified | Return to Session A, revise plan |
| Minor clarifications | Note in plan, proceed |
| Plan approved | Exit plan mode, implement |
Drift Recovery
When implementation diverges from plan:
- Stop implementation
- Re-enter plan mode:
/plan - Compare current state to original plan
- Update plan or reset approach
See drift-recovery.md for patterns.
Commands Reference
See plan-commands.md for full command list.
References
- staff-review.md – Review prompts and criteria
- plan-commands.md – Plan mode commands
- drift-recovery.md – Handling implementation drift