بنقرة واحدة
conducting-plan-review
// Complete workflow for evaluating implementation plans before execution with quality checklist and structured feedback
// Complete workflow for evaluating implementation plans before execution with quality checklist and structured feedback
Use boolean decision trees instead of imperatives for 100% compliance under pressure
Use when creating or developing, before writing code or implementation plans - refines rough ideas into fully-formed designs through collaborative questioning, alternative exploration, and incremental validation. Don't use during clear 'mechanical' processes
Use when completing tasks, implementing major features, or before merging to verify work meets requirements - dispatches cipherpowers:code-review-agent subagent to review implementation against plan or requirements before proceeding
Establish workflow boundary checklists with clear pass/fail criteria and escalation procedures
Use when you've developed a broadly useful skill and want to contribute it upstream via pull request - guides process of branching, committing, pushing, and creating PR to contribute skills back to upstream repository
Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification
| name | Conducting Plan Review |
| description | Complete workflow for evaluating implementation plans before execution with quality checklist and structured feedback |
| when_to_use | when evaluating implementation plans, before executing plans, when another agent asks you to review a plan |
| version | 1.0.0 |
Systematic plan evaluation process ensuring plans are comprehensive, executable, and account for all quality criteria (security, testing, architecture, error handling, code quality, process) before implementation begins.
Use verifying-plans when:
Don't use when:
Before starting:
Core workflow:
Read these to understand quality standards:
${CLAUDE_PLUGIN_ROOT}standards/code-review.md - Quality standards apply to plans too${CLAUDE_PLUGIN_ROOT}principles/development.md - Development principles (includes testing)Locate the plan:
.work/<feature-name> directoryYYYY-MM-DD-<feature-name>.mdRead the plan completely:
Review ALL categories from verify-plan-template.md:
Security & Correctness (6 items)
Testing (6 items)
Architecture (7 items)
Error Handling (3 items)
Code Quality (7 items)
Process (6 items)
Empty BLOCKING section is GOOD if you actually checked. Missing sections mean you didn't check.
BLOCKING vs SUGGESTIONS decision:
Use BLOCKING when:
Use SUGGESTIONS when:
Rule of thumb:
Task Granularity:
Completeness:
TDD Approach:
Template location:
${CLAUDE_PLUGIN_ROOT}templates/verify-plan-template.md
YOU MUST use this exact structure:
# Plan Evaluation - {Date}
## Status: [BLOCKED | APPROVED WITH SUGGESTIONS | APPROVED]
## Plan Summary
- **Feature:** [Feature name]
- **Location:** [Path to plan file]
- **Scope:** [Brief description]
## BLOCKING (Must Address Before Execution)
[Issues or "None"]
**[Issue title]:**
- Description: [what's missing or problematic]
- Impact: [why this blocks execution]
- Action: [what needs to be added/changed]
## SUGGESTIONS (Would Improve Plan Quality)
[Suggestions or "None"]
**[Suggestion title]:**
- Description: [what could be improved]
- Benefit: [how this would help]
- Action: [optional improvement]
## Plan Quality Checklist
[Check all 35 items across 6 categories]
## Plan Structure Quality
[Evaluate task granularity, completeness, TDD approach]
## Assessment
**Ready for execution?** [YES / NO / WITH CHANGES]
**Reasoning:** [Brief explanation]
File naming:
Save to .work/{YYYY-MM-DD}-verify-plan-{HHmmss}.md
Example: .work/2025-11-22-verify-plan-143052.md
Time-based naming ensures:
Do NOT create custom section structures. Use template exactly. Additional context (plan excerpts, specific examples) may be added at the end, but core template sections are mandatory.
NEVER skip:
Common rationalizations that violate workflow:
Writing plans:
${CLAUDE_PLUGIN_ROOT}skills/writing-plans/SKILL.mdExecuting plans:
${CLAUDE_PLUGIN_ROOT}skills/executing-plans/SKILL.mdSee test-scenarios.md for pressure tests validating this workflow resists rationalization.