agentsclimarketplace

Workflow codex plan review

Skill marzun9620/agent_skills/workflow/skills/workflow-codex-plan-review

Delegate plan review to Codex CLI. Detects critical issues before showing the plan to the user. Iterative Initial Review + Re-review (resume --last) pattern; up to 5 loops. Triggers: /plan review, Codex plan review, plan quality check.From its SKILL.md

Install
npx -y skills add marzun9620/agent_skills --skill workflow-codex-plan-review

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.7 KB, 898 tokens by cl100k_base, as published. Nobody here has run it

Codex Plan Review — プランレビュー

Claude Code(orchestrator)が /plan で作成した plan を、ユーザーに提示する前に Codex にレビューさせるためのスキル。致命的な問題だけを指摘させ、瑣末な点は無視させる。

When to use

/plan コマンドの Step 5(ユーザー提示前レビュー)および Step 7(ユーザー修正後の再レビュー)。


Initial Review

plan を新規作成した直後、ユーザーに見せる前に実施。

pnpm codex exec \
  -m gpt-5.4 \
  -c model_reasoning_effort=medium \
  "このプランをレビューして。瑣末な点へのクソリプはしないで。致命的な点だけ指摘して: \
   .planning/plans/{feature}.md

   レビュー観点:
   - docs/adr/ の ADR に抵触する部分はないか
   - docs/product-specs/ の仕様に抵触する部分はないか
   - テストでカバーできていないユースケースはないか
   - DDD 的な観点で better にできる箇所はあるか
   - DRY / KISS 的な観点で修正すべき箇所はあるか
   - .claude/skills/workflow/ のスキルパターンに沿っているか

   ref: CLAUDE.md" 2>/dev/null

Re-review(修正後)

指摘を反映した後、前回セッションの文脈を引き継いで再レビュー。

pnpm codex exec resume --last \
  -m gpt-5.4 \
  -c model_reasoning_effort=medium \
  "プランを更新したからレビューして。瑣末な点へのクソリプはしないで。致命的な点だけ指摘して: \
   .planning/plans/{feature}.md

   ref: CLAUDE.md" 2>/dev/null

ループ制御(Claude Code 側)

Codex の指摘と plan 修正を繰り返すフロー:

  1. Initial Review を実行
  2. 致命的な指摘があれば → plan を修正 → Re-review
  3. 指摘が消えるまで 最大5回 ループ
  4. 5回で解消しない場合:
    • 残っている指摘をユーザーに提示
    • ユーザーの判断を仰ぐ(無視して進める or 追加修正)
  5. 指摘なし or ユーザー承認 → plan をユーザーに提示

ユーザー修正後の再レビュー

ユーザーが plan に修正を入れた後も、同じループを実施する:

  1. Re-review を実行(resume --last で文脈引き継ぎ)
  2. 致命的指摘 → 修正 → Re-review(最大5回)
  3. 解消 → 完了

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,764. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.