codex-plan-review

📁 lploc94/codex_skill 📅 3 days ago
9
总安装量
6
周安装量
#32326
全站排名
安装命令
npx skills add https://github.com/lploc94/codex_skill --skill codex-plan-review

Agent 安装分布

mcpjam 6
iflow-cli 6
claude-code 6
junie 6
windsurf 6
zencoder 6

Skill 文档

Codex Plan Review

Purpose

Use this skill to adversarially review a plan before implementation starts.

Prerequisites

  • A plan file exists (plan.md or equivalent).
  • codex CLI is installed and authenticated.
  • codex-review skill pack is installed (npx github:lploc94/codex_skill).

Runner

RUNNER="{{RUNNER_PATH}}"

Workflow

  1. Ask user to choose debate effort level: low, medium, high, or xhigh (default: high). Set EFFORT to their choice.
  2. Build prompt from references/prompts.md (Plan Review Prompt).
  3. Start round 1 with node "$RUNNER" start --working-dir "$PWD" --effort "$EFFORT".
  4. Poll with adaptive intervals (Round 1: 60s/60s/30s/15s…, Round 2+: 30s/15s…). Report Codex status to user after each poll.
  5. Parse Codex issues (ISSUE-{N} + VERDICT) using references/output-format.md.
  6. Apply valid fixes to the plan, rebut invalid points, and resume with --thread-id.
  7. Repeat until APPROVE or deterministic stalemate.
  8. Return final debate summary and final plan.

Required References

  • Detailed execution steps: references/workflow.md
  • Prompt templates: references/prompts.md
  • Output contract: references/output-format.md

Rules

  • Keep debate in plan mode when available.
  • Do not implement code in this skill.
  • Do not claim consensus without explicit VERDICT: APPROVE or user-accepted stalemate.
  • Preserve traceability: each accepted issue maps to a concrete plan edit.