一键导入
codex-review
Send plans, code, or approaches to OpenAI Codex CLI for independent review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Send plans, code, or approaches to OpenAI Codex CLI for independent review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | codex-review |
| description | Send plans, code, or approaches to OpenAI Codex CLI for independent review. |
| argument-hint | [context] |
| user-invocable | true |
| disable-model-invocation | true |
| context | fork |
| allowed-tools | Read, Grep, Glob, Bash |
When invoked, send the relevant context — plans, approaches, code, or any combination — to codex CLI for an independent review.
Files and instructions: $ARGUMENTS
This skill covers both code and plans/approaches:
Adapt what you send based on what the user asks Codex to review.
The arguments are free-form and flexible. They may contain:
@auth.ts review this file for security issuesParse the arguments to determine what context to gather and send to Codex.
/codex-review review my current plan — review the plan from the current conversation/codex-review review the code I just wrote — review recent code changes/codex-review review the approach and the implementation together — review both plan and code/codex-review @auth.ts review this file for security issues — review a specific file with focus/codex-review review the last commit — review the most recent commit diffGather context: Collect the relevant material to send for review based on what the user asked. Match the scope of what you send to the scope of the ask — if the user points at a single function, send that function and its immediate dependencies, not the entire file history or conversation. A quick opinion needs adequate context; a full architecture review needs more.
git diff) and a brief description of intent — not every file in the repoBuild the prompt: Construct a clear prompt for Codex that includes:
Run codex: Write the full prompt to a temporary file, then pipe it to the helper script:
echo "Review the following <code/plan/approach> for a software engineering task and provide feedback.
## Project Context
<project context>
## What to Review
<code, plan, approach, or combination>
## Please provide:
1. Overall assessment
2. Potential issues or risks
3. Suggested improvements
4. Anything missing or overlooked
## Output rules
- Be concise
- Do not echo back the entire code or plan you were given
- Short code snippets are fine to illustrate a point, but never include entire files
- If you explore the codebase, summarise what you found — do not paste what you read" | skills/codex-review/run-codex.sh
Important:
echo "..." | skills/codex-review/run-codex.sh — never use heredocs (indentation causes hangs)codex is installed and exits with a clear error if notReport back: Present the Codex feedback to the user clearly:
Ruthlessly tear apart code design — naming, abstractions, coupling, complexity, and everything else.
Generate Mermaid diagrams in the README to visualise architecture, flows, or relationships from the codebase.
Analyse test coverage gaps and report uncovered code before making changes.
Run tests, fix failures, and re-run until the suite passes.
Write and improve tests — reuse existing patterns, ensure consistency, and maintain quality.
Isolate a function or code block into a self-contained, runnable script for study and manual testing.