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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
C
Check Point Blog
雷峰网
雷峰网
小众软件
小众软件
GbyAI
GbyAI
美团技术团队
P
Proofpoint News Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
Apple Machine Learning Research
Apple Machine Learning Research
Y
Y Combinator Blog
Jina AI
Jina AI
爱范儿
爱范儿
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog
I
InfoQ
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美

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): keep managed npm mutations in legacy peer m...
vincentkoc · 2026-05-06 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -62,6 +62,7 @@ Docs: https://docs.openclaw.ai

6262

- Plugins/update: move ClawHub-preferred externalized plugin installs back to ClawHub after an earlier npm fallback once the ClawHub package becomes available. Thanks @vincentkoc.

6363

- Plugins/update: clean stale bundled load paths for already-externalized pinned npm and ClawHub plugin installs, so release-channel sync does not leave removed bundled paths ahead of the installed external package. Thanks @vincentkoc.

6464

- Plugins/update: repair stale managed npm-root `openclaw` peer packages before plugin installs, so beta-channel official plugin updates are not downgraded by old core package-lock state. Thanks @vincentkoc.

65+

- Plugins/install: run managed npm-root install, rollback, repair, and uninstall mutations with legacy peer resolution so removing one plugin cannot rehydrate a stale registry `openclaw` package into the shared root. Thanks @vincentkoc.

6566

- Plugins/install: reassert managed npm plugin `openclaw` peer links after shared-root npm installs, updates, and uninstalls, so mutating one plugin does not leave previously installed SDK-using plugins unable to resolve `openclaw/plugin-sdk/*`.

6667

- Plugins/update: make package upgrades swap pnpm/npm-prefix installs cleanly, keep legacy plugin install runtime chunks working, and on the beta channel fall back default-line npm plugins to default/latest when plugin beta releases are missing or fail install validation. Thanks @vincentkoc and @joshavant.

6768

- Plugins/active-memory: skip session-store channel entries that contain `:` when resolving the recall subagent's channel, so QQ c2c agent IDs (e.g. `c2c:10D4F7C2…`) and other scoped conversation IDs do not reach bundled-plugin `dirName` validation and crash the recall run. The same guard already applied to explicit `channelId` params (#76704); this extends it to store-derived channels. (#77396) Thanks @hclsys.

Original file line numberDiff line numberDiff line change

