| name | plan-review |
| description | Criteria for reviewing implementation plans against quality standards |
Plan Review
Load this skill when reviewing implementation plans (not code).
TL;DR
Systematic plan review focused on 3 quality categories: Citation Quality, Completeness, and Actionability. Structure is pre-validated by plan_saveโfocus on whether the plan provides actionable implementation guidance.
When to Use This Skill
- When reviewing implementation plans before execution
- When auditing plan quality after creation
- When verifying plans meet documentation standards
- As part of the plan validation workflow
Plan Review Checklist
1. Structure (Pre-validated)
Note: Saved plans are structurally validated by plan_save before storage.
Format compliance (YAML frontmatter, status markers, CURRENT marker, numbering) is guaranteed.
Focus your review on the quality aspects below.
2. Citation Quality
| Requirement | Check |
|---|
| Decisions reference sources | ref:delegation-id format used |
| No unsubstantiated claims | Architectural decisions cite research |
| Research phases show refs | Completed research tasks include citations |
| Citations are verifiable | IDs match actual delegation outputs |
Red Flags:
- Decisions table with empty or
- in Source column
- Claims like "industry standard" or "best practice" without citation
- Research tasks marked complete without
โ ref:id
3. Completeness
| Requirement | Check |
|---|
| Goal is specific | Measurable outcome, not vague intent |
| Phases are logical | Sequential, with clear progression |
| Edge cases considered | Error handling, failure modes addressed |
| Notes section present | Key decisions and observations documented |
| Context & Decisions table | Captures architectural choices with rationale |
Goal Quality Examples:
- โ "Improve authentication" (vague)
- โ "Make it better" (unmeasurable)
- โ
"Add JWT authentication with refresh token support" (specific)
- โ
"Migrate user table to PostgreSQL with zero downtime" (measurable)
4. Actionability
| Requirement | Check |
|---|
| Tasks are specific | Clear what file/component is affected |
| No ambiguous tasks | Avoids "investigate" or "figure out" without scope |
| Dependencies clear | Sequential tasks show logical order |
| Implementation path obvious | Developer can start without clarification |
Actionability Examples:
- โ "Set up the backend" (too vague)
- โ "Make it work" (no implementation path)
- โ
"Create
src/auth/jwt.ts with sign/verify functions" (specific file)
- โ
"Add bcrypt password hashing to
UserService.create()" (clear scope)
Severity Classification
| Severity | Icon | Criteria | Action Required |
|---|
| Critical | ๐ด | Missing citations for key decisions, no clear goal, unactionable tasks | Must fix before execution |
| Major | ๐ | Vague tasks, incomplete phases, missing edge case handling | Should fix |
| Minor | ๐ก | Missing notes, unclear dependencies, incomplete rationale | Nice to fix |
| Nitpick | ๐ข | Style preferences, wording suggestions | Optional |
Output Format
Structure your plan review as:
## Plan Review
### Files Reviewed
- `PLAN.md` (or plan content from `plan_read`)
### Overall Assessment
APPROVE | REQUEST_CHANGES | NEEDS_DISCUSSION
### Summary
2-3 sentence overview of plan quality.
### Issues
#### ๐ด Critical
- [Issue description with specific location]
#### ๐ Major
- [Issue description with specific location]
#### ๐ก Minor
- [Issue description with specific location]
#### ๐ข Nitpick
- [Suggestion]
### Quality Assessment
| Check | Status |
| ------------------------------- | ----------- |
| Goal is specific and measurable | PASS / FAIL |
| Citations support key decisions | PASS / FAIL |
| Tasks are actionable | PASS / FAIL |
| Edge cases addressed | PASS / FAIL |
### Positive Observations
- [What's done well - always include at least one]
What NOT to Do
- Do NOT re-validate formatโ
plan_save handles structural validation
- Do NOT evaluate code quality (that's code-review's job)
- Do NOT execute or modify the plan during review
- Do NOT skip citation verification for decisions
- Do NOT accept vague goals or ambiguous tasks
- Do NOT forget to note positive observations
Adherence Checklist
Before completing a plan review, verify: