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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
Engineering at Meta
Engineering at Meta
量子位
A
About on SuperTechFans
阮一峰的网络日志
阮一峰的网络日志
Recent Announcements
Recent Announcements
博客园 - 司徒正美
V
Visual Studio Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
腾讯CDC
Jina AI
Jina AI
C
Check Point Blog
H
Help Net Security
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
爱范儿
爱范儿
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: cache plugin registry snapshots · openclaw/openclaw...
steipete · 2026-05-29 · via Recent Commits to openclaw:main

@@ -2,12 +2,14 @@ import crypto from "node:crypto";

22

import fs from "node:fs";

33

import path from "node:path";

44

import { resolveUserPath } from "../utils.js";

5+

import { resolveCompatibilityHostVersion } from "../version.js";

56

import { resolveBundledPluginsDir } from "./bundled-dir.js";

67

import { getCurrentPluginMetadataSnapshot } from "./current-plugin-metadata-snapshot.js";

78

import type { PluginDiscoveryResult } from "./discovery.js";

8-

import { fileSignatureMatches } from "./installed-plugin-index-hash.js";

9+

import { fileSignatureMatches, hashJson } from "./installed-plugin-index-hash.js";

910

import { hasOptionalMissingPluginManifestFile } from "./installed-plugin-index-manifest.js";

1011

import { loadInstalledPluginIndexInstallRecordsSync } from "./installed-plugin-index-record-reader.js";

12+

import { resolveInstalledPluginIndexStorePath } from "./installed-plugin-index-store-path.js";

1113

