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

推荐订阅源

月光博客
月光博客
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
博客园 - Franky
V
V2EX
Y
Y Combinator Blog
Google DeepMind News
Google DeepMind News
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Jina AI
Jina AI
博客园 - 叶小钗
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
A
About on SuperTechFans
M
MIT News - Artificial intelligence
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
D
Docker
博客园 - 【当耐特】
阮一峰的网络日志
阮一峰的网络日志

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
test: spell out doctor repair output · openclaw/openclaw@...
shakkernerd · 2026-05-12 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -112,7 +112,7 @@ describe("doctor plugin manifest legacy contract repair", () => {

112112
113113

expect(migrations).toHaveLength(1);

114114

expect(migrations[0]?.changeLines).toEqual([

115-

expect.stringContaining("moved speechProviders to contracts.speechProviders"),

115+

`- ${path.join(root, "openclaw.plugin.json")}: moved speechProviders to contracts.speechProviders`,

116116

]);

117117

});

118118
Original file line numberDiff line numberDiff line change

@@ -151,7 +151,14 @@ describe("maybeRepairSandboxRegistryFiles", () => {

151151

await maybeRepairSandboxRegistryFiles(mockPrompter);

152152
153153

expect(migrateLegacySandboxRegistryFiles).not.toHaveBeenCalled();

154-

expect(note).toHaveBeenCalledWith(expect.stringContaining("openclaw doctor --fix"), "Sandbox");

154+

expect(note).toHaveBeenCalledWith(

155+

[

156+

"Legacy sandbox registry files detected.",

157+

"- containers: /tmp/openclaw/sandbox/containers.json (2 entries)",

158+

"Run openclaw doctor --fix to migrate them to sharded registry files.",

159+

].join("\n"),

160+

"Sandbox",

161+

);

155162

});

156163
157164

it("migrates legacy registry files during doctor --fix", async () => {

@@ -182,7 +189,7 @@ describe("maybeRepairSandboxRegistryFiles", () => {

182189
183190

expect(migrateLegacySandboxRegistryFiles).toHaveBeenCalledTimes(1);

184191

expect(note).toHaveBeenCalledWith(

185-

expect.stringContaining("Migrated containers"),

192+

"- Migrated containers registry from /tmp/openclaw/sandbox/containers.json into 2 shards.",

186193

"Doctor changes",

187194

);

188195

});

Original file line numberDiff line numberDiff line change

@@ -182,8 +182,8 @@ describe("bundled plugin load path repair", () => {

182182

});

183183
184184

expect(warnings).toEqual([

185-

expect.stringContaining(`plugins.load.paths: bundled plugin path "${legacyPath}"`),

186-

expect.stringContaining('Run "openclaw doctor --fix"'),

185+

`- plugins.load.paths: bundled plugin path "${legacyPath}" still aliases feishu; OpenClaw loads the packaged bundled plugin from "${bundledPath}".`,

186+

'- Run "openclaw doctor --fix" to remove these redundant bundled plugin paths.',

187187

]);

188188

});

189189
Original file line numberDiff line numberDiff line change

@@ -65,7 +65,7 @@ describe("doctor config flow steps", () => {

6565

warnings: [],

6666

} satisfies DoctorConfigPreflightResult["snapshot"]);

6767
68-

expect(result.issueLines).toEqual([expect.stringContaining("- heartbeat:")]);

68+

expect(result.issueLines).toEqual(["- heartbeat: use agents.defaults.heartbeat"]);

6969

expect(result.changeLines).not.toStrictEqual([]);

7070

expect(result.state.fixHints).toContain(

7171

'Run "openclaw doctor --fix" to migrate legacy config keys.',