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

推荐订阅源

博客园_首页
H
Help Net Security
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
A
About on SuperTechFans
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
Martin Fowler
Martin Fowler
I
InfoQ
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
U
Unit 42
The Cloudflare Blog
Y
Y Combinator 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
feat(plugins): plan gateway startup from registry · openc...
vincentkoc · 2026-04-26 · via Recent Commits to openclaw:main

@@ -8,16 +8,15 @@ import {

88

resolveMemoryDreamingPluginId,

99

} from "../memory-host-sdk/dreaming.js";

1010

import { normalizeOptionalLowercaseString } from "../shared/string-coerce.js";

11-

import { resolveManifestActivationPluginIds } from "./activation-planner.js";

1211

import { hasExplicitChannelConfig } from "./channel-presence-policy.js";

1312

import {

1413

createPluginActivationSource,

1514

normalizePluginId,

1615

normalizePluginsConfig,

1716

resolveEffectivePluginActivationState,

1817

} from "./config-state.js";

19-

import { loadPluginManifestRegistry, type PluginManifestRecord } from "./manifest-registry.js";

20-

import { hasKind } from "./slots.js";

18+

import type { InstalledPluginIndexRecord } from "./installed-plugin-index.js";

19+

import { loadPluginRegistrySnapshot } from "./plugin-registry.js";

21202221