import {

1214

inspectPersistedInstalledPluginIndex,

1315

readPersistedInstalledPluginIndexSync,

@@ -27,6 +29,7 @@ import {

2729

type LoadInstalledPluginIndexParams,

2830

type RefreshInstalledPluginIndexParams,

2931

} from "./installed-plugin-index.js";

32+

import { registerPluginMetadataProcessMemoLifecycleClear } from "./plugin-metadata-lifecycle.js";

3033

import type { PluginRegistrySnapshotSource } from "./plugin-registry-snapshot.types.js";

31343235

export type PluginRegistrySnapshot = InstalledPluginIndex;

@@ -53,6 +56,35 @@ export type PluginRegistrySnapshotResult = {

5356

};

54575558

export const DISABLE_PERSISTED_PLUGIN_REGISTRY_ENV = "OPENCLAW_DISABLE_PERSISTED_PLUGIN_REGISTRY";

59+

const MAX_PLUGIN_REGISTRY_SNAPSHOT_MEMOS = 8;

60+

const REGISTRY_SNAPSHOT_MEMO_ENV_KEYS = [

61+

"APPDATA",

62+

"HOME",

63+

"OPENCLAW_BUNDLED_PLUGINS_DIR",

64+

"OPENCLAW_COMPATIBILITY_HOST_VERSION",

65+

"OPENCLAW_CONFIG_PATH",

66+

"OPENCLAW_DISABLE_BUNDLED_PLUGINS",

67+

"OPENCLAW_DISABLE_BUNDLED_SOURCE_OVERLAYS",

68+

DISABLE_PERSISTED_PLUGIN_REGISTRY_ENV,

69+

"OPENCLAW_HOME",

70+

"OPENCLAW_NIX_MODE",

71+

"OPENCLAW_STATE_DIR",

72+

"USERPROFILE",

73+

"XDG_CONFIG_HOME",

74+

] as const;

75+76+

type PluginRegistrySnapshotMemo = {

77+

key: string;

78+

result: PluginRegistrySnapshotResult;

79+

};

80+81+

let pluginRegistrySnapshotMemos: PluginRegistrySnapshotMemo[] = [];

82+83+

function clearLoadPluginRegistrySnapshotMemo(): void {

84+

pluginRegistrySnapshotMemos = [];

85+

}

86+87+

registerPluginMetadataProcessMemoLifecycleClear(clearLoadPluginRegistrySnapshotMemo);

56885789

function formatDeprecatedPersistedRegistryDisableWarning(): string {

5890

return `${DISABLE_PERSISTED_PLUGIN_REGISTRY_ENV} is a deprecated break-glass compatibility switch; use \`openclaw plugins registry --refresh\` or \`openclaw doctor --fix\` to repair registry state.`;

@@ -73,6 +105,96 @@ function hasEnvFlag(env: NodeJS.ProcessEnv, name: string): boolean {

73105

return Boolean(value && value !== "0" && value !== "false" && value !== "no");

74106

}

75107108+

function pickRegistrySnapshotMemoEnv(env: NodeJS.ProcessEnv): Record<string, string> {

109+

return Object.fromEntries(

110+

REGISTRY_SNAPSHOT_MEMO_ENV_KEYS.flatMap((key) => {

111+

const value = env[key];

112+

return value === undefined ? [] : [[key, value]];

113+

}),

114+

);

115+

}

116+117+

function canMemoizePluginRegistrySnapshot(params: LoadPluginRegistryParams): boolean {

118+

return (

119+

params.index === undefined &&

120+

params.candidates === undefined &&

121+

params.diagnostics === undefined &&

122+

params.discovery === undefined &&

123+

params.installRecords === undefined &&

124+

params.now === undefined &&

125+

params.filePath === undefined &&

126+

params.pluginIndexFilePath === undefined

127+

);

128+

}

129+130+

function resolvePluginRegistrySnapshotMemoKey(

131+

params: LoadPluginRegistryParams,

132+

env: NodeJS.ProcessEnv,

133+

): string | undefined {

134+

if (!canMemoizePluginRegistrySnapshot(params)) {

135+

return undefined;

136+

}

137+

return hashJson({

138+

config: params.config ?? null,

139+

cwd: process.cwd(),

140+

env: pickRegistrySnapshotMemoEnv(env),

141+

hostContractVersion: resolveCompatibilityHostVersion(env),

142+

preferPersisted: params.preferPersisted ?? null,

143+

// Plugin manifests are process-stable inside the Gateway, while the persisted

144+

// registry envelope can change through explicit refresh/install flows.

145+

registryFile: fileFingerprint(

146+

resolveInstalledPluginIndexStorePath({

147+

env,

148+

...(params.stateDir ? { stateDir: params.stateDir } : {}),

149+

}),

150+

),

151+

stateDir: params.stateDir ? resolveUserPath(params.stateDir, env) : null,

152+

workspaceDir: params.workspaceDir ? resolveUserPath(params.workspaceDir, env) : null,

153+

});

154+

}

155+156+

function fileFingerprint(filePath: string): unknown {

157+

try {

158+

const stat = fs.statSync(filePath, { bigint: true });

159+

const kind = stat.isFile() ? "file" : stat.isDirectory() ? "dir" : "other";

160+

return [filePath, kind, stat.size.toString(), stat.mtimeNs.toString(), stat.ctimeNs.toString()];

161+

} catch {

162+

return [filePath, "missing"];

163+

}

164+

}

165+166+

function findPluginRegistrySnapshotMemo(

167+

key: string | undefined,

168+

): PluginRegistrySnapshotResult | undefined {

169+

if (!key) {

170+

return undefined;

171+

}

172+

const index = pluginRegistrySnapshotMemos.findIndex((memo) => memo.key === key);

173+

if (index === -1) {

174+

return undefined;

175+

}

176+

const [memo] = pluginRegistrySnapshotMemos.splice(index, 1);

177+

if (!memo) {

178+

return undefined;

179+

}

180+

pluginRegistrySnapshotMemos.unshift(memo);

181+

return memo.result;

182+

}

183+184+

function rememberPluginRegistrySnapshotMemo(

185+

key: string | undefined,

186+

result: PluginRegistrySnapshotResult,

187+

): PluginRegistrySnapshotResult {

188+

if (!key) {

189+

return result;

190+

}

191+

pluginRegistrySnapshotMemos = [

192+

{ key, result },

193+

...pluginRegistrySnapshotMemos.filter((memo) => memo.key !== key),

194+

].slice(0, MAX_PLUGIN_REGISTRY_SNAPSHOT_MEMOS);

195+

return result;

196+

}

197+76198

function canReuseCurrentPluginMetadataSnapshot(params: LoadPluginRegistryParams): boolean {

77199

return (

78200

params.preferPersisted !== false &&

@@ -288,6 +410,11 @@ export function loadPluginRegistrySnapshotWithMetadata(

288410

}

289411290412

const env = params.env ?? process.env;

413+

const memoKey = resolvePluginRegistrySnapshotMemoKey(params, env);

414+

const memo = findPluginRegistrySnapshotMemo(memoKey);

415+

if (memo) {

416+

return memo;

417+

}

291418

const diagnostics: PluginRegistrySnapshotDiagnostic[] = [];

292419

const disabledByCaller = params.preferPersisted === false;

293420

const disabledByEnv = hasEnvFlag(env, DISABLE_PERSISTED_PLUGIN_REGISTRY_ENV);

@@ -354,7 +481,7 @@ export function loadPluginRegistrySnapshotWithMetadata(

354481

source: "persisted",

355482

diagnostics,

356483

};

357-

return persistedResult;

484+

return rememberPluginRegistrySnapshotMemo(memoKey, persistedResult);

358485

}

359486

} else if (persistedReadsEnabled) {

360487

diagnostics.push({

@@ -379,12 +506,12 @@ export function loadPluginRegistrySnapshotWithMetadata(

379506

? params.installRecords

380507

: (params.installRecords ?? {}),

381508

});

382-

return {

509+

return rememberPluginRegistrySnapshotMemo(memoKey, {

383510

snapshot: derived.index,

384511

source: "derived",

385512

diagnostics,

386513

discovery: derived.discovery,

387-

};

514+

});

388515

}

389516390517

function resolveSnapshot(params: LoadPluginRegistryParams = {}): PluginRegistrySnapshot {