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

推荐订阅源

GbyAI
GbyAI
Y
Y Combinator Blog
F
Fortinet All Blogs
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
T
The Blog of Author Tim Ferriss
D
DataBreaches.Net
量子位
博客园 - 三生石上(FineUI控件)
I
InfoQ
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿
D
Docker
美团技术团队
雷峰网
雷峰网
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理

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(plugins): cache manifest metadata loads · openclaw/o...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -33,6 +33,20 @@ import type { PluginKind } from "./plugin-kind.types.js";

3333

export const PLUGIN_MANIFEST_FILENAME = "openclaw.plugin.json";

3434

export const PLUGIN_MANIFEST_FILENAMES = [PLUGIN_MANIFEST_FILENAME] as const;

3535

export const MAX_PLUGIN_MANIFEST_BYTES = 256 * 1024;

36+

const MAX_PLUGIN_MANIFEST_LOAD_CACHE_ENTRIES = 512;

37+38+

type PluginManifestLoadCacheEntry = {

39+

result: PluginManifestLoadResult;

40+

size: number;

41+

mtimeMs: number;

42+

ctimeMs: number;

43+

};

44+45+

const pluginManifestLoadCache = new Map<string, PluginManifestLoadCacheEntry>();

46+47+

export function clearPluginManifestLoadCache(): void {

48+

pluginManifestLoadCache.clear();

49+

}

36503751

export type PluginManifestChannelConfig = {

3852

schema: JsonSchemaObject;

@@ -1148,6 +1162,62 @@ export function resolvePluginManifestPath(rootDir: string): string {

11481162

return path.join(rootDir, PLUGIN_MANIFEST_FILENAME);

11491163

}

115011641165+

function buildPluginManifestLoadCacheKey(params: {

1166+

manifestPath: string;

1167+

rejectHardlinks: boolean;

1168+

rootRealPath?: string;

1169+

stats: fs.Stats;

1170+

}): string {

1171+

return JSON.stringify([

1172+

path.resolve(params.manifestPath),

1173+

params.rejectHardlinks,

1174+

params.rootRealPath ?? "",

1175+

params.stats.dev,

1176+

params.stats.ino,

1177+

params.stats.size,

1178+

params.stats.mtimeMs,

1179+

params.stats.ctimeMs,

1180+

]);

1181+

}

1182+1183+

function getCachedPluginManifestLoadResult(

1184+

key: string,

1185+

stats: fs.Stats,

1186+

): PluginManifestLoadResult | undefined {

1187+

const entry = pluginManifestLoadCache.get(key);

1188+

if (

1189+

!entry ||

1190+

entry.size !== stats.size ||

1191+

entry.mtimeMs !== stats.mtimeMs ||

1192+

entry.ctimeMs !== stats.ctimeMs

1193+

) {

1194+

return undefined;

1195+

}

1196+

pluginManifestLoadCache.delete(key);

1197+

pluginManifestLoadCache.set(key, entry);

1198+

return entry.result;

1199+

}

1200+1201+

function setCachedPluginManifestLoadResult(

1202+

key: string,

1203+

stats: fs.Stats,

1204+

result: PluginManifestLoadResult,

1205+

): void {

1206+

pluginManifestLoadCache.set(key, {

1207+

result,

1208+

size: stats.size,

1209+

mtimeMs: stats.mtimeMs,

1210+

ctimeMs: stats.ctimeMs,

1211+

});

1212+

if (pluginManifestLoadCache.size <= MAX_PLUGIN_MANIFEST_LOAD_CACHE_ENTRIES) {

1213+

return;

1214+

}

1215+

const oldestKey = pluginManifestLoadCache.keys().next().value;

1216+

if (typeof oldestKey === "string") {

1217+

pluginManifestLoadCache.delete(oldestKey);

1218+

}

1219+

}

1220+11511221

function parsePluginKind(raw: unknown): PluginKind | PluginKind[] | undefined {

11521222

if (typeof raw === "string") {

11531223

return raw as PluginKind;

@@ -1186,28 +1256,44 @@ export function loadPluginManifest(

11861256

}),

11871257

});

11881258

}

1259+

const stats = opened.stat;

1260+

const cacheKey = buildPluginManifestLoadCacheKey({

1261+

manifestPath,

1262+

rejectHardlinks,

1263+

...(rootRealPath !== undefined ? { rootRealPath } : {}),

1264+

stats,

1265+

});

1266+

const cached = getCachedPluginManifestLoadResult(cacheKey, stats);

1267+

if (cached) {

1268+

fs.closeSync(opened.fd);

1269+

return cached;

1270+

}

1271+

const cacheResult = (result: PluginManifestLoadResult): PluginManifestLoadResult => {

1272+

setCachedPluginManifestLoadResult(cacheKey, stats, result);

1273+

return result;

1274+

};

11891275

let raw: unknown;

11901276

try {

11911277

raw = parseJsonWithJson5Fallback(fs.readFileSync(opened.fd, "utf-8"));

11921278

} catch (err) {

1193-

return {

1279+

return cacheResult({

11941280

ok: false,

11951281

error: `failed to parse plugin manifest: ${String(err)}`,

11961282

manifestPath,

1197-

};

1283+

});

11981284

} finally {

11991285

fs.closeSync(opened.fd);

12001286

}

12011287

if (!isRecord(raw)) {

1202-

return { ok: false, error: "plugin manifest must be an object", manifestPath };

1288+

return cacheResult({ ok: false, error: "plugin manifest must be an object", manifestPath });

12031289

}

12041290

const id = normalizeOptionalString(raw.id) ?? "";

12051291

if (!id) {

1206-

return { ok: false, error: "plugin manifest requires id", manifestPath };

1292+

return cacheResult({ ok: false, error: "plugin manifest requires id", manifestPath });

12071293

}

12081294

const configSchema = isRecord(raw.configSchema) ? raw.configSchema : null;

12091295

if (!configSchema) {

1210-

return { ok: false, error: "plugin manifest requires configSchema", manifestPath };

1296+

return cacheResult({ ok: false, error: "plugin manifest requires configSchema", manifestPath });

12111297

}

1212129812131299

const kind = parsePluginKind(raw.kind);

@@ -1260,7 +1346,7 @@ export function loadPluginManifest(

12601346

uiHints = raw.uiHints as Record<string, PluginConfigUiHint>;

12611347

}

126213481263-

return {

1349+

return cacheResult({

12641350

ok: true,

12651351

manifest: {

12661352

id,

@@ -1302,7 +1388,7 @@ export function loadPluginManifest(

13021388

channelConfigs,

13031389

},

13041390

manifestPath,

1305-

};

1391+

});

13061392

}

1307139313081394

// package.json "openclaw" metadata (used for setup/catalog)