← ClaudeAtlas

review-planlisted

Multi-agent review of implementation plans. Use after creating a plan but before implementing, especially for complex or risky changes.
nielsmadan/skills · ★ 0 · Code & Development · score 75
Install: claude install-skill nielsmadan/skills
<!-- Generated from https://github.com/nielsmadan/agentic-coding — edits here are overwritten. --> # Plan Review Comprehensive review of implementation plans using parallel specialized agents. ## Usage ``` /review-plan # Review plan from current context /review-plan path/to/plan.md # Review specific plan file ``` ## Gotchas - The External Opinion agent depends on the `codex` CLI tool being installed and on PATH. If it is missing, that section of the synthesis is silently blank. - Vague plans get only generic feedback and soft warnings, giving a false sense of validation. Plans need implementation-level specifics (file paths, function names, data flow) to get useful review. ## Workflow ### Step 1: Extract Plan and Check Internal Docs Get the plan to review: - If path provided, read the file - Otherwise, use the plan from current conversation context - Summarize: problem statement, proposed solution, key implementation steps **Check internal documentation:** Use Grep to search for relevant keywords in `docs/` and `*.md` files. Look for documented patterns, architectural guidelines, or gotchas related to the plan's area. ### Step 2: Determine Review Scope Based on plan complexity, decide: - **Simple** (single file, minor change): Skip research agent, 2 alternatives - **Medium** (few files, new feature): All agents, 3 alternatives - **Complex** (architectural, multi-system): All agents + research, 4 alternatives **Do NOT shortcut this