Help us improve
Share bugs, ideas, or general feedback.
Invoke Codex CLI as a peer reviewer during planning phases. Get architectural critique before presenting plans to users.
npx claudepluginhub adrianleb/codex-plan-critique-skillInvoke Codex CLI as a peer reviewer during planning phases. Get architectural critique before presenting plans to users.
Share bugs, ideas, or general feedback.
A coding agent skill that invokes Codex CLI as a peer reviewer during planning phases. Get architectural critique on your implementation plans before committing to them.
Works with Claude Code and Codex (or any coding agent that supports skills).
When you're planning an implementation, this skill runs Codex in your project directory to review the plan with full visibility into your codebase. Codex acts as a senior architect and evaluates:
It returns a structured critique with a verdict (APPROVE or CONCERNS), strengths, and actionable suggestions.
In Claude Code:
claude plugin marketplace add adrianleb/codex-plan-critique-skill
claude plugin install codex-plan-critique
git clone https://github.com/adrianleb/codex-plan-critique-skill.git
# Copy into your global skills (available in all projects)
cp -r codex-plan-critique-skill/skills/codex-plan-critique ~/.claude/skills/
# Or copy into a specific project (available only in that project)
cp -r codex-plan-critique-skill/skills/codex-plan-critique your-project/.claude/skills/
The skill triggers automatically during planning phases. You can also invoke it explicitly:
> /codex-plan-critique
> critique this plan
> get a peer review
★ Codex Peer Review ─────────────────────────
## Verdict: APPROVE
## Strengths
- Clean separation between API and data layers
- Good use of existing middleware patterns
## Concerns
- Missing error handling for the webhook endpoint
- Consider using the existing EventBus instead of a new pub/sub
──────────────────────────────────────────────
If Codex is unavailable, the skill gracefully skips the review and continues without blocking.
.claude-plugin/
plugin.json # Plugin manifest
skills/
codex-plan-critique/
SKILL.md # Skill definition
scripts/
codex-critique.sh # Codex invocation script
OPENAI_API_KEY environment variable or codex loginIdeas for improvement:
PRs and ideas welcome. Open an issue to discuss before large changes.
MIT