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

推荐订阅源

The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
The Cloudflare Blog
G
Google Developers Blog
博客园_首页
Martin Fowler
Martin Fowler
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
D
Docker
C
Check Point Blog
T
Tailwind CSS Blog
博客园 - 司徒正美
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
Microsoft Security Blog
Microsoft Security Blog
V
V2EX
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
GbyAI
GbyAI

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(doctor): preserve third-party plugin dependencies · o...
vincentkoc · 2026-05-03 · via Recent Commits to openclaw:main

@@ -29,18 +29,33 @@ describe("cleanupLegacyPluginDependencyState", () => {

2929

"demo",

3030

"node_modules",

3131

);

32+

const legacyExtensionStamp = path.join(

33+

packageRoot,

34+

"dist",

35+

"extensions",

36+

"demo",

37+

".openclaw-runtime-deps-stamp.json",

38+

);

3239

const legacyManifest = path.join(

3340

packageRoot,

3441

"extensions",

3542

"demo",

3643

".openclaw-runtime-deps.json",

3744

);

45+

const thirdPartyNodeModules = path.join(

46+

stateDir,

47+

"extensions",

48+

"lossless-claw",

49+

"node_modules",

50+

);

38513952

await fs.mkdir(legacyRuntimeRoot, { recursive: true });

4053

await fs.mkdir(legacyLocalRoot, { recursive: true });

4154

await fs.mkdir(legacyExtensionNodeModules, { recursive: true });

55+

await fs.writeFile(legacyExtensionStamp, "{}");

4256

await fs.mkdir(path.dirname(legacyManifest), { recursive: true });

4357

await fs.writeFile(legacyManifest, "{}");

58+

await fs.mkdir(thirdPartyNodeModules, { recursive: true });

4459

await fs.mkdir(explicitStageDir, { recursive: true });

4560

await fs.mkdir(path.join(stateDirectory, "plugin-runtime-deps"), { recursive: true });

4661

@@ -55,11 +70,13 @@ describe("cleanupLegacyPluginDependencyState", () => {

5570

legacyRuntimeRoot,

5671

legacyLocalRoot,

5772

legacyExtensionNodeModules,

73+

legacyExtensionStamp,

5874

legacyManifest,

5975

explicitStageDir,

6076

path.join(stateDirectory, "plugin-runtime-deps"),

6177

]),

6278

);

79+

expect(targets).not.toContain(thirdPartyNodeModules);

63806481

const result = await cleanupLegacyPluginDependencyState({ env, packageRoot });

6582

@@ -68,7 +85,9 @@ describe("cleanupLegacyPluginDependencyState", () => {

6885

await expect(fs.stat(legacyRuntimeRoot)).rejects.toThrow();

6986

await expect(fs.stat(legacyLocalRoot)).rejects.toThrow();

7087

await expect(fs.stat(legacyExtensionNodeModules)).rejects.toThrow();

88+

await expect(fs.stat(legacyExtensionStamp)).rejects.toThrow();

7189

await expect(fs.stat(legacyManifest)).rejects.toThrow();

90+

await expect(fs.stat(thirdPartyNodeModules)).resolves.toBeDefined();

7291

await expect(fs.stat(explicitStageDir)).rejects.toThrow();

7392

await expect(fs.stat(path.join(stateDirectory, "plugin-runtime-deps"))).rejects.toThrow();

7493

});