بنقرة واحدة
codex-review
Codex code review closeout: local dirty changes, PR branch vs main, parallel tests.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Codex code review closeout: local dirty changes, PR branch vs main, parallel tests.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Draft, preflight, apply, and inspect Agent Conveyor setup bundles for manager-worker operating cells through a conversational Codex setup flow.
Create one visible Codex app manager and one visible Codex app worker for the current project using the globally installed Agent Conveyor CLI.
Create one visible Codex app manager and multiple visible Codex app workers for the current project using Agent Conveyor.
Run the blocking Agent Conveyor Codex app connection smoke gate for a manager/worker pair or worker set before real work starts.
Wake stale Agent Conveyor Codex app manager or worker threads through native app thread tools and record delivery receipts.
Check Agent Conveyor manager/worker or worker-set status from the current project's per-project ledger.
| name | codex-review |
| description | Codex code review closeout: local dirty changes, PR branch vs main, parallel tests. |
Run Codex's built-in code review as a closeout check. This is code review (codex review), not Guardian auto_review approval routing.
Use when:
--full-access option instead of changing models.codex review just to get a nicer "clean" line, a second opinion, or clearer closeout wording.Dirty local work:
codex review --uncommitted
Use this only when the patch is actually unstaged/staged/untracked in the
current checkout. For committed, pushed, or PR work, review the branch against
its base instead; do not force --mode local / --uncommitted just because the
helper docs mention dirty work first. A clean --uncommitted review only proves
there is no local patch.
Branch/PR work:
git fetch origin
codex review --base origin/main
Do not pass an inline prompt with --base; current CLI rejects --base + [PROMPT] even though help text is ambiguous. If custom instructions are needed, run the plain base review first, then do a local/manual follow-up pass.
If an open PR exists, use its actual base:
base=$(gh pr view --json baseRefName --jq .baseRefName)
codex review --base "origin/$base"
Committed single change:
codex review --commit HEAD
Format first if formatting can change line locations. Then it is OK to run tests and review in parallel:
~/.codex/skills/codex-review/scripts/codex-review --parallel-tests "<focused test command>"
Tradeoff: tests may force code changes that stale the review. If tests or review lead to code edits, rerun the affected tests and rerun review until no accepted/actionable findings remain. Once that rerun exits cleanly, stop; do not spend another long review cycle on redundant confirmation.
Codex review is usually noisy. Default to a subagent filter when subagents are available. Ask it to run the review and return only:
Run inline only for tiny changes or when subagents are unavailable.
Bundled helper:
~/.codex/skills/codex-review/scripts/codex-review --help
The helper:
--uncommitted firstgh pr view worksorigin/main for non-main branches--mode auto or forced to --mode branch for committed/PR work; do not force --mode local after committing--output or CODEX_REVIEW_OUTPUT is set--dry-run and --parallel-tests--full-access for nested review runs that need localhost bind/listen testscodex-review clean: no accepted/actionable findings reported when the selected review command exits 0Recursion guard:
CODEX_REVIEW_HELPER_LEVEL=1 to the nested codex review process.78 with nested codex-review invocation blocked.CODEX_REVIEW_ALLOW_NESTED=1 only for intentional debugging dry runs; do not use it in normal closeout, GoalBuddy conveyor, or PR review flows.Include:
Do not run another Codex review solely to improve the final report wording. If the final helper run exited 0 and produced no accepted/actionable findings, report that exact run as clean.