function listDisabledChannelIds(config: OpenClawConfig): Set<string> {

2322

const channels = config.channels;

@@ -46,30 +45,12 @@ function listPotentialEnabledChannelIds(config: OpenClawConfig, env: NodeJS.Proc

4645

.filter((id) => id && !disabled.has(id));

4746

}

484749-

function hasRuntimeContractSurface(plugin: PluginManifestRecord): boolean {

50-

return Boolean(

51-

plugin.providers.length > 0 ||

52-

plugin.cliBackends.length > 0 ||

53-

plugin.contracts?.speechProviders?.length ||

54-

plugin.contracts?.mediaUnderstandingProviders?.length ||

55-

plugin.contracts?.documentExtractors?.length ||

56-

plugin.contracts?.imageGenerationProviders?.length ||

57-

plugin.contracts?.videoGenerationProviders?.length ||

58-

plugin.contracts?.musicGenerationProviders?.length ||

59-

plugin.contracts?.webContentExtractors?.length ||

60-

plugin.contracts?.webFetchProviders?.length ||

61-

plugin.contracts?.webSearchProviders?.length ||

62-

plugin.contracts?.memoryEmbeddingProviders?.length ||

63-

hasKind(plugin.kind, "memory"),

64-

);

65-

}

66-67-

function isGatewayStartupMemoryPlugin(plugin: PluginManifestRecord): boolean {

68-

return hasKind(plugin.kind, "memory");

48+

function isGatewayStartupMemoryPlugin(plugin: InstalledPluginIndexRecord): boolean {

49+

return plugin.startup.memory;

6950

}

705171-

function isGatewayStartupSidecar(plugin: PluginManifestRecord): boolean {

72-

return plugin.channels.length === 0 && !hasRuntimeContractSurface(plugin);

52+

function isGatewayStartupSidecar(plugin: InstalledPluginIndexRecord): boolean {

53+

return plugin.startup.sidecar;

7354

}

74557556

function resolveGatewayStartupDreamingPluginIds(config: OpenClawConfig): Set<string> {

@@ -92,7 +73,7 @@ function resolveExplicitMemorySlotStartupPluginId(config: OpenClawConfig): strin

9273

}

93749475

function shouldConsiderForGatewayStartup(params: {

95-

plugin: PluginManifestRecord;

76+

plugin: InstalledPluginIndexRecord;

9677

startupDreamingPluginIds: ReadonlySet<string>;

9778

explicitMemorySlotStartupPluginId?: string;

9879

}): boolean {

@@ -102,45 +83,47 @@ function shouldConsiderForGatewayStartup(params: {

10283

if (!isGatewayStartupMemoryPlugin(params.plugin)) {

10384

return false;

10485

}

105-

if (params.startupDreamingPluginIds.has(params.plugin.id)) {

86+

if (params.startupDreamingPluginIds.has(params.plugin.pluginId)) {

10687

return true;

10788

}

108-

return params.explicitMemorySlotStartupPluginId === params.plugin.id;

89+

return params.explicitMemorySlotStartupPluginId === params.plugin.pluginId;

10990

}

1109111192

function hasConfiguredStartupChannel(params: {

112-

plugin: PluginManifestRecord;

93+

plugin: InstalledPluginIndexRecord;

11394

configuredChannelIds: ReadonlySet<string>;

11495

}): boolean {

115-

return params.plugin.channels.some((channelId) => params.configuredChannelIds.has(channelId));

96+

return params.plugin.contributions.channels.some((channelId) =>

97+

params.configuredChannelIds.has(channelId),

98+

);

11699

}

117100118101

function canStartConfiguredChannelPlugin(params: {

119-

plugin: PluginManifestRecord;

102+

plugin: InstalledPluginIndexRecord;

120103

config: OpenClawConfig;

121104

pluginsConfig: ReturnType<typeof normalizePluginsConfig>;

122105

activationSource: ReturnType<typeof createPluginActivationSource>;

123106

}): boolean {

124107

if (!params.pluginsConfig.enabled) {

125108

return false;

126109

}

127-

if (params.pluginsConfig.deny.includes(params.plugin.id)) {

110+

if (params.pluginsConfig.deny.includes(params.plugin.pluginId)) {

128111

return false;

129112

}

130-

if (params.pluginsConfig.entries[params.plugin.id]?.enabled === false) {

113+

if (params.pluginsConfig.entries[params.plugin.pluginId]?.enabled === false) {

131114

return false;

132115

}

133116

const explicitBundledChannelConfig =

134117

params.plugin.origin === "bundled" &&

135-

params.plugin.channels.some((channelId) =>

118+

params.plugin.contributions.channels.some((channelId) =>

136119

hasExplicitChannelConfig({

137120

config: params.activationSource.rootConfig ?? params.config,

138121

channelId,

139122

}),

140123

);

141124

if (

142125

params.pluginsConfig.allow.length > 0 &&

143-

!params.pluginsConfig.allow.includes(params.plugin.id) &&

126+

!params.pluginsConfig.allow.includes(params.plugin.pluginId) &&

144127

!explicitBundledChannelConfig

145128

) {

146129

return false;

@@ -149,7 +132,7 @@ function canStartConfiguredChannelPlugin(params: {

149132

return true;

150133

}

151134

const activationState = resolveEffectivePluginActivationState({

152-

id: params.plugin.id,

135+

id: params.plugin.pluginId,

153136

origin: params.plugin.origin,

154137

config: params.pluginsConfig,

155138

rootConfig: params.config,

@@ -164,13 +147,14 @@ export function resolveChannelPluginIds(params: {

164147

workspaceDir?: string;

165148

env: NodeJS.ProcessEnv;

166149

}): string[] {

167-

return loadPluginManifestRegistry({

150+

const index = loadPluginRegistrySnapshot({

168151

config: params.config,

169152

workspaceDir: params.workspaceDir,

170153

env: params.env,

171-

})

172-

.plugins.filter((plugin) => plugin.channels.length > 0)

173-

.map((plugin) => plugin.id);

154+

});

155+

return index.plugins

156+

.filter((plugin) => plugin.contributions.channels.length > 0)

157+

.map((plugin) => plugin.pluginId);

174158

}

175159176160

export function resolveConfiguredDeferredChannelPluginIds(params: {

@@ -186,23 +170,24 @@ export function resolveConfiguredDeferredChannelPluginIds(params: {

186170

const activationSource = createPluginActivationSource({

187171

config: params.config,

188172

});

189-

return loadPluginManifestRegistry({

173+

const index = loadPluginRegistrySnapshot({

190174

config: params.config,

191175

workspaceDir: params.workspaceDir,

192176

env: params.env,

193-

})

194-

.plugins.filter(

177+

});

178+

return index.plugins

179+

.filter(

195180

(plugin) =>

196181

hasConfiguredStartupChannel({ plugin, configuredChannelIds }) &&

197-

plugin.startupDeferConfiguredChannelFullLoadUntilAfterListen === true &&

182+

plugin.startup.deferConfiguredChannelFullLoadUntilAfterListen &&

198183

canStartConfiguredChannelPlugin({

199184

plugin,

200185

config: params.config,

201186

pluginsConfig,

202187

activationSource,

203188

}),

204189

)

205-

.map((plugin) => plugin.id);

190+

.map((plugin) => plugin.pluginId);

206191

}

207192208193

export function resolveGatewayStartupPluginIds(params: {

@@ -219,33 +204,23 @@ export function resolveGatewayStartupPluginIds(params: {

219204

const activationSource = createPluginActivationSource({

220205

config: params.activationSourceConfig ?? params.config,

221206

});

222-

const requiredAgentHarnessPluginIds = new Set(

207+

const requiredAgentHarnessRuntimes = new Set(

223208

collectConfiguredAgentHarnessRuntimes(

224209

params.activationSourceConfig ?? params.config,

225210

params.env,

226-

).flatMap((runtime) =>

227-

resolveManifestActivationPluginIds({

228-

trigger: {

229-

kind: "agentHarness",

230-

runtime,

231-

},

232-

config: params.config,

233-

workspaceDir: params.workspaceDir,

234-

env: params.env,

235-

cache: true,

236-

}),

237211

),

238212

);

239213

const startupDreamingPluginIds = resolveGatewayStartupDreamingPluginIds(params.config);

240214

const explicitMemorySlotStartupPluginId = resolveExplicitMemorySlotStartupPluginId(

241215

params.activationSourceConfig ?? params.config,

242216

);

243-

return loadPluginManifestRegistry({

217+

const index = loadPluginRegistrySnapshot({

244218

config: params.config,

245219

workspaceDir: params.workspaceDir,

246220

env: params.env,

247-

})

248-

.plugins.filter((plugin) => {

221+

});

222+

return index.plugins

223+

.filter((plugin) => {

249224

if (hasConfiguredStartupChannel({ plugin, configuredChannelIds })) {

250225

return canStartConfiguredChannelPlugin({

251226

plugin,

@@ -254,9 +229,11 @@ export function resolveGatewayStartupPluginIds(params: {

254229

activationSource,

255230

});

256231

}

257-

if (requiredAgentHarnessPluginIds.has(plugin.id)) {

232+

if (

233+

plugin.startup.agentHarnesses.some((runtime) => requiredAgentHarnessRuntimes.has(runtime))

234+

) {

258235

const activationState = resolveEffectivePluginActivationState({

259-

id: plugin.id,

236+

id: plugin.pluginId,

260237

origin: plugin.origin,

261238

config: pluginsConfig,

262239

rootConfig: params.config,

@@ -275,7 +252,7 @@ export function resolveGatewayStartupPluginIds(params: {

275252

return false;

276253

}

277254

const activationState = resolveEffectivePluginActivationState({

278-

id: plugin.id,

255+

id: plugin.pluginId,

279256

origin: plugin.origin,

280257

config: pluginsConfig,

281258

rootConfig: params.config,

@@ -290,5 +267,5 @@ export function resolveGatewayStartupPluginIds(params: {

290267

}

291268

return activationState.source === "explicit" || activationState.source === "default";

292269

})

293-

.map((plugin) => plugin.id);

270+

.map((plugin) => plugin.pluginId);

294271

}