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

推荐订阅源

Google DeepMind News
Google DeepMind News
C
Check Point Blog
J
Java Code Geeks
腾讯CDC
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
罗磊的独立博客
Last Week in AI
Last Week in AI
B
Blog
IT之家
IT之家
S
SegmentFault 最新的问题
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
博客园 - 聂微东
U
Unit 42
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
MyScale Blog
MyScale 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
Prevent disabled plugins from warming the gateway plugin ...
2026-04-28 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -362,4 +362,34 @@ describe("doctor preview warnings", () => {

362362

]);

363363

expect(warnings[0]).not.toContain("first-time setup mode");

364364

});

365+
366+

it("keeps global plugin-disable blocker warnings but omits stale plugin cleanup warnings", async () => {

367+

manifestState.plugins = [channelManifest("telegram", "telegram")];

368+
369+

const warnings = await collectDoctorPreviewWarnings({

370+

cfg: {

371+

channels: {

372+

telegram: {

373+

botToken: "123:abc",

374+

groupPolicy: "allowlist",

375+

},

376+

},

377+

plugins: {

378+

enabled: false,

379+

allow: ["acpx"],

380+

entries: {

381+

acpx: { enabled: true },

382+

},

383+

},

384+

},

385+

doctorFixCommand: "openclaw doctor --fix",

386+

});

387+
388+

expect(warnings).toEqual([

389+

expect.stringContaining(

390+

"channels.telegram: channel is configured, but plugins.enabled=false blocks channel plugins globally.",

391+

),

392+

]);

393+

expect(warnings.join("\n")).not.toContain("stale plugin reference");

394+

});

365395

});

Original file line numberDiff line numberDiff line change

@@ -123,7 +123,7 @@ export async function collectDoctorPreviewWarnings(params: {

123123

}

124124

}

125125
126-

