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

推荐订阅源

云风的 BLOG
云风的 BLOG
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
F
Fortinet All Blogs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
爱范儿
爱范儿
美团技术团队
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
博客园_首页
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
V
Visual Studio Blog
Jina AI
Jina AI
博客园 - Franky
量子位
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
aimingoo的专栏
aimingoo的专栏
M
MIT News - Artificial intelligence

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(codex): stop forcing code-mode-only turns (#83561) · ...
steipete · 2026-05-18 · via Recent Commits to openclaw:main

@@ -757,7 +757,7 @@ describe("runCodexAppServerAttempt", () => {

757757

},

758758

},

759759

"features.code_mode": true,

760-

"features.code_mode_only": true,

760+

"features.code_mode_only": false,

761761

});

762762

const binding = await readCodexAppServerBinding(sessionFile);

763763

expect(binding?.mcpServersFingerprint).toBe("mcp-v1");

@@ -7377,7 +7377,7 @@ describe("runCodexAppServerAttempt", () => {

73777377

const expectedConfig = {

73787378

...config,

73797379

"features.code_mode": true,

7380-

"features.code_mode_only": true,

7380+

"features.code_mode_only": false,

73817381

};

7382738273837383

await startOrResumeThread({

@@ -7445,7 +7445,7 @@ describe("runCodexAppServerAttempt", () => {

74457445

expect(requestCalls[0]?.[1].config).toEqual({

74467446

"features.hooks": true,

74477447

"features.code_mode": true,

7448-

"features.code_mode_only": true,

7448+

"features.code_mode_only": false,

74497449

hooks: { PreToolUse: [] },

74507450

...createPluginAppConfigPatch(),

74517451

});

@@ -7523,14 +7523,14 @@ describe("runCodexAppServerAttempt", () => {

75237523

expect(requestCalls[0]?.[1].config).toMatchObject({

75247524

"features.hooks": true,

75257525

"features.code_mode": true,

7526-

"features.code_mode_only": true,

7526+

"features.code_mode_only": false,

75277527

"hooks.PreToolUse": finalConfigPatch["hooks.PreToolUse"],

75287528

...createPluginAppConfigPatch(),

75297529

});

75307530

expect(requestCalls[1]?.[1].config).toMatchObject({

75317531

"features.hooks": true,

75327532

"features.code_mode": true,

7533-

"features.code_mode_only": true,

7533+

"features.code_mode_only": false,

75347534

"hooks.PreToolUse": finalConfigPatch["hooks.PreToolUse"],

75357535

});

75367536

});

@@ -7591,13 +7591,13 @@ describe("runCodexAppServerAttempt", () => {

75917591

expect(requestCalls[0]?.[1].config).toEqual({

75927592

"features.hooks": true,

75937593

"features.code_mode": true,

7594-

"features.code_mode_only": true,

7594+

"features.code_mode_only": false,

75957595

...createPluginAppConfigPatch(),

75967596

});

75977597

expect(requestCalls[1]?.[1].config).toEqual({

75987598

"features.hooks": true,

75997599

"features.code_mode": true,

7600-

"features.code_mode_only": true,

7600+

"features.code_mode_only": false,

76017601

});

76027602

});

76037603

@@ -7655,7 +7655,7 @@ describe("runCodexAppServerAttempt", () => {

76557655

expect(requestCalls.map(([method]) => method)).toEqual(["thread/start"]);

76567656

expect(requestCalls[0]?.[1].config).toEqual({

76577657

"features.code_mode": true,

7658-

"features.code_mode_only": true,

7658+

"features.code_mode_only": false,

76597659

apps: {

76607660

_default: {

76617661

enabled: false,

@@ -7709,7 +7709,7 @@ describe("runCodexAppServerAttempt", () => {

77097709

expect(requestCalls.map(([method]) => method)).toEqual(["thread/resume"]);

77107710

expect(requestCalls[0]?.[1].config).toEqual({

77117711

"features.code_mode": true,

7712-

"features.code_mode_only": true,

7712+

"features.code_mode_only": false,

77137713

});

77147714

const binding = await readCodexAppServerBinding(sessionFile);

77157715

expect(binding?.threadId).toBe("thread-existing");

@@ -7764,7 +7764,7 @@ describe("runCodexAppServerAttempt", () => {

77647764

expect(requestCalls[0]?.[1].config).toEqual({

77657765

...createPluginAppConfigPatch(),

77667766

"features.code_mode": true,

7767-

"features.code_mode_only": true,

7767+

"features.code_mode_only": false,

77687768

});

77697769

const binding = await readCodexAppServerBinding(sessionFile);

77707770

expect(binding?.threadId).toBe("thread-recovered");

@@ -7825,7 +7825,7 @@ describe("runCodexAppServerAttempt", () => {

78257825

expect(requestCalls.map(([method]) => method)).toEqual(["thread/resume"]);

78267826

expect(requestCalls[0]?.[1].config).toEqual({

78277827

"features.code_mode": true,

7828-

"features.code_mode_only": true,

7828+

"features.code_mode_only": false,

78297829

});

78307830

});

78317831

@@ -7876,7 +7876,7 @@ describe("runCodexAppServerAttempt", () => {

78767876

expect(requestCalls[0]?.[1].config).toEqual({

78777877

...createTwoPluginAppConfigPatch(),

78787878

"features.code_mode": true,

7879-

"features.code_mode_only": true,

7879+

"features.code_mode_only": false,

78807880

});

78817881

const binding = await readCodexAppServerBinding(sessionFile);

78827882

expect(binding?.threadId).toBe("thread-recovered");

@@ -7936,7 +7936,7 @@ describe("runCodexAppServerAttempt", () => {

79367936

expect(requestCalls[0]?.[1].config).toEqual({

79377937

...createTwoCalendarAppConfigPatch(),

79387938

"features.code_mode": true,

7939-

"features.code_mode_only": true,

7939+

"features.code_mode_only": false,

79407940

});

79417941

const binding = await readCodexAppServerBinding(sessionFile);

79427942

expect(binding?.threadId).toBe("thread-recovered");

@@ -7983,7 +7983,7 @@ describe("runCodexAppServerAttempt", () => {

79837983

expect(requestCalls[0]?.[1].config).toEqual({

79847984

...createPluginAppConfigPatch(),

79857985

"features.code_mode": true,

7986-

"features.code_mode_only": true,

7986+

"features.code_mode_only": false,

79877987

});

79887988

const binding = await readCodexAppServerBinding(sessionFile);

79897989

expect(binding?.threadId).toBe("thread-plugins");

@@ -8057,7 +8057,7 @@ describe("runCodexAppServerAttempt", () => {

80578057

const resumeConfig = resumeRequestParams?.config as Record<string, unknown> | undefined;

80588058

expect(resumeConfig?.["features.hooks"]).toBe(true);

80598059

expect(resumeConfig?.["features.code_mode"]).toBe(true);

8060-

expect(resumeConfig?.["features.code_mode_only"]).toBe(true);

8060+

expect(resumeConfig?.["features.code_mode_only"]).toBe(false);

80618061

expect(resumeRequestParams?.developerInstructions).toContain(CODEX_GPT5_BEHAVIOR_CONTRACT);

80628062

const turnRequest = requests.find((request) => request.method === "turn/start");

80638063

const turnRequestParams = turnRequest?.params as Record<string, unknown> | undefined;

@@ -8246,7 +8246,7 @@ describe("runCodexAppServerAttempt", () => {

82468246

approvalsReviewer: "guardian_subagent",

82478247

config: {

82488248

"features.code_mode": true,

8249-

"features.code_mode_only": true,

8249+

"features.code_mode_only": false,

82508250

},

82518251

sandbox: "danger-full-access",

82528252

serviceTier: "flex",