Skip to content

7oru/codex-review-loop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

codex-review-loop

Language: English | 简体中文

Codex skill for P0/P1 repository review/fix loops with paired or batch codex exec runners.

Recommended GitHub description:

Codex skill for P0/P1 repository review/fix loops with paired or batch codex exec runners.

Contents

What It Is

codex-review-loop is a Codex skill for repeatable repository review/fix passes. It keeps the loop focused on severe, actionable issues instead of turning a review into a general backlog.

By default it:

  • reviews only for real P0/P1 correctness, security, data integrity, and core workflow failures;
  • keeps review sessions read-only;
  • fixes only the selected issue or selected safe batch;
  • adds or updates regression coverage;
  • commits fixes after tests pass;
  • records durable loop state in review-loop.md.

Back to top

When To Use It

Use it when you want Codex to:

  • check a release-critical workflow before shipping;
  • verify a local install/run path;
  • look for serious regressions after a large change;
  • run several review/fix rounds without keeping the current chat in an open-ended loop.

Do not use it as a replacement for CI, broad style review, or P2/P3 backlog generation.

Back to top

Prerequisites

To use the skill:

  • Codex App or Codex CLI with codex exec available.
  • Git, because review/fix passes inspect repository state and commit completed fixes.

To work on this repository or run the bundled runner directly:

  • Python 3.10 or newer.
  • No third-party Python package install is required for the current tests.

Back to top

Install

Clone this repository into your Codex skills directory:

mkdir -p ~/.codex/skills
git clone https://github.com/7oru/codex-review-loop.git ~/.codex/skills/review-fix-loop

The directory name should be review-fix-loop, matching the skill name used in prompts.

If you already cloned this repository for development, symlink the checkout instead:

mkdir -p ~/.codex/skills
ln -s "$(pwd)" ~/.codex/skills/review-fix-loop

Start a new Codex session in your target repository and ask:

Use $review-fix-loop to run one review/fix loop in this repository.

Back to top

Verify This Repo

Run the unit tests:

python3 -m unittest discover -s tests

Smoke-test the runner without starting real child Codex sessions:

python3 scripts/run_codex_pair_loop.py \
  --repo . \
  --max-rounds 1 \
  --review-prompt "dry-run smoke test" \
  --dry-run

--dry-run prints the generated codex exec commands and exits without reviewing or editing the repository.

Back to top

Common Usage

Run one pass:

Use $review-fix-loop to run one review/fix loop in this repository.

Run up to three rounds:

Use $review-fix-loop with max round 3.

Limit the review scope:

Use $review-fix-loop with max round 3. Review only the local one-click install/run path.

If you want a scheduled automation, say the cadence explicitly. max round 3 is only a cap:

Use $review-fix-loop with max round 3, hourly.

Back to top

Sample Transcript

This mocked transcript shows the lightweight shape of a real max round 3 run. Exact wording, commands, paths, filenames, and commit hashes vary by repository.

User
Run 3 rounds of review fix loop for this repo.

Codex
I will use the review-fix-loop skill for its workflow: an independent
review looks only for P0/P1 issues, fix sessions repair and verify
findings, and state is kept between rounds. I am reading the repo and
the skill constraints first.

Status: Explored 1 file and ran 2 commands.

The repo is on main and the working tree is clean. "3 rounds" is a cap,
not a schedule, so I will run paired review/fix child sessions and stop
early on CLEAN, BLOCKED, or test failure. The resolved state directory is
tmp, so the target repo does not need a .codex directory.

Status: Ran 3 commands.

The local CLI flags do not fully match the bundled runner, so I will use
the skill fallback and launch equivalent independent review/fix child
sessions with codex exec. Round 1 review is read-only and will only
report a real P0/P1 issue.

Status: Round 1 review running.

Round 1 review found one P1: duplicate run_id values can overwrite SFT
training artifacts in run/adapters. I am starting the round 1 fix
session; it will only fix this issue, add regression coverage, run tests,
and commit locally.

Status: Round 1 fix running.

