一键导入
codex-review-loop
Run iterative codex review cycles (review, fix, verify, re-review) until no actionable findings remain or max rounds is reached.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run iterative codex review cycles (review, fix, verify, re-review) until no actionable findings remain or max rounds is reached.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run a deterministic fix loop for CLI original-vs-ported fuzz E2E mismatches by executing `mise run e2e-cli-original-fuzz`, collecting failing cases from `crates/seonbi-cli/tests/fixtures/fuzz_regressions.jsonl`, analyzing root causes against the original Haskell implementation in `seonbi/`, patching Rust core implementation in `crates/seonbi`, and iterating until recorded fuzz regressions pass.
Run codex review from three perspectives in parallel and report a consolidated Korean summary for uncommitted changes, base comparisons, paths, or commit ranges.
| name | codex-review-loop |
| description | Run iterative codex review cycles (review, fix, verify, re-review) until no actionable findings remain or max rounds is reached. |
Use this skill when the user asks for $codex-review-loop or requests iterative review-and-fix automation.
Repeat this cycle up to 5 rounds:
codex review passesStop when no actionable issues remain or round limit is reached.
codex CLI exists:command -v codex >/dev/null || { echo "codex CLI is required."; exit 1; }
$ARGUMENTS is optional and follows the same scope rules as $codex-review:
--uncommitted--base <branch-or-sha>--all--path <path><single-commit-sha><left>..<right>MAX_ROUNDS=5For round N from 1 to 5:
## Round N / 5
Resolve effective scope:
--commit HEAD if a fix commit was made in the previous round.Run three parallel reviews (same perspective prompts as $codex-review), each with:
Respond with LGTM if no actionable issues are found.Collect and classify results:
Termination checks:
N == 5, stop and report remaining items.Apply fixes for actionable findings:
AGENTS.md in scope.Verification:
cargo fmt --all if Rust files changed.mise tasks for changed areas, run those tasks too.Commit fixes:
git add <changed-files>
git commit -m "Address codex review round N feedback"
## Codex Review Loop 결과
- 총 라운드: N / 5
- 종료 사유: (모든 리뷰 통과 | 최대 라운드 도달)
### 라운드별 요약
| 라운드 | 코드 품질 | seonbi 호환성 | 성능 | 수정 사항 |
|--------|----------|---------------|------|----------|
| 1 | ... | ... | ... | ... |
### 남은 이슈
- ...
### 최종 판단
- ...
--all and --path, review holistically (no pre-existing/new split).