if (hasPluginConfig || hasChannelConfig) {

126+

if ((hasPluginConfig || hasChannelConfig) && params.cfg.plugins?.enabled !== false) {

127127

const {

128128

collectStalePluginConfigWarnings,

129129

isStalePluginAutoRepairBlocked,

Original file line numberDiff line numberDiff line change

@@ -198,6 +198,27 @@ describe("doctor stale plugin config helpers", () => {

198198

expect(maybeRepairStalePluginConfig(cfg)).toEqual({ config: cfg, changes: [] });

199199

});

200200
201+

it("treats stale plugin refs as inert while plugins are globally disabled", () => {

202+

const cfg = {

203+

plugins: {

204+

enabled: false,

205+

allow: ["acpx"],

206+

entries: {

207+

acpx: { enabled: true },

208+

},

209+

},

210+

channels: {

211+

"openclaw-weixin": {

212+

enabled: true,

213+

},

214+

},

215+

} as OpenClawConfig;

216+
217+

expect(scanStalePluginConfig(cfg)).toEqual([]);

218+

expect(maybeRepairStalePluginConfig(cfg)).toEqual({ config: cfg, changes: [] });

219+

expect(manifestRegistry.loadPluginManifestRegistry).not.toHaveBeenCalled();

220+

});

221+
201222

it("uses missing persisted install records as stale channel evidence", () => {

202223

installedPluginIndexMocks.loadInstalledPluginIndexInstallRecordsSync.mockReturnValue({

203224

"openclaw-weixin": {

Original file line numberDiff line numberDiff line change

@@ -74,13 +74,19 @@ export function isStalePluginAutoRepairBlocked(

7474

cfg: OpenClawConfig,

7575

env?: NodeJS.ProcessEnv,

7676

): boolean {

77+

if (cfg.plugins?.enabled === false) {

78+

return false;

79+

}

7780

return collectPluginRegistryState(cfg, env).hasDiscoveryErrors;

7881

}

7982
8083

export function scanStalePluginConfig(

8184

cfg: OpenClawConfig,

8285

env?: NodeJS.ProcessEnv,

8386

): StalePluginConfigHit[] {

87+

if (cfg.plugins?.enabled === false) {

88+

return [];

89+

}

8490

return scanStalePluginConfigWithState(cfg, collectPluginRegistryState(cfg, env));

8591

}

8692

@@ -268,6 +274,9 @@ export function maybeRepairStalePluginConfig(

268274

config: OpenClawConfig;

269275

changes: string[];

270276

} {

277+

if (cfg.plugins?.enabled === false) {

278+

return { config: cfg, changes: [] };

279+

}

271280

const registryState = collectPluginRegistryState(cfg, env);

272281

if (registryState.hasDiscoveryErrors) {

273282

return { config: cfg, changes: [] };

Original file line numberDiff line numberDiff line change

@@ -720,6 +720,21 @@ describe("applyPluginAutoEnable core", () => {

720720

});

721721
722722

it("skips when plugins are globally disabled", () => {

723+

expect(

724+

detectPluginAutoEnableCandidates({

725+

config: {

726+

channels: { slack: { botToken: "x" } },

727+

plugins: {

728+

enabled: false,

729+

allow: ["slack"],

730+

entries: { slack: { config: { botToken: "x" } } },

731+

},

732+

},

733+

env,

734+

manifestRegistry: makeRegistry([{ id: "slack", channels: ["slack"] }]),

735+

}),

736+

).toEqual([]);

737+
723738

const result = applyPluginAutoEnable({

724739

config: {

725740

channels: { slack: { botToken: "x" } },

Original file line numberDiff line numberDiff line change

@@ -466,7 +466,14 @@ function hasConfiguredProviderModelOrHarness(cfg: OpenClawConfig, env: NodeJS.Pr

466466

return hasConfiguredEmbeddedHarnessRuntime(cfg, env);

467467

}

468468
469+

function arePluginsGloballyDisabled(cfg: OpenClawConfig): boolean {

470+

return cfg.plugins?.enabled === false;

471+

}

472+
469473

function configMayNeedPluginManifestRegistry(cfg: OpenClawConfig, env: NodeJS.ProcessEnv): boolean {

474+

if (arePluginsGloballyDisabled(cfg)) {

475+

return false;

476+

}

470477

if (hasPluginAllowlistWithMaterialEntries(cfg)) {

471478

return true;

472479

}

@@ -493,6 +500,9 @@ export function configMayNeedPluginAutoEnable(

493500

cfg: OpenClawConfig,

494501

env: NodeJS.ProcessEnv,

495502

): boolean {

503+

if (arePluginsGloballyDisabled(cfg)) {

504+

return false;

505+

}

496506

if (hasPluginAllowlistWithMaterialEntries(cfg)) {

497507

return true;

498508

}

Original file line numberDiff line numberDiff line change

@@ -410,4 +410,50 @@ describe("prepareGatewayPluginBootstrap runtime-deps staging", () => {

410410

"bundledRuntimeDepsInstaller",

411411

);

412412

});

413+
414+

it("bypasses plugin lookup and runtime-deps staging when plugins are globally disabled", async () => {

415+

const cfg = {

416+

channels: {

417+

telegram: {

418+

botToken: "token",

419+

},

420+

},

421+

plugins: {

422+

enabled: false,

423+

allow: ["telegram"],

424+

entries: {

425+

telegram: { enabled: true },

426+

},

427+

},

428+

} as OpenClawConfig;

429+

const log = createLog();

430+

const { prepareGatewayPluginBootstrap } = await import("./server-startup-plugins.js");

431+
432+

await expect(

433+

prepareGatewayPluginBootstrap({

434+

cfgAtStart: cfg,

435+

startupRuntimeConfig: cfg,

436+

minimalTestGateway: false,

437+

log,

438+

}),

439+

).resolves.toMatchObject({

440+

startupPluginIds: [],

441+

deferredConfiguredChannelPluginIds: [],

442+

pluginLookUpTable: undefined,

443+

baseGatewayMethods: ["ping"],

444+

});

445+
446+

expect(loadPluginLookUpTable).not.toHaveBeenCalled();

447+

expect(scanBundledPluginRuntimeDeps).not.toHaveBeenCalled();

448+

expect(repairBundledRuntimeDepsInstallRootAsync).not.toHaveBeenCalled();

449+

expect(loadGatewayStartupPlugins).toHaveBeenCalledWith(

450+

expect.objectContaining({

451+

cfg,

452+

pluginIds: [],

453+

pluginLookUpTable: undefined,

454+

preferSetupRuntimeForChannelPlugins: false,

455+

suppressPluginInfoLogs: false,

456+

}),

457+

);

458+

});

413459

});

Original file line numberDiff line numberDiff line change

@@ -155,17 +155,19 @@ export async function prepareGatewayPluginBootstrap(params: {

155155

: {}),

156156

}).config,

157157

});

158+

const pluginsGloballyDisabled = gatewayPluginConfig.plugins?.enabled === false;

158159

const defaultAgentId = resolveDefaultAgentId(gatewayPluginConfig);

159160

const defaultWorkspaceDir = resolveAgentWorkspaceDir(gatewayPluginConfig, defaultAgentId);

160-

const pluginLookUpTable = params.minimalTestGateway

161-

? undefined

162-

: loadPluginLookUpTable({

163-

config: gatewayPluginConfig,

164-

workspaceDir: defaultWorkspaceDir,

165-

env: process.env,

166-

activationSourceConfig,

167-

metadataSnapshot: params.pluginMetadataSnapshot,

168-

});

161+

const pluginLookUpTable =

162+

params.minimalTestGateway || pluginsGloballyDisabled

163+

? undefined

164+

: loadPluginLookUpTable({

165+

config: gatewayPluginConfig,

166+

workspaceDir: defaultWorkspaceDir,

167+

env: process.env,

168+

activationSourceConfig,

169+

metadataSnapshot: params.pluginMetadataSnapshot,

170+

});

169171

const deferredConfiguredChannelPluginIds = [

170172

...(pluginLookUpTable?.startup.configuredDeferredChannelPluginIds ?? []),

171173

];