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

推荐订阅源

美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Martin Fowler
Martin Fowler
雷峰网
雷峰网
IT之家
IT之家
小众软件
小众软件
M
MIT News - Artificial intelligence
博客园 - 聂微东
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
C
Check Point Blog
云风的 BLOG
云风的 BLOG
腾讯CDC
H
Help Net Security
Y
Y Combinator 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
perf(gateway): trust current metadata lifecycle cache · o...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -10,14 +10,11 @@ import {

1010

type ResolvePluginControlPlaneContextParams,

1111

} from "./plugin-control-plane-context.js";

1212

import type { PluginMetadataSnapshot } from "./plugin-metadata-snapshot.types.js";

13-

import { resolvePluginCacheInputs } from "./roots.js";

14131514

type CurrentPluginMetadataSnapshotState = ReturnType<typeof getCurrentPluginMetadataSnapshotState>;

1615

type CurrentPluginMetadataConfigCacheEntry = {

1716

configFingerprint: string;

18-

discoveryKey: string;

1917

policyHash: string;

20-

policyKey: string;

2118

};

22192320

let currentPluginMetadataConfigIdentityCache = new WeakMap<

@@ -41,65 +38,6 @@ export function isReusableCurrentPluginMetadataSnapshot(

4138

return true;

4239

}

434044-

function resolveConfiguredPluginLoadPaths(

45-

config: OpenClawConfig | undefined,

46-

): readonly string[] | undefined {

47-

const paths = config?.plugins?.load?.paths;

48-

return Array.isArray(paths) ? paths : undefined;

49-

}

50-51-

function resolveCurrentPluginMetadataDiscoveryKey(params: {

52-

config?: OpenClawConfig;

53-

env: NodeJS.ProcessEnv;

54-

workspaceDir?: string;

55-

}): string {

56-

return JSON.stringify(

57-

resolvePluginCacheInputs({

58-

env: params.env,

59-

workspaceDir: params.workspaceDir,

60-

loadPaths: [...(resolveConfiguredPluginLoadPaths(params.config) ?? [])],

61-

}),

62-

);

63-

}

64-65-

function resolveCurrentPluginMetadataPolicyKey(config: OpenClawConfig | undefined): string {

66-

const plugins = config?.plugins;

67-

const rawEntries = plugins?.entries;

68-

const entries: Record<string, unknown> = {};

69-

if (rawEntries && typeof rawEntries === "object" && !Array.isArray(rawEntries)) {

70-

for (const [pluginId, entry] of Object.entries(rawEntries)) {

71-

if (entry && typeof entry === "object" && !Array.isArray(entry)) {

72-

const enabled = (entry as Record<string, unknown>).enabled;

73-

if (enabled !== undefined) {

74-

entries[pluginId] = enabled;

75-

}

76-

}

77-

}

78-

}

79-

const channelPolicy: Record<string, boolean> = {};

80-

const channels = config?.channels;

81-

if (channels && typeof channels === "object" && !Array.isArray(channels)) {

82-

for (const [channelId, value] of Object.entries(channels)) {

83-

if (value && typeof value === "object" && !Array.isArray(value)) {

84-

const enabled = (value as Record<string, unknown>).enabled;

85-

if (typeof enabled === "boolean") {

86-

channelPolicy[channelId] = enabled;

87-

}

88-

}

89-

}

90-

}

91-

return JSON.stringify({

92-

plugins: {

93-

enabled: plugins?.enabled,

94-

allow: plugins?.allow,

95-

deny: plugins?.deny,

96-

slots: plugins?.slots,

97-

entries,

98-

},

99-

channels: channelPolicy,

100-

});

101-

}

102-10341

// Single-slot Gateway-owned handoff. Replace or clear it at lifecycle boundaries;

10442

// never accumulate historical metadata snapshots here.

10543

