← ClaudeAtlas

review-planlisted

Use after writing implementation plans (superpowers:writing-plans output) or when the user says "review plan", "check my plan", "sanity check the plan", "validate plan", "review before executing". Also use before superpowers:executing-plans if a plan has not been reviewed yet.
rube-de/cc-skills · ★ 10 · Code & Development · score 75
Install: claude install-skill rube-de/cc-skills
# Review Plan — External Consultant Validation External consultants + codebase verification catch plan flaws before execution begins. ## Workflow ```dot digraph review_plan { rankdir=TB; node [shape=box]; locate [label="Step 1: Locate Plan"]; verify [label="Step 2: Codebase Verification"]; launch [label="Step 3: Launch Consultants\n(gemini + codex in parallel)"]; synthesize [label="Step 4: Deduplicate & Synthesize"]; present [label="Step 5: Present Structured Output"]; decide [label="Step 6: User Decision"]; locate -> verify -> launch -> synthesize -> present -> decide; decide -> execute [label="Ready to execute"]; decide -> revise [label="Needs revision"]; decide -> discuss [label="Needs discussion"]; execute [label="Offer execution handoff" shape=ellipse]; revise [label="List specific changes\nAsk: revise or proceed?" shape=ellipse]; discuss [label="Present trade-offs\nfor user decision" shape=ellipse]; } ``` ### Step 1: Locate Plan Check these sources in order — use the first match: - **Explicit argument**: If the user provided a file path, use it - **Conversation context**: If a plan was written or pasted earlier in this conversation, use that content - **Plan directory discovery**: From the **repository root**, search both plan directories and use the most recently modified `.md` file: ```bash ls -t .dev/cdt/plans/*.md docs/plans/*.md 2>/dev/null | head -1 ``` Note: Run this from the repo root, not from the skill directory.