How this skill is triggered — by the user, by Claude, or both
Slash command
/research-ideas:review-planThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Get independent technical feedback on your Claude Code plan from an LLM.
Get independent technical feedback on your Claude Code plan from an LLM.
IMPORTANT: Before running any commands, locate the review.sh script:
Glob: **/skills/review-plan/scripts/review.sh
Store the result as [REVIEW_SCRIPT]. Use this path for all subsequent bash commands.
If the script is not found, tell the user:
Error: Could not find review.sh script.
Make sure you're running from the sdlc-plugins directory or that the plugin is properly installed.
See README.md in this directory for setup instructions, available models, and troubleshooting.
/review-plan # auto-detect plan, use Azure/gpt-4o
/review-plan GCP/gemini-2.5-flash # use Gemini
/review-plan aws/claude-opus-4-6 # use Claude
/review-plan ~/.claude/plans/my-plan.md # explicit path
/review-plan --dry-run # verify config
.md → treated as plan fileprovider/model. Default: Azure/gpt-4o. See README.md for available models.--dry-run, --check-models, --help, --no-redactTest if models are reachable before running a full review:
/review-plan --check-models # test all 3 models
/review-plan --check-models Azure/gpt-4o # test single model
/review-plan --check-models aws/claude-opus-4-6 Azure/gpt-4o # test specific models
After finding [REVIEW_SCRIPT] using Glob, run:
[REVIEW_SCRIPT] [arguments]
Examples:
# Check model connectivity
[REVIEW_SCRIPT] --check-models aws/claude-opus-4-6 Azure/gpt-4o GCP/gemini-2.5-flash
# Review a plan
[REVIEW_SCRIPT] /path/to/plan.md Azure/gpt-4o
# Dry run
[REVIEW_SCRIPT] --dry-run
npx claudepluginhub inference-sim/sdlc-plugins --plugin research-ideasInvokes Codex to review implementation plans for gaps, risks, suboptimal steps, and alternatives. Triggered after Claude plans or on requests for second opinions.
Reviews Claude's implementation plans using Gemini for feedback on gaps, risks, optimality, alternatives, and completeness with project context.
Reviews implementation Plan files in parallel using Codex, Gemini, and Claude to analyze validity, gaps, risks, and improvements. Invoke via /plan-review after plan creation.