The fix session confirmed a clean workspace, updated training.py, and
added a collision regression test in test_phase3_sft_training.py. The
fix checks for an existing run/adapters directory before writing new
artifacts, so old outputs are not silently destroyed.

Status: tests passed and fix committed.

Round 2 review rechecked the updated training and evaluation paths and
found no actionable P0/P1 issue. The loop recorded CLEAN and stopped
early; round 3 was not spent just to exhaust the cap.

Result
Outcome: FIXED then CLEAN
State: /var/folders/.../codex-review-loop/<repo-id>/review-loop.md
Commit: abc1234 Fix run adapter collision protection

Back to top

Runner Modes

The bundled runner starts child codex exec sessions for you.

Batch mode is lighter: one review session can report up to N P0/P1 findings, then one fix session repairs the safe coherent batch.

python3 ~/.codex/skills/review-fix-loop/scripts/run_codex_pair_loop.py \
  --repo /path/to/repo \
  --max-rounds 3 \
  --runner-mode batch \
  --test-profile focused \
  --review-prompt "review only the local one-click install/run path"

Paired mode is stricter: each round starts a fresh review session and, when needed, a fresh fix session.

python3 ~/.codex/skills/review-fix-loop/scripts/run_codex_pair_loop.py \
  --repo /path/to/repo \
  --max-rounds 3 \
  --runner-mode paired \
  --review-prompt "review whether most users can run this locally in one command"

Useful options:

  • --runner-mode batch: faster local multi-finding review/fix.
  • --runner-mode paired: stricter per-round traceability.
  • --test-profile focused: run cheap tests for touched behavior.
  • --test-profile final-full: run focused tests during the loop and broader validation at the end.
  • --test-profile full: run the broadest practical validation after each fix.
  • --state-dir tmp: keep loop state outside the target repository.
  • --prompt-profile skill: load the full skill in child sessions, mainly for debugging the skill itself.
  • --ignore-user-config: reduce noise from user-level config or plugin sync.

On macOS, the runner prefers /Applications/Codex.app/Contents/Resources/codex over the npm wrapper. Override it with CODEX_BIN or --codex-bin when needed.

Back to top

Configuration

max_loop is a round cap, not a schedule. Configuration precedence:

  1. Current user request.
  2. Repository config: .codex/review-loop.config.md.
  3. User config: ${CODEX_HOME:-~/.codex}/review-loop.config.md.
  4. Default: 10.

Config files use simple key: value lines:

max_loop: 10
state_dir: tmp
continuous_mode: pair-sessions
session_runner: codex-exec
automation_cadence: require-explicit

Supported state_dir values:

  • auto: use repo .codex only if it already exists and is writable; otherwise use tmp.
  • repo: use repo .codex and create it if needed.
  • tmp: use ${TMPDIR:-/tmp}/codex-review-loop/<repo-id>.
  • absolute path: use that path.

Back to top

Prompt Overrides

Create review-loop.prompts.md in the resolved state directory or in the repository .codex/ directory:

# Review Prompt

Review only the payment and auth paths. Keep the P0/P1 severity gate, and prioritize permission bypass, account isolation, and data-loss bugs.

# Fix Prompt

Fix the selected issue with the smallest patch possible. Prefer existing helpers and add a focused regression test before broadening the suite.

Each section is optional. Missing sections fall back to the default prompts. Current user instructions for a run take priority over the file.

Back to top

Description Guidance

For the GitHub repository description, use a short product-style sentence:

Codex skill for P0/P1 repository review/fix loops with paired or batch codex exec runners.

For the skill frontmatter description, use trigger-oriented wording so Codex knows when to load it:

Use when the user asks Codex to review a repository for actionable P0/P1 issues, fix the selected issue or safe batch, add regression tests, commit the fix, and record loop state. Supports single-pass, paired, batch, max-round, prompt overrides, tmp/repo state, and explicit automations.

Back to top

License

MIT

Back to top

About

Codex P0/P1 repo review/fix loop skill / Codex P0/P1 仓库审查与修复循环 skill

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages