codex-impl-review
9
总安装量
8
周安装量
#32567
全站排名
安装命令
npx skills add https://github.com/lploc94/codex_skill --skill codex-impl-review
Agent 安装分布
mcpjam
8
gemini-cli
8
claude-code
8
junie
8
windsurf
8
zencoder
8
Skill 文档
Codex Implementation Review
Purpose
Use this skill to run adversarial review on uncommitted changes before commit.
Prerequisites
- Working tree has staged or unstaged changes.
codexCLI is installed and authenticated.codex-reviewskill pack is installed (npx github:lploc94/codex_skill).
Runner
RUNNER="{{RUNNER_PATH}}"
Workflow
- Ask user to choose review effort level:
low,medium,high, orxhigh(default:high). Gather diff context (git status,git diff, optional plan file). SetEFFORTto their choice. - Build prompt from
references/prompts.md(Implementation Review Prompt). - Start round 1 with
node "$RUNNER" start --working-dir "$PWD" --effort "$EFFORT". - Poll with adaptive intervals (Round 1: 60s/60s/30s/15s…, Round 2+: 30s/15s…). Report Codex status to user after each poll.
- Parse issue list with
references/output-format.md. - Fix valid issues in code; rebut invalid findings with evidence.
- Resume debate via
--thread-iduntilAPPROVEor stalemate. - Return final review summary and unresolved risks.
Required References
- Detailed execution:
references/workflow.md - Prompt templates:
references/prompts.md - Output contract:
references/output-format.md
Rules
- Codex reviews only; it does not edit files.
- Preserve functional intent unless fix requires behavior change.
- Every accepted issue must map to a concrete code diff.
- If stalemate persists, present both sides and defer to user.