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

推荐订阅源

Google DeepMind News
Google DeepMind News
爱范儿
爱范儿
J
Java Code Geeks
L
LangChain Blog
V
V2EX
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
博客园 - Franky
Microsoft Azure Blog
Microsoft Azure Blog
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
博客园 - 司徒正美
B
Blog
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
Engineering at Meta
Engineering at Meta
MyScale Blog
MyScale Blog
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - 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
perf(plugins): scan-scoped package.json cache in discover...
RomneyDa · 2026-05-20 · via Recent Commits to openclaw:main

@@ -73,6 +73,7 @@ export type PluginCandidate = {

7373

packageOptionalDependencies?: PluginDependencySpecMap;

7474

bundledManifest?: PluginManifest;

7575

bundledManifestPath?: string;

76+

rawPackageManifest?: PackageManifest;

7677

};

77787879

export type PluginDiscoveryResult = {

@@ -504,11 +505,25 @@ function readCandidatePackageManifest(params: {

504505

origin: PluginOrigin;

505506

rejectHardlinks: boolean;

506507

rootRealPath?: string;

508+

packageManifestCache?: Map<string, PackageManifest | null>;

507509

}): PackageManifest | null {

508-

if (params.origin === "bundled") {

509-

return readTrustedPackageManifest(params.dir);

510+

const trustMode =

511+

params.origin === "bundled"

512+

? "trusted"

513+

: params.rejectHardlinks

514+

? "external-reject"

515+

: "external-allow";

516+

const cacheKey = `${trustMode}:${params.rootRealPath ?? path.resolve(params.dir)}`;

517+

const cached = params.packageManifestCache?.get(cacheKey);

518+

if (cached !== undefined) {

519+

return cached;

510520

}

511-

return readPackageManifest(params.dir, params.rejectHardlinks, params.rootRealPath);

521+

const manifest =

522+

params.origin === "bundled"

523+

? readTrustedPackageManifest(params.dir)

524+

: readPackageManifest(params.dir, params.rejectHardlinks, params.rootRealPath);

525+

params.packageManifestCache?.set(cacheKey, manifest);

526+

return manifest;

512527

}

513528514529

function deriveIdHint(params: {

@@ -657,6 +672,7 @@ function addCandidate(params: {

657672

packageManifest: getPackageManifestMetadata(manifest ?? undefined),

658673

packageDependencies: packageDependencies.dependencies,

659674

packageOptionalDependencies: packageDependencies.optionalDependencies,

675+

rawPackageManifest: manifest ?? undefined,

660676

bundledManifest: params.bundledManifest,

661677

bundledManifestPath: params.bundledManifestPath,

662678

});

@@ -748,6 +764,7 @@ function discoverInDirectory(params: {

748764

diagnostics: PluginDiagnostic[];

749765

seen: Set<string>;

750766

realpathCache: Map<string, string>;

767+

packageManifestCache?: Map<string, PackageManifest | null>;

751768

recurseDirectories?: boolean;

752769

skipDirectories?: Set<string>;

753770

visitedDirectories?: Set<string>;

@@ -830,6 +847,7 @@ function discoverInDirectory(params: {

830847

origin: params.origin,

831848

rejectHardlinks,

832849

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

850+

packageManifestCache: params.packageManifestCache,

833851

});

834852

const extensionResolution = resolvePackageExtensionEntries(manifest ?? undefined);

835853

if (

@@ -1016,6 +1034,7 @@ function discoverFromPath(params: {

10161034

diagnostics: PluginDiagnostic[];

10171035

seen: Set<string>;

10181036

realpathCache: Map<string, string>;

1037+

packageManifestCache?: Map<string, PackageManifest | null>;

10191038

}) {

10201039

const resolved = resolveUserPath(params.rawPath, params.env);

10211040

if (!fs.existsSync(resolved)) {

@@ -1073,6 +1092,7 @@ function discoverFromPath(params: {

10731092

origin: params.origin,

10741093

rejectHardlinks,

10751094

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

1095+

packageManifestCache: params.packageManifestCache,

10761096

});

10771097

const extensionResolution = resolvePackageExtensionEntries(manifest ?? undefined);

10781098

if (

@@ -1193,6 +1213,7 @@ function discoverFromPath(params: {

11931213

diagnostics: params.diagnostics,

11941214

seen: params.seen,

11951215

realpathCache: params.realpathCache,

1216+

packageManifestCache: params.packageManifestCache,

11961217

...(params.requireBuiltRuntimeEntry !== undefined

11971218

? { requireBuiltRuntimeEntry: params.requireBuiltRuntimeEntry }

11981219

: {}),

@@ -1220,6 +1241,7 @@ export function discoverOpenClawPlugins(params: {

12201241

const result = createDiscoveryResult();

12211242

const seen = new Set<string>();

12221243

const realpathCache = new Map<string, string>();

1244+

const packageManifestCache = new Map<string, PackageManifest | null>();

12231245

const extra = params.extraPaths ?? [];

12241246

for (const extraPath of extra) {

12251247

if (typeof extraPath !== "string") {

@@ -1251,6 +1273,7 @@ export function discoverOpenClawPlugins(params: {

12511273

diagnostics: result.diagnostics,

12521274

seen,

12531275

realpathCache,

1276+

packageManifestCache,

12541277

});

12551278

}

12561279

const workspaceMatchesBundledRoot = resolvesToSameDirectory(

@@ -1272,6 +1295,7 @@ export function discoverOpenClawPlugins(params: {

12721295

diagnostics: result.diagnostics,

12731296

seen,

12741297

realpathCache,

1298+

packageManifestCache,

12751299

});

12761300

}

12771301

return result;

@@ -1284,6 +1308,7 @@ export function discoverOpenClawPlugins(params: {

12841308

const result = createDiscoveryResult();

12851309

const seen = new Set<string>();

12861310

const realpathCache = new Map<string, string>();

1311+

const packageManifestCache = new Map<string, PackageManifest | null>();

12871312

for (const sourceOverlayDir of listBundledSourceOverlayDirs({

12881313

bundledRoot: roots.stock,

12891314

env,

@@ -1298,6 +1323,7 @@ export function discoverOpenClawPlugins(params: {

12981323

diagnostics: result.diagnostics,

12991324

seen,

13001325

realpathCache,

1326+

packageManifestCache,

13011327

});

13021328

result.diagnostics.push({

13031329

level: "warn",

@@ -1324,6 +1350,7 @@ export function discoverOpenClawPlugins(params: {

13241350

diagnostics: result.diagnostics,

13251351

seen,

13261352

realpathCache,

1353+

packageManifestCache,

13271354

});

13281355

}

13291356

const sourceCheckoutExtensionsDir = resolveBundledSourceCheckoutExtensionsDir(roots.stock);

@@ -1342,6 +1369,7 @@ export function discoverOpenClawPlugins(params: {

13421369

diagnostics: result.diagnostics,

13431370

seen,

13441371

realpathCache,

1372+

packageManifestCache,

13451373

skipDirectories: readChildDirectoryNames(roots.stock),

13461374

});

13471375

}

@@ -1364,6 +1392,7 @@ export function discoverOpenClawPlugins(params: {

13641392

diagnostics: result.diagnostics,

13651393

seen,

13661394

realpathCache,

1395+

packageManifestCache,

13671396

});

13681397

}

13691398

// Keep auto-discovered global extensions behind bundled plugins.

@@ -1379,6 +1408,7 @@ export function discoverOpenClawPlugins(params: {

13791408

diagnostics: result.diagnostics,

13801409

seen,

13811410

realpathCache,

1411+

packageManifestCache,

13821412

});

13831413

return result;

13841414

},