@@ -271,6 +271,7 @@ describe("managed npm root", () => {

271271

"npm",

272272

"uninstall",

273273

"--loglevel=error",

274+

"--legacy-peer-deps",

274275

"--ignore-scripts",

275276

"--no-audit",

276277

"--no-fund",

@@ -280,6 +281,9 @@ describe("managed npm root", () => {

280281

],

281282

expect.objectContaining({

282283

cwd: npmRoot,

284+

env: expect.objectContaining({

285+

npm_config_legacy_peer_deps: "true",

286+

}),

283287

}),

284288

);

285289
Original file line numberDiff line numberDiff line change

@@ -107,6 +107,7 @@ export async function repairManagedNpmRootOpenClawPeer(params: {

107107

"npm",

108108

"uninstall",

109109

"--loglevel=error",

110+

"--legacy-peer-deps",

110111

"--ignore-scripts",

111112

"--no-audit",

112113

"--no-fund",

@@ -118,6 +119,7 @@ export async function repairManagedNpmRootOpenClawPeer(params: {

118119

"npm",

119120

"prune",

120121

"--loglevel=error",

122+

"--legacy-peer-deps",

121123

"--ignore-scripts",

122124

"--no-audit",

123125

"--no-fund",

@@ -128,7 +130,11 @@ export async function repairManagedNpmRootOpenClawPeer(params: {

128130

const result = await command(npmArgs, {

129131

cwd: params.npmRoot,

130132

timeoutMs: Math.max(params.timeoutMs ?? 300_000, 300_000),

131-

env: createSafeNpmInstallEnv(process.env, { packageLock: true, quiet: true }),

133+

env: createSafeNpmInstallEnv(process.env, {

134+

legacyPeerDeps: true,

135+

packageLock: true,

136+

quiet: true,

137+

}),

132138

});

133139

if (result.code !== 0) {

134140

params.logger?.warn?.(

Original file line numberDiff line numberDiff line change

@@ -7,6 +7,7 @@ describe("safe npm install helpers", () => {

77

createSafeNpmInstallArgs({

88

omitDev: true,

99

ignoreWorkspaces: true,

10+

legacyPeerDeps: true,

1011

loglevel: "error",

1112

noAudit: true,

1213

noFund: true,

@@ -15,6 +16,7 @@ describe("safe npm install helpers", () => {

1516

"install",

1617

"--omit=dev",

1718

"--loglevel=error",

19+

"--legacy-peer-deps",

1820

"--ignore-scripts",

1921

"--workspaces=false",

2022

"--no-audit",

Original file line numberDiff line numberDiff line change

@@ -10,6 +10,7 @@ type SafeNpmInstallEnvOptions = NpmProjectInstallEnvOptions & {

1010
1111

type SafeNpmInstallArgsOptions = {

1212

ignoreWorkspaces?: boolean;

13+

legacyPeerDeps?: boolean;

1314

loglevel?: "error" | "silent";

1415

noAudit?: boolean;

1516

noFund?: boolean;

@@ -48,6 +49,7 @@ export function createSafeNpmInstallArgs(options: SafeNpmInstallArgsOptions = {}

4849

"install",

4950

...(options.omitDev ? ["--omit=dev"] : []),

5051

...(options.loglevel ? [`--loglevel=${options.loglevel}`] : []),

52+

...(options.legacyPeerDeps ? ["--legacy-peer-deps"] : []),

5153

"--ignore-scripts",

5254

...(options.ignoreWorkspaces ? ["--workspaces=false"] : []),

5355

...(options.noAudit ? ["--no-audit"] : []),

Original file line numberDiff line numberDiff line change

@@ -64,6 +64,7 @@ function expectNpmInstallIntoRoot(params: { calls: unknown[][]; npmRoot: string

6464

"install",

6565

"--omit=dev",

6666

"--loglevel=error",

67+

"--legacy-peer-deps",

6768

"--ignore-scripts",

6869

"--no-audit",

6970

"--no-fund",

@@ -922,6 +923,9 @@ describe("installPluginFromNpmSpec", () => {

922923

};

923924

}

924925

if (argv[0] === "npm" && argv[1] === "uninstall") {

926+

if (!argv.includes("--legacy-peer-deps")) {

927+

fs.mkdirSync(path.join(npmRoot, "node_modules", "openclaw"), { recursive: true });

928+

}

925929

return successfulSpawn("");

926930

}

927931

throw new Error(`unexpected command: ${argv.join(" ")}`);

@@ -945,6 +949,9 @@ describe("installPluginFromNpmSpec", () => {

945949

dependencies: {},

946950

});

947951

expect(fs.lstatSync(peerLink).isSymbolicLink()).toBe(true);

952+

await expect(

953+

fs.promises.access(path.join(npmRoot, "node_modules", "openclaw")),

954+

).rejects.toThrow();

948955

});

949956
950957

it("rolls back installed npm package debris when security scan blocks the plugin", async () => {

Original file line numberDiff line numberDiff line change

@@ -323,6 +323,7 @@ async function rollbackManagedNpmPluginInstall(params: {

323323

"npm",

324324

"uninstall",

325325

"--loglevel=error",

326+

"--legacy-peer-deps",

326327

"--ignore-scripts",

327328

"--no-audit",

328329

"--no-fund",

@@ -333,7 +334,11 @@ async function rollbackManagedNpmPluginInstall(params: {

333334

{

334335

cwd: params.npmRoot,

335336

timeoutMs: Math.max(params.timeoutMs, 300_000),

336-

env: createSafeNpmInstallEnv(process.env, { packageLock: true, quiet: true }),

337+

env: createSafeNpmInstallEnv(process.env, {

338+

legacyPeerDeps: true,

339+

packageLock: true,

340+

quiet: true,

341+

}),

337342

},

338343

);

339344

} catch (error) {

@@ -487,6 +492,7 @@ async function installPluginFromManagedNpmRoot(

487492

...createSafeNpmInstallArgs({

488493

omitDev: true,

489494

loglevel: "error",

495+

legacyPeerDeps: true,

490496

noAudit: true,

491497

noFund: true,

492498

}),

@@ -496,7 +502,11 @@ async function installPluginFromManagedNpmRoot(

496502

{

497503

cwd: npmRoot,

498504

timeoutMs: Math.max(timeoutMs, 300_000),

499-

env: createSafeNpmInstallEnv(process.env, { packageLock: true, quiet: true }),

505+

env: createSafeNpmInstallEnv(process.env, {

506+

legacyPeerDeps: true,

507+

packageLock: true,

508+

quiet: true,

509+

}),

500510

},

501511

);

502512

if (install.code !== 0) {

Original file line numberDiff line numberDiff line change

@@ -974,6 +974,7 @@ describe("uninstallPlugin", () => {

974974

"npm",

975975

"uninstall",

976976

"--loglevel=error",

977+

"--legacy-peer-deps",

977978

"--ignore-scripts",

978979

"--no-audit",

979980

"--no-fund",

@@ -986,6 +987,7 @@ describe("uninstallPlugin", () => {

986987

timeoutMs: 300_000,

987988

env: expect.objectContaining({

988989

NPM_CONFIG_IGNORE_SCRIPTS: "true",

990+

npm_config_legacy_peer_deps: "true",

989991

npm_config_package_lock: "true",

990992

}),

991993

}),

@@ -1015,8 +1017,11 @@ describe("uninstallPlugin", () => {

10151017

)}\n`,

10161018

);

10171019

await fs.symlink(tempDir, peerLink, "junction");

1018-

runCommandWithTimeoutMock.mockImplementationOnce(async () => {

1020+

runCommandWithTimeoutMock.mockImplementationOnce(async (argv: string[]) => {

10191021

await fs.rm(peerLink, { recursive: true, force: true });

1022+

if (!argv.includes("--legacy-peer-deps")) {

1023+

await fs.mkdir(path.join(npmRoot, "node_modules", "openclaw"), { recursive: true });

1024+

}

10201025

return {

10211026

code: 0,

10221027

stdout: "",

@@ -1038,6 +1043,7 @@ describe("uninstallPlugin", () => {

10381043
10391044

expect(applied).toEqual({ directoryRemoved: true, warnings: [] });

10401045

await expect(fs.access(removedPluginDir)).rejects.toThrow();

1046+

await expect(fs.access(path.join(npmRoot, "node_modules", "openclaw"))).rejects.toThrow();

10411047

await expect(fs.lstat(peerLink).then((stat) => stat.isSymbolicLink())).resolves.toBe(true);

10421048

});

10431049
Original file line numberDiff line numberDiff line change

@@ -595,6 +595,7 @@ export async function applyPluginUninstallDirectoryRemoval(

595595

"npm",

596596

"uninstall",

597597

"--loglevel=error",

598+

"--legacy-peer-deps",

598599

"--ignore-scripts",

599600

"--no-audit",

600601

"--no-fund",

@@ -605,7 +606,11 @@ export async function applyPluginUninstallDirectoryRemoval(

605606

{

606607

cwd: removal.cleanup.npmRoot,

607608

timeoutMs: 300_000,

608-

env: createSafeNpmInstallEnv(process.env, { packageLock: true, quiet: true }),

609+

env: createSafeNpmInstallEnv(process.env, {

610+

legacyPeerDeps: true,

611+

packageLock: true,

612+

quiet: true,

613+

}),

609614

},

610615

);

611616

if (uninstall.code !== 0) {