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

推荐订阅源

F
Fortinet All Blogs
WordPress大学
WordPress大学
The Cloudflare Blog
云风的 BLOG
云风的 BLOG
博客园 - Franky
D
Docker
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
U
Unit 42
M
MIT News - Artificial intelligence
B
Blog
GbyAI
GbyAI
C
Check Point Blog
P
Proofpoint News Feed
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
IT之家
IT之家
Google DeepMind News
Google DeepMind News
V
V2EX
Stack Overflow Blog
Stack Overflow 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: repair stale managed plugin shadows · openclaw/openc...
steipete · 2026-05-04 · via Recent Commits to openclaw:main

@@ -60,6 +60,88 @@ function createCandidate(rootDir: string, id = "demo"): PluginCandidate {

6060

};

6161

}

626263+

function createBundledCandidate(params: {

64+

rootDir: string;

65+

id: string;

66+

packageName: string;

67+

version: string;

68+

}): PluginCandidate {

69+

fs.writeFileSync(

70+

path.join(params.rootDir, "index.ts"),

71+

"throw new Error('runtime entry should not load during doctor registry repair');\n",

72+

"utf8",

73+

);

74+

fs.writeFileSync(

75+

path.join(params.rootDir, "openclaw.plugin.json"),

76+

JSON.stringify({

77+

id: params.id,

78+

name: params.id,

79+

configSchema: { type: "object" },

80+

providers: [params.id],

81+

}),

82+

"utf8",

83+

);

84+

fs.writeFileSync(

85+

path.join(params.rootDir, "package.json"),

86+

JSON.stringify({

87+

name: params.packageName,

88+

version: params.version,

89+

}),

90+

"utf8",

91+

);

92+

return {

93+

idHint: params.id,

94+

source: path.join(params.rootDir, "index.ts"),

95+

rootDir: params.rootDir,

96+

origin: "bundled",

97+

packageName: params.packageName,

98+

packageVersion: params.version,

99+

};

100+

}

101+102+

function createManagedNpmPlugin(params: {

103+

stateDir: string;

104+

id: string;

105+

packageName: string;

106+

version: string;

107+

}) {

108+

const npmRoot = path.join(params.stateDir, "npm");

109+

const packageDir = path.join(npmRoot, "node_modules", params.packageName);

110+

fs.mkdirSync(packageDir, { recursive: true });

111+

fs.writeFileSync(

112+

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

113+

JSON.stringify({

114+

dependencies: {

115+

[params.packageName]: params.version,

116+

},

117+

}),

118+

"utf8",

119+

);

120+

fs.writeFileSync(

121+

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

122+

JSON.stringify({

123+

name: params.packageName,

124+

version: params.version,

125+

openclaw: {

126+

extensions: ["."],

127+

},

128+

}),

129+

"utf8",

130+

);

131+

fs.writeFileSync(

132+

path.join(packageDir, "openclaw.plugin.json"),

133+

JSON.stringify({

134+

id: params.id,

135+

name: params.id,

136+

configSchema: {

137+

type: "object",

138+

},

139+

}),

140+

"utf8",

141+

);

142+

return { npmRoot, packageDir };

143+

}

144+63145

function createCurrentIndex(): InstalledPluginIndex {

64146

return {

65147

version: 1,

@@ -115,4 +197,108 @@ describe("maybeRepairPluginRegistryState", () => {

115197

expect(nextConfig).toEqual({});

116198

expect(vi.mocked(note).mock.calls.join("\n")).toContain(DISABLE_PLUGIN_REGISTRY_MIGRATION_ENV);

117199

});

200+201+

it("warns about stale managed npm packages that shadow bundled plugins", async () => {

202+

const stateDir = makeTempDir();

203+

const bundledDir = path.join(stateDir, "bundled", "google-meet");

204+

fs.mkdirSync(bundledDir, { recursive: true });

205+

createManagedNpmPlugin({

206+

stateDir,

207+

id: "google-meet",

208+

packageName: "@openclaw/google-meet",

209+

version: "2026.5.2",

210+

});

211+

await writePersistedInstalledPluginIndex(createCurrentIndex(), { stateDir });

212+213+

await maybeRepairPluginRegistryState({

214+

stateDir,

215+

candidates: [

216+

createBundledCandidate({

217+

rootDir: bundledDir,

218+

id: "google-meet",

219+

packageName: "@openclaw/google-meet",

220+

version: "2026.5.3",

221+

}),

222+

],

223+

env: hermeticEnv(),

224+

config: {

225+

plugins: {

226+

allow: ["google-meet"],

227+

entries: {

228+

"google-meet": {

229+

enabled: true,

230+

config: {},

231+

},

232+

},

233+

},

234+

},

235+

prompter: { shouldRepair: false },

236+

});

237+238+

expect(vi.mocked(note).mock.calls.join("\n")).toContain(

239+

"Managed npm plugin packages shadow bundled plugins",

240+

);

241+

expect(vi.mocked(note).mock.calls.join("\n")).toContain("@openclaw/google-meet@2026.5.2");

242+

expect(

243+

fs.existsSync(path.join(stateDir, "npm", "node_modules", "@openclaw", "google-meet")),

244+

).toBe(true);

245+

});

246+247+

it("removes stale managed npm packages that shadow bundled plugins during repair", async () => {

248+

const stateDir = makeTempDir();

249+

const bundledDir = path.join(stateDir, "bundled", "google-meet");

250+

fs.mkdirSync(bundledDir, { recursive: true });

251+

createManagedNpmPlugin({

252+

stateDir,

253+

id: "google-meet",

254+

packageName: "@openclaw/google-meet",

255+

version: "2026.5.2",

256+

});

257+

await writePersistedInstalledPluginIndex(createCurrentIndex(), { stateDir });

258+259+

await maybeRepairPluginRegistryState({

260+

stateDir,

261+

candidates: [

262+

createBundledCandidate({

263+

rootDir: bundledDir,

264+

id: "google-meet",

265+

packageName: "@openclaw/google-meet",

266+

version: "2026.5.3",

267+

}),

268+

],

269+

env: hermeticEnv(),

270+

config: {

271+

plugins: {

272+

allow: ["google-meet"],

273+

entries: {

274+

"google-meet": {

275+

enabled: true,

276+

config: {},

277+

},

278+

},

279+

},

280+

},

281+

prompter: { shouldRepair: true },

282+

});

283+284+

expect(

285+

fs.existsSync(path.join(stateDir, "npm", "node_modules", "@openclaw", "google-meet")),

286+

).toBe(false);

287+

expect(

288+

JSON.parse(fs.readFileSync(path.join(stateDir, "npm", "package.json"), "utf8")),

289+

).not.toHaveProperty("dependencies");

290+

await expect(readPersistedInstalledPluginIndex({ stateDir })).resolves.toMatchObject({

291+

refreshReason: "migration",

292+

plugins: [

293+

expect.objectContaining({

294+

pluginId: "google-meet",

295+

origin: "bundled",

296+

rootDir: bundledDir,

297+

}),

298+

],

299+

});

300+

expect(vi.mocked(note).mock.calls.join("\n")).toContain(

301+

"Removed stale managed npm plugin package",

302+

);

303+

});

118304

});