惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog
罗磊的独立博客
S
SegmentFault 最新的问题
D
Docker
博客园 - 司徒正美
雷峰网
雷峰网
V
Visual Studio Blog
云风的 BLOG
云风的 BLOG
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - Franky
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
The Blog of Author Tim Ferriss
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
MongoDB | Blog
MongoDB | Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
chore: update codex review fallback handling · openclaw/o...
steipete · 2026-05-17 · via Recent Commits to openclaw:main

@@ -19,9 +19,9 @@ Use when:

1919

- Read dependency docs/source/types when the finding depends on external behavior.

2020

- Reject unrealistic edge cases, speculative risks, broad rewrites, and fixes that over-complicate the codebase.

2121

- Prefer small fixes at the right ownership boundary; no refactor unless it clearly improves the bug class.

22-

- Keep going until Codex review returns no accepted/actionable findings.

23-

- If a review-triggered fix changes code, rerun focused tests and rerun Codex review.

24-

- Never switch or override the review model. If the review hits model capacity, retry the same command a few times with the same model. The helper runs nested review in yolo/full-access mode by default; use `--no-yolo` only when intentionally testing sandbox behavior.

22+

- Keep going until the selected review path returns no accepted/actionable findings.

23+

- If a review-triggered fix changes code, rerun focused tests and rerun the review helper.

24+

- Default to Codex review. If Codex is unavailable or exits with an error, the helper may fall back to `claude -p`; `pi -p` and `opencode run` are explicit reviewer/fallback options. The helper runs nested Codex review in yolo/full-access mode by default; use `--no-yolo` only when intentionally testing sandbox behavior.

2525

- Stop as soon as the review command/helper exits 0 with no accepted/actionable findings. Do not run an extra direct `codex review` just to get a nicer "clean" line, a second opinion, or clearer closeout wording.

2626

- Treat the helper's successful exit plus absence of actionable findings as the clean review result, even if the underlying Codex CLI output is terse.

2727

- If rejecting a finding as intentional/not worth fixing, add a brief inline code comment only when it explains a real invariant or ownership decision that future reviewers should know.

@@ -66,7 +66,7 @@ codex review --commit HEAD

6666

or with the helper:

67676868

```bash

69-

/Users/steipete/Projects/agent-scripts/skills/codex-review/scripts/codex-review --mode commit --commit HEAD

69+

.agents/skills/codex-review/scripts/codex-review --mode commit --commit HEAD

7070

```

71717272

Use commit review for already-landed or already-pushed work on `main`. Reviewing

@@ -79,7 +79,7 @@ with `--base`.

7979

Format first if formatting can change line locations. Then it is OK to run tests and review in parallel:

80808181

```bash

82-

scripts/codex-review --parallel-tests "<focused test command>"

82+

.agents/skills/codex-review/scripts/codex-review --parallel-tests "<focused test command>"

8383

```

84848585

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.

@@ -98,13 +98,7 @@ Run inline only for tiny changes or when subagents are unavailable.

9898

Bundled helper:

9999100100

```bash

101-

~/.codex/skills/codex-review/scripts/codex-review --help

102-

```

103-104-

If installed from `agent-scripts`, path is:

105-106-

```bash

107-

/Users/steipete/Projects/agent-scripts/skills/codex-review/scripts/codex-review --help

101+

.agents/skills/codex-review/scripts/codex-review --help

108102

```

109103110104

The helper:

@@ -113,6 +107,9 @@ The helper:

113107

- otherwise uses `origin/main` for non-main branches

114108

- use `--mode commit --commit <ref>` for already-committed work, especially clean `main` after landing

115109

- should be left in `--mode auto` or forced to `--mode branch` for PR/branch work; do not force `--mode local` after committing

110+

- supports `--reviewer codex|claude|pi|opencode|auto`; `auto` runs Codex first

111+

- supports `--fallback-reviewer claude|pi|opencode|none`; default is `claude`

112+

- falls back only when Codex is unavailable or exits nonzero, not when Codex reports findings

116113

- writes only to stdout unless `--output` or `CODEX_REVIEW_OUTPUT` is set

117114

- supports `--dry-run`, `--parallel-tests`, and commit refs

118115

- runs nested review with `--dangerously-bypass-approvals-and-sandbox` by default