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

推荐订阅源

V
V2EX
宝玉的分享
宝玉的分享
Jina AI
Jina AI
IT之家
IT之家
博客园 - Franky
MyScale Blog
MyScale Blog
Y
Y Combinator Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
雷峰网
雷峰网
WordPress大学
WordPress大学
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
美团技术团队
S
SegmentFault 最新的问题
罗磊的独立博客
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
H
Help Net Security
D
Docker
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
M
MIT News - Artificial intelligence

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): scope install slot selection · openclaw/ope...
vincentkoc · 2026-05-01 · via Recent Commits to openclaw:main

@@ -3,8 +3,8 @@ import type { OpenClawConfig } from "../config/config.js";

33

import {

44

applyExclusiveSlotSelection,

55

buildPluginDiagnosticsReport,

6-

buildPluginSnapshotReport,

76

enablePluginInConfig,

7+

loadPluginManifestRegistry,

88

refreshPluginRegistry,

99

resetPluginsCliTestState,

1010

writeConfigFile,

@@ -111,7 +111,7 @@ describe("persistPluginInstall", () => {

111111

expect(next).toEqual(enabledConfig);

112112

});

113113114-

it("falls back to runtime kind registry cleanup when metadata omits kind", async () => {

114+

it("scopes runtime kind lookup to the selected plugin when metadata omits kind", async () => {

115115

const { persistPluginInstall } = await import("./plugins-install-persist.js");

116116

const baseConfig = {

117117

plugins: {

@@ -129,15 +129,12 @@ describe("persistPluginInstall", () => {

129129

},

130130

} as OpenClawConfig;

131131

enablePluginInConfig.mockReturnValue({ config: enabledConfig });

132-

buildPluginSnapshotReport.mockReturnValue({

133-

plugins: [{ id: "legacy-memory-a" }, { id: "legacy-memory" }],

132+

loadPluginManifestRegistry.mockReturnValue({

133+

plugins: [{ id: "legacy-memory" }],

134134

diagnostics: [],

135135

});

136-

buildPluginDiagnosticsReport.mockReturnValue({

137-

plugins: [

138-

{ id: "legacy-memory-a", kind: "memory" },

139-

{ id: "legacy-memory", kind: "memory" },

140-

],

136+

buildPluginDiagnosticsReport.mockReturnValueOnce({

137+

plugins: [{ id: "legacy-memory", kind: "memory" }],

141138

diagnostics: [],

142139

});

143140

applyExclusiveSlotSelection.mockImplementation(((params: {

@@ -148,19 +145,12 @@ describe("persistPluginInstall", () => {

148145

}) => {

149146

expect(params.selectedId).toBe("legacy-memory");

150147

expect(params.selectedKind).toBe("memory");

151-

expect(params.registry?.plugins).toEqual([

152-

{ id: "legacy-memory-a", kind: "memory" },

153-

{ id: "legacy-memory", kind: "memory" },

154-

]);

148+

expect(params.registry?.plugins).toEqual([{ id: "legacy-memory", kind: "memory" }]);

155149

return {

156150

config: {

157151

...params.config,

158152

plugins: {

159153

...params.config.plugins,

160-

entries: {

161-

...params.config.plugins?.entries,

162-

"legacy-memory-a": { enabled: false },

163-

},

164154

slots: {

165155

...params.config.plugins?.slots,

166156

memory: "legacy-memory",

@@ -185,14 +175,21 @@ describe("persistPluginInstall", () => {

185175

},

186176

});

187177178+

expect(buildPluginDiagnosticsReport).toHaveBeenCalledTimes(1);

188179

expect(buildPluginDiagnosticsReport).toHaveBeenCalledWith({

189180

config: enabledConfig,

181+

onlyPluginIds: ["legacy-memory"],

182+

});

183+

expect(loadPluginManifestRegistry).toHaveBeenCalledWith({

184+

config: enabledConfig,

185+

includeDisabled: true,

186+

pluginIds: ["legacy-memory"],

190187

});

191-

expect(next.plugins?.entries?.["legacy-memory-a"]?.enabled).toBe(false);

188+

expect(next.plugins?.entries?.["legacy-memory-a"]?.enabled).toBe(true);

192189

expect(next.plugins?.slots?.memory).toBe("legacy-memory");

193190

});

194191195-

it("uses runtime registry cleanup when a manifest-kind plugin has runtime-kind siblings", async () => {

192+

it("uses cold metadata for manifest-kind slot selection without loading runtime siblings", async () => {

196193

const { persistPluginInstall } = await import("./plugins-install-persist.js");

197194

const baseConfig = {

198195

plugins: {

@@ -210,15 +207,8 @@ describe("persistPluginInstall", () => {

210207

},

211208

} as OpenClawConfig;

212209

enablePluginInConfig.mockReturnValue({ config: enabledConfig });

213-

buildPluginSnapshotReport.mockReturnValue({

214-

plugins: [{ id: "legacy-memory-a" }, { id: "memory-b", kind: "memory" }],

215-

diagnostics: [],

216-

});

217-

buildPluginDiagnosticsReport.mockReturnValue({

218-

plugins: [

219-

{ id: "legacy-memory-a", kind: "memory" },

220-

{ id: "memory-b", kind: "memory" },

221-

],

210+

loadPluginManifestRegistry.mockReturnValue({

211+

plugins: [{ id: "memory-b", kind: "memory" }],

222212

diagnostics: [],

223213

});

224214

applyExclusiveSlotSelection.mockImplementation(((params: {

@@ -229,19 +219,12 @@ describe("persistPluginInstall", () => {

229219

}) => {

230220

expect(params.selectedId).toBe("memory-b");

231221

expect(params.selectedKind).toBe("memory");

232-

expect(params.registry?.plugins).toEqual([

233-

{ id: "legacy-memory-a", kind: "memory" },

234-

{ id: "memory-b", kind: "memory" },

235-

]);

222+

expect(params.registry?.plugins).toEqual([{ id: "memory-b", kind: "memory" }]);

236223

return {

237224

config: {

238225

...params.config,

239226

plugins: {

240227

...params.config.plugins,

241-

entries: {

242-

...params.config.plugins?.entries,

243-

"legacy-memory-a": { enabled: false },

244-

},

245228

slots: {

246229

...params.config.plugins?.slots,

247230

memory: "memory-b",

@@ -266,13 +249,71 @@ describe("persistPluginInstall", () => {

266249

},

267250

});

268251269-

expect(buildPluginDiagnosticsReport).toHaveBeenCalledWith({

252+

expect(buildPluginDiagnosticsReport).not.toHaveBeenCalled();

253+

expect(loadPluginManifestRegistry).toHaveBeenCalledWith({

270254

config: enabledConfig,

255+

includeDisabled: true,

256+

pluginIds: ["memory-b"],

271257

});

272-

expect(next.plugins?.entries?.["legacy-memory-a"]?.enabled).toBe(false);

258+

expect(next.plugins?.entries?.["legacy-memory-a"]?.enabled).toBe(true);

273259

expect(next.plugins?.slots?.memory).toBe("memory-b");

274260

});

275261262+

it("does not load every plugin runtime for non-slot installs without manifest kind", async () => {

263+

const { persistPluginInstall } = await import("./plugins-install-persist.js");

264+

const baseConfig = {

265+

plugins: {

266+

entries: {},

267+

},

268+

} as OpenClawConfig;

269+

const enabledConfig = {

270+

plugins: {

271+

entries: {

272+

plain: { enabled: true },

273+

},

274+

},

275+

} as OpenClawConfig;

276+

enablePluginInConfig.mockReturnValue({ config: enabledConfig });

277+

loadPluginManifestRegistry.mockReturnValue({

278+

plugins: [{ id: "plain" }],

279+

diagnostics: [],

280+

});

281+

buildPluginDiagnosticsReport.mockReturnValue({

282+

plugins: [{ id: "plain" }],

283+

diagnostics: [],

284+

});

285+

applyExclusiveSlotSelection.mockReturnValue({

286+

config: enabledConfig,

287+

warnings: [],

288+

changed: false,

289+

});

290+291+

const next = await persistPluginInstall({

292+

snapshot: {

293+

config: baseConfig,

294+

baseHash: "config-1",

295+

},

296+

pluginId: "plain",

297+

install: {

298+

source: "path",

299+

sourcePath: "/tmp/plain",

300+

installPath: "/tmp/plain",

301+

},

302+

});

303+304+

expect(buildPluginDiagnosticsReport).toHaveBeenCalledTimes(1);

305+

expect(buildPluginDiagnosticsReport).toHaveBeenCalledWith({

306+

config: enabledConfig,

307+

onlyPluginIds: ["plain"],

308+

});

309+

expect(loadPluginManifestRegistry).toHaveBeenCalledWith({

310+

config: enabledConfig,

311+

includeDisabled: true,

312+

pluginIds: ["plain"],

313+

});

314+

expect(next).toEqual(enabledConfig);

315+

});

316+276317

it("can persist an install record without enabling a plugin that needs config first", async () => {

277318

const { persistPluginInstall } = await import("./plugins-install-persist.js");

278319

const baseConfig = {