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

推荐订阅源

罗磊的独立博客
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
A
About on SuperTechFans
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
D
DataBreaches.Net
B
Blog
博客园 - 【当耐特】
爱范儿
爱范儿
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
WordPress大学
WordPress大学
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Microsoft Azure Blog
Microsoft Azure Blog
雷峰网
雷峰网
量子位
G
Google Developers Blog

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(plugins): anchor runtime dependency installs · opencl...
steipete · 2026-04-26 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -117,6 +117,9 @@ Docs: https://docs.openclaw.ai

117117

- Plugins/startup: remove ownerless bundled runtime-dependency install locks

118118

after a short grace window and include lock owner details when startup times

119119

out waiting for a plugin runtime-deps lock.

120+

- Plugins/install: anchor bundled runtime-dependency npm installs with an

121+

OpenClaw-owned package manifest so Linux updates cannot accidentally write to

122+

a parent `$HOME/node_modules` tree. Fixes #71730.

120123

- Live tests/voice: accept common STT variants for OpenClaw and ElevenLabs

121124

brand names so provider smoke tests fail on real regressions rather than

122125

equivalent transcripts.

Original file line numberDiff line numberDiff line change

@@ -222,6 +222,44 @@ describe("installBundledRuntimeDeps", () => {

222222

);

223223

});

224224
225+

it("anchors non-isolated external install roots with a package manifest", () => {

226+

const parentRoot = makeTempDir();

227+

const installRoot = path.join(parentRoot, ".openclaw", "plugin-runtime-deps", "openclaw-test");

228+

fs.mkdirSync(path.join(parentRoot, "node_modules", "@grammyjs"), { recursive: true });

229+

spawnSyncMock.mockImplementation((_command, _args, options) => {

230+

const cwd = String(options?.cwd ?? "");

231+

expect(cwd).toBe(installRoot);

232+

expect(JSON.parse(fs.readFileSync(path.join(cwd, "package.json"), "utf8"))).toEqual({

233+

name: "openclaw-runtime-deps-install",

234+

private: true,

235+

});

236+

return {

237+

pid: 123,

238+

output: [],

239+

stdout: "",

240+

stderr: "",

241+

signal: null,

242+

status: 0,

243+

};

244+

});

245+
246+

installBundledRuntimeDeps({

247+

installRoot,

248+

missingSpecs: ["@grammyjs/runner@^2.0.3"],

249+

env: {

250+

HOME: parentRoot,

251+

},

252+

});

253+
254+

expect(spawnSyncMock).toHaveBeenCalledWith(

255+

expect.any(String),

256+

expect.any(Array),

257+

expect.objectContaining({

258+

cwd: installRoot,

259+

}),

260+

);

261+

});

262+
225263

it("uses an isolated execution root and copies node_modules back when requested", () => {

226264

const installRoot = makeTempDir();

227265

const installExecutionRoot = makeTempDir();

Original file line numberDiff line numberDiff line change

@@ -1154,14 +1154,17 @@ function shouldCleanBundledRuntimeDepsInstallExecutionRoot(params: {

11541154

return installExecutionRoot.startsWith(`${installRoot}${path.sep}`);

11551155

}

11561156
1157-

function writeBundledRuntimeDepsInstallManifest(installExecutionRoot: string): void {

1157+

function ensureNpmInstallExecutionManifest(installExecutionRoot: string): void {

1158+

const manifestPath = path.join(installExecutionRoot, "package.json");

1159+

if (fs.existsSync(manifestPath)) {

1160+

return;

1161+

}

11581162

fs.writeFileSync(

1159-

path.join(installExecutionRoot, "package.json"),

1163+

manifestPath,

11601164

`${JSON.stringify({ name: "openclaw-runtime-deps-install", private: true }, null, 2)}\n`,

11611165

"utf8",

11621166

);

11631167

}

1164-
11651168

export function installBundledRuntimeDeps(params: {

11661169

installRoot: string;

11671170

installExecutionRoot?: string;

@@ -1184,7 +1187,7 @@ export function installBundledRuntimeDeps(params: {

11841187

// doctor repair path installs directly in the external stage dir; without a

11851188

// manifest, npm can honor a user's global prefix config and write under

11861189

// $HOME/node_modules instead of our managed stage.

1187-

writeBundledRuntimeDepsInstallManifest(installExecutionRoot);

1190+

ensureNpmInstallExecutionManifest(installExecutionRoot);

11881191

const installEnv = createBundledRuntimeDepsInstallEnv(params.env, {

11891192

cacheDir: path.join(installExecutionRoot, ".openclaw-npm-cache"),

11901193

});

Original file line numberDiff line numberDiff line change

@@ -176,6 +176,7 @@ describe("resolveInstalledPluginProviderContributionIds", () => {

176176

resolveInstalledPluginProviderContributionIds({

177177

candidates: [candidate],

178178

env: hermeticEnv(),

179+

preferPersisted: false,

179180

}),

180181

).toEqual(["demo", "demo-alias"]);

181182

});

@@ -197,6 +198,7 @@ describe("resolveInstalledPluginProviderContributionIds", () => {

197198

},

198199

},

199200

env: hermeticEnv(),

201+

preferPersisted: false,

200202

};

201203
202204

expect(resolveInstalledPluginProviderContributionIds(params)).toEqual([]);