export function setCurrentPluginMetadataSnapshot(

@@ -145,16 +83,8 @@ export function setCurrentPluginMetadataSnapshot(

14583

const workspaceDir = options.workspaceDir ?? snapshot.workspaceDir;

14684

if (options.config) {

14785

const policyHash = resolveInstalledPluginIndexPolicyHash(options.config);

148-

const policyKey = resolveCurrentPluginMetadataPolicyKey(options.config);

149-

const discoveryKey = resolveCurrentPluginMetadataDiscoveryKey({

150-

config: options.config,

151-

env,

152-

workspaceDir,

153-

});

15486

currentPluginMetadataConfigIdentityCache.set(options.config, {

15587

policyHash,

156-

policyKey,

157-

discoveryKey,

15888

configFingerprint: resolvePluginMetadataControlPlaneFingerprint(options.config, {

15989

env,

16090

index: snapshot.index,

@@ -171,13 +101,7 @@ export function setCurrentPluginMetadataSnapshot(

171101

}

172102

currentPluginMetadataConfigIdentityCache.set(config, {

173103

policyHash,

174-

policyKey: resolveCurrentPluginMetadataPolicyKey(config),

175104

configFingerprint,

176-

discoveryKey: resolveCurrentPluginMetadataDiscoveryKey({

177-

config,

178-

env,

179-

workspaceDir,

180-

}),

181105

});

182106

}

183107

}

@@ -226,23 +150,17 @@ export function getCurrentPluginMetadataSnapshot(

226150

const requestedWorkspaceDir =

227151

params.workspaceDir ??

228152

(params.allowWorkspaceScopedSnapshot === true ? snapshot.workspaceDir : undefined);

153+

if (snapshot.workspaceDir !== undefined && requestedWorkspaceDir === undefined) {

154+

return undefined;

155+

}

156+

if (

157+

requestedWorkspaceDir !== undefined &&

158+

(snapshot.workspaceDir ?? "") !== (requestedWorkspaceDir ?? "")

159+

) {

160+

return undefined;

161+

}

229162

const cachedConfig = params.config && currentPluginMetadataConfigIdentityCache.get(params.config);

230-

const requestedPolicyKey =

231-

params.config && cachedConfig

232-

? resolveCurrentPluginMetadataPolicyKey(params.config)

233-

: undefined;

234-

const requestedDiscoveryKey =

235-

params.config && cachedConfig

236-

? resolveCurrentPluginMetadataDiscoveryKey({

237-

config: params.config,

238-

env,

239-

workspaceDir: requestedWorkspaceDir,

240-

})

241-

: undefined;

242-

const canReuseCachedConfig =

243-

cachedConfig !== undefined &&

244-

cachedConfig.policyKey === requestedPolicyKey &&

245-

cachedConfig.discoveryKey === requestedDiscoveryKey;

163+

const canReuseCachedConfig = cachedConfig !== undefined;

246164

const requestedPolicyHash = canReuseCachedConfig

247165

? cachedConfig.policyHash

248166

: params.config

@@ -254,6 +172,9 @@ export function getCurrentPluginMetadataSnapshot(

254172

return undefined;

255173

}

256174

}

175+

if (canReuseCachedConfig && params.requireDefaultDiscoveryContext !== true) {

176+

return snapshot;

177+

}

257178

if (params.config) {

258179

const requestedConfigFingerprint = canReuseCachedConfig

259180

? cachedConfig.configFingerprint

@@ -263,11 +184,10 @@ export function getCurrentPluginMetadataSnapshot(

263184

policyHash: requestedPolicyHash,

264185

workspaceDir: requestedWorkspaceDir,

265186

});

266-

const compatibleFingerprints = new Set(compatibleConfigFingerprints ?? []);

267187

const fingerprintMatches =

268188

configFingerprint === requestedConfigFingerprint ||

269189

snapshot.configFingerprint === requestedConfigFingerprint ||

270-

compatibleFingerprints.has(requestedConfigFingerprint);

190+

Boolean(compatibleConfigFingerprints?.includes(requestedConfigFingerprint));

271191

if (!fingerprintMatches) {

272192

return undefined;

273193

}

@@ -282,23 +202,13 @@ export function getCurrentPluginMetadataSnapshot(

282202

workspaceDir: requestedWorkspaceDir,

283203

},

284204

);

285-

const compatibleFingerprints = new Set(compatibleConfigFingerprints ?? []);

286205

const fingerprintMatches =

287206

configFingerprint === defaultDiscoveryConfigFingerprint ||

288207

snapshot.configFingerprint === defaultDiscoveryConfigFingerprint ||

289-

compatibleFingerprints.has(defaultDiscoveryConfigFingerprint);

208+

Boolean(compatibleConfigFingerprints?.includes(defaultDiscoveryConfigFingerprint));

290209

if (!fingerprintMatches) {

291210

return undefined;

292211

}

293212

}

294-

if (snapshot.workspaceDir !== undefined && requestedWorkspaceDir === undefined) {

295-

return undefined;

296-

}

297-

if (

298-

requestedWorkspaceDir !== undefined &&

299-

(snapshot.workspaceDir ?? "") !== (requestedWorkspaceDir ?? "")

300-

) {

301-

return undefined;

302-

}

303213

return snapshot;

304214

}