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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Last Week in AI
Last Week in AI
大猫的无限游戏
大猫的无限游戏
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
爱范儿
爱范儿
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
博客园_首页
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
V
V2EX
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队

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
fix(e2e): align codex live turn timeouts · openclaw/openc...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

@@ -2616,6 +2616,12 @@ grep -Fxq preserved "$TMPDIR/caller-fd"

26162616

expect(assertions).toContain("OPENCLAW_CODEX_NPM_PLUGIN_ASSERT_MAX_TRANSCRIPT_FILES");

26172617

expect(assertions).toContain("OPENCLAW_CODEX_NPM_PLUGIN_ASSERT_MAX_TRANSCRIPT_WALK_ENTRIES");

26182618

expect(assertions).toContain("OPENCLAW_CODEX_NPM_PLUGIN_ASSERT_MAX_TRANSCRIPT_SCAN_BYTES");

2619+

expect(assertions).toContain("const AGENT_TURN_TIMEOUT_SECONDS = readPositiveIntEnv(");

2620+

expect(assertions).toContain('"OPENCLAW_CODEX_NPM_PLUGIN_AGENT_TIMEOUT_SECONDS"');

2621+

expect(assertions).toContain("requestTimeoutMs: AGENT_TURN_TIMEOUT_SECONDS * 1000");

2622+

expect(assertions).toContain("timeoutSeconds: AGENT_TURN_TIMEOUT_SECONDS");

2623+

expect(assertions).not.toContain("requestTimeoutMs: 420_000");

2624+

expect(assertions).not.toContain("timeoutSeconds: 420");

26192625

expect(assertions).toContain("readTextFileBounded");

26202626

expect(assertions).toContain("readTextFileTail");

26212627

expect(assertions).toContain(

@@ -2628,6 +2634,29 @@ grep -Fxq preserved "$TMPDIR/caller-fd"

26282634

expect(runner).not.toContain("cat /tmp/openclaw-codex-plugin-pack.log");

26292635

expect(runner).toContain("tail -n 120 /tmp/openclaw-codex-agent-after-uninstall.err");

26302636

expect(runner).not.toContain("cat /tmp/openclaw-codex-agent-after-uninstall.err");

2637+

const profileSourceIndex = runner.indexOf('source "$PROFILE_FILE"');

2638+

const agentTimeoutEnvIndex = runner.indexOf(

2639+

"docker_e2e_read_positive_int_env OPENCLAW_CODEX_NPM_PLUGIN_AGENT_TIMEOUT_SECONDS 420",

2640+

);

2641+

const dockerBuildIndex = runner.indexOf("docker_e2e_build_or_reuse");

2642+

expect(profileSourceIndex).toBeGreaterThanOrEqual(0);

2643+

expect(agentTimeoutEnvIndex).toBeGreaterThan(profileSourceIndex);

2644+

expect(dockerBuildIndex).toBeGreaterThan(agentTimeoutEnvIndex);

2645+

expect(runner).toContain(

2646+

"docker_e2e_read_positive_int_env OPENCLAW_CODEX_NPM_PLUGIN_AGENT_TIMEOUT_SECONDS 420",

2647+

);

2648+

expect(runner).toContain(

2649+

'COMMAND_TIMEOUT="${OPENCLAW_E2E_COMMAND_TIMEOUT:-$((AGENT_TURN_TIMEOUT_SECONDS + 60))s}"',

2650+

);

2651+

expect(runner).toContain(

2652+

'-e "OPENCLAW_CODEX_NPM_PLUGIN_AGENT_TIMEOUT_SECONDS=$AGENT_TURN_TIMEOUT_SECONDS"',

2653+

);

2654+

expect(runner).toContain('-e "OPENCLAW_E2E_COMMAND_TIMEOUT=$COMMAND_TIMEOUT"');

2655+

expect(runner).toContain(

2656+

'AGENT_TURN_TIMEOUT_SECONDS="${OPENCLAW_CODEX_NPM_PLUGIN_AGENT_TIMEOUT_SECONDS:-420}"',

2657+

);

2658+

expect(runner).toContain('--timeout "$AGENT_TURN_TIMEOUT_SECONDS"');

2659+

expect(runner).not.toContain("--timeout 420");

26312660

});

2632266126332662

it.each([

@@ -2637,6 +2666,12 @@ grep -Fxq preserved "$TMPDIR/caller-fd"

26372666

"OPENCLAW_CODEX_NPM_PLUGIN_ASSERT_MAX_TEXT_FILE_BYTES",

26382667

"64kb",

26392668

],

2669+

[

2670+

"Codex npm plugin live agent timeout",

2671+

CODEX_NPM_PLUGIN_LIVE_DOCKER_E2E_PATH,

2672+

"OPENCLAW_CODEX_NPM_PLUGIN_AGENT_TIMEOUT_SECONDS",

2673+

"420s",

2674+

],

26402675

[

26412676

"npm onboard channel-agent",

26422677

NPM_ONBOARD_CHANNEL_AGENT_DOCKER_E2E_PATH,

@@ -2683,6 +2718,7 @@ grep -Fxq preserved "$TMPDIR/caller-fd"

26832718

["OPENCLAW_CODEX_NPM_PLUGIN_ASSERT_MAX_TRANSCRIPT_FILES", "64"],

26842719

["OPENCLAW_CODEX_NPM_PLUGIN_ASSERT_MAX_TRANSCRIPT_WALK_ENTRIES", "4096"],

26852720

["OPENCLAW_CODEX_NPM_PLUGIN_ASSERT_MAX_TRANSCRIPT_SCAN_BYTES", "2097152"],

2721+

["OPENCLAW_CODEX_NPM_PLUGIN_AGENT_TIMEOUT_SECONDS", "420"],

26862722

],

26872723

],

26882724

[