Install
$ agentstack add skill-smirnov-labs-claude-skills-codex-plan-review ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
If you were dispatched as a subagent to execute a specific delegated task, do NOT follow this skill — skip it and return to the task you were given.
Codex Plan Review
Send the current working plan to Codex 5.4 for an independent second opinion. This skill is used to iterate on plans before committing to implementation.
When to Use
- After brainstorming produces a design spec
- After writing an implementation plan
- When you want a critical review before executing a plan
- When the user says "get a second opinion" or "review this plan"
Process
1. Find the Current Plan
Locate the most recent plan by checking these locations in order:
- Design specs:
docs/superpowers/specs/*.md(most recent by date prefix) - Plan files:
docs/superpowers/plans/*.md(most recent by date prefix) - Active context:
.claude/memory-bank/activeContext.mdfor references to current work
If no plan file is found, ask the user to point you to the plan or spec they want reviewed.
2. Read and Summarize the Plan
Read the full plan file. Construct a prompt for Codex that includes:
- The complete plan content
- The project context (from CLAUDE.md or memory bank if relevant)
- A request for critical architectural review
3. Send to Codex
Run Codex with these exact settings — non-spark model, high effort, read-only:
codex exec \
-m gpt-5.4-codex \
--config model_reasoning_effort="high" \
--sandbox read-only \
--skip-git-repo-check \
--full-auto \
2>/dev/null \
""
The prompt sent to Codex must follow this template:
You are a senior architect reviewing an implementation plan. Your job is to find weaknesses, missing considerations, and improvements. Be direct and specific.
PROJECT CONTEXT:
PLAN TO REVIEW:
Review this plan and provide:
1. **Structural Issues** — Are there missing steps, wrong ordering, or circular dependencies?
2. **Architectural Concerns** — Does the plan fight existing patterns? Are there simpler approaches?
3. **Risk Assessment** — What could go wrong? What assumptions are fragile?
4. **Missing Considerations** — What did the plan author overlook? (edge cases, error handling, testing, rollback)
5. **Specific Improvements** — Concrete suggestions, not vague advice. Reference specific plan sections.
Be critical. The goal is to strengthen the plan, not validate it.
4. Present the Review
After Codex returns its review:
- Present the Codex feedback to the user clearly
- Highlight any blockers or high-severity concerns
- Ask: "Want to incorporate any of this feedback into the plan?"
5. Iterate if Requested
If the user wants to update the plan:
- Edit the plan file with the agreed changes
- Optionally re-run Codex for another pass (ask first — avoid infinite loops)
Key Rules
- Always use
gpt-5.4-codex(not spark, not 5.3) - Always use
highreasoning effort - Always use
read-onlysandbox — this is a review, not an edit - Never skip the plan lookup step — if there's no plan, ask for one
- Present Codex output faithfully — don't filter or summarize away criticisms
- Remind the user they can run
codex resumefor follow-up questions
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Smirnov-Labs
- Source: Smirnov-Labs/claude-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.