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

推荐订阅源

量子位
博客园_首页
罗磊的独立博客
云风的 BLOG
云风的 BLOG
J
Java Code Geeks
Last Week in AI
Last Week in AI
D
DataBreaches.Net
Jina AI
Jina AI
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
V
V2EX
D
Docker
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
H
Help Net Security
T
The Blog of Author Tim Ferriss

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
ci: update codex cli live smoke · openclaw/openclaw@c3c2c31
steipete · 2026-05-03 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -14,7 +14,7 @@ export function buildOpenAICodexCliBackend(): CliBackendPlugin {

1414

defaultImageProbe: true,

1515

defaultMcpProbe: true,

1616

docker: {

17-

npmPackage: "@openai/codex@0.124.0",

17+

npmPackage: "@openai/codex@0.128.0",

1818

binaryName: "codex",

1919

},

2020

},

Original file line numberDiff line numberDiff line change

@@ -399,6 +399,39 @@ cd "$tmp_dir"

399399

if [ "${OPENCLAW_LIVE_CLI_BACKEND_USE_CI_SAFE_CODEX_CONFIG:-0}" = "1" ]; then

400400

node --import tsx "$trusted_scripts_dir/prepare-codex-ci-config.ts" "$HOME/.codex/config.toml" "$tmp_dir"

401401

fi

402+

if [ "$provider" = "codex-cli" ] && [ "${OPENCLAW_LIVE_CLI_BACKEND_AUTH:-auto}" = "api-key" ]; then

403+

codex_probe_model="${OPENCLAW_LIVE_CLI_BACKEND_MODEL#*/}"

404+

codex_probe_token="OPENCLAW-CODEX-DIRECT-PROBE"

405+

codex_probe_stdout="$tmp_dir/codex-direct-probe.stdout"

406+

codex_probe_stderr="$tmp_dir/codex-direct-probe.stderr"

407+

if ! timeout --foreground --kill-after=10s 180s \

408+

"${OPENCLAW_LIVE_CLI_BACKEND_COMMAND:-codex}" \

409+

exec \

410+

--json \

411+

--color \

412+

never \

413+

--sandbox \

414+

danger-full-access \

415+

-c \

416+

'service_tier="fast"' \

417+

--skip-git-repo-check \

418+

--model \

419+

"$codex_probe_model" \

420+

"Reply exactly: $codex_probe_token" \

421+

>"$codex_probe_stdout" 2>"$codex_probe_stderr" </dev/null; then

422+

echo "ERROR: direct Codex CLI probe failed before OpenClaw gateway smoke." >&2

423+

sed -n '1,120p' "$codex_probe_stdout" >&2 || true

424+

sed -n '1,120p' "$codex_probe_stderr" >&2 || true

425+

exit 1

426+

fi

427+

if ! grep -q "$codex_probe_token" "$codex_probe_stdout"; then

428+

echo "ERROR: direct Codex CLI probe did not return expected token." >&2

429+

sed -n '1,120p' "$codex_probe_stdout" >&2 || true

430+

sed -n '1,120p' "$codex_probe_stderr" >&2 || true

431+

exit 1

432+

fi

433+

echo "==> Direct Codex CLI probe ok"

434+

fi

402435

pnpm test:live src/gateway/gateway-cli-backend.live.test.ts

403436

EOF

404437
Original file line numberDiff line numberDiff line change

@@ -64,7 +64,7 @@ function createBackendEntry(params: {

6464

params.id === "claude-cli"

6565

? "@anthropic-ai/claude-code"

6666

: params.id === "codex-cli"

67-

? "@openai/codex@0.125.0"

67+

? "@openai/codex@0.128.0"

6868

: params.id === "google-gemini-cli"

6969

? "@google/gemini-cli"

7070

: undefined,

@@ -490,7 +490,7 @@ describe("resolveCliBackendLiveTest", () => {

490490

defaultModelRef: "codex-cli/gpt-5.5",

491491

defaultImageProbe: true,

492492

defaultMcpProbe: true,

493-

dockerNpmPackage: "@openai/codex@0.125.0",

493+

dockerNpmPackage: "@openai/codex@0.128.0",

494494

dockerBinaryName: "codex",

495495

});

496496

});

Original file line numberDiff line numberDiff line change

@@ -90,6 +90,8 @@ describe("docker build helper", () => {

9090

expect(liveCliBackend).toContain(

9191

'OPENCLAW_LIVE_DOCKER_REPO_ROOT="$ROOT_DIR" "$TRUSTED_HARNESS_DIR/scripts/test-live-build-docker.sh"',

9292

);

93+

expect(liveCliBackend).toContain("direct Codex CLI probe failed before OpenClaw gateway smoke");

94+

expect(liveCliBackend).toContain("==> Direct Codex CLI probe ok");

9395

expect(liveCliBackend).not.toContain(

9496

'echo "==> Reuse live-test image: $LIVE_IMAGE_NAME (OPENCLAW_SKIP_DOCKER_BUILD=1)"',

9597

);