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

推荐订阅源

宝玉的分享
宝玉的分享
J
Java Code Geeks
S
SegmentFault 最新的问题
L
LangChain Blog
M
MIT News - Artificial intelligence
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
MongoDB | Blog
MongoDB | Blog
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
H
Help Net Security
阮一峰的网络日志
阮一峰的网络日志
Jina AI
Jina AI
N
Netflix TechBlog - Medium
A
About on SuperTechFans
博客园 - 叶小钗
美团技术团队
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net

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 package realpaths (#86517) · openclaw/...
steipete · 2026-05-25 · via Recent Commits to openclaw:main

@@ -17,7 +17,7 @@ import {

1717

type PackageManifest,

1818

type PluginPackageChannel,

1919

} from "./manifest.js";

20-

import { isPathInsideWithRealpath, safeRealpathSync } from "./path-safety.js";

20+

import { isPathInside, safeRealpathSync } from "./path-safety.js";

2121

import { tracePluginLifecyclePhase } from "./plugin-lifecycle-trace.js";

2222

import {

2323

normalizePluginDependencySpecs,

@@ -33,18 +33,22 @@ function isRelativePathInsideOrEqual(relativePath: string): boolean {

3333

);

3434

}

353536-

function resolvePackageJsonPath(record: InstalledPluginIndexRecord): string | undefined {

36+

function resolvePackageJsonPath(

37+

record: InstalledPluginIndexRecord,

38+

realpathCache: Map<string, string>,

39+

): string | undefined {

3740

if (!record.packageJson?.path) {

3841

return undefined;

3942

}

4043

const rootDir = resolveInstalledPluginRootDir(record);

41-

const realRootDir = safeRealpathSync(rootDir) ?? path.resolve(rootDir);

44+

const realRootDir = safeRealpathSync(rootDir, realpathCache) ?? path.resolve(rootDir);

4245

const packageJsonPath = path.resolve(realRootDir, record.packageJson.path);

4346

const relative = path.relative(realRootDir, packageJsonPath);

4447

if (!isRelativePathInsideOrEqual(relative)) {

4548

return undefined;

4649

}

47-

if (!isPathInsideWithRealpath(realRootDir, packageJsonPath)) {

50+

const packageJsonRealPath = safeRealpathSync(packageJsonPath, realpathCache);

51+

if (!packageJsonRealPath || !isPathInside(realRootDir, packageJsonRealPath)) {

4852

return undefined;

4953

}

5054

return packageJsonPath;

@@ -63,6 +67,7 @@ function safeFileSignature(filePath: string | undefined): string | undefined {

6367

}

64686569

function buildInstalledManifestRegistryIndexKey(index: InstalledPluginIndex) {

70+

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

6671

return {

6772

version: index.version,

6873

hostContractVersion: index.hostContractVersion,

@@ -72,7 +77,7 @@ function buildInstalledManifestRegistryIndexKey(index: InstalledPluginIndex) {

7277

installRecords: index.installRecords,

7378

diagnostics: index.diagnostics,

7479

plugins: index.plugins.map((record) => {

75-

const packageJsonPath = resolvePackageJsonPath(record);

80+

const packageJsonPath = resolvePackageJsonPath(record, realpathCache);

7681

return {

7782

pluginId: record.pluginId,

7883

packageName: record.packageName,

@@ -359,7 +364,10 @@ function normalizePersistedPackageChannel(value: unknown): PluginPackageChannel

359364

return channel;

360365

}

361366362-

function resolveInstalledPackageMetadata(record: InstalledPluginIndexRecord): {

367+

function resolveInstalledPackageMetadata(

368+

record: InstalledPluginIndexRecord,

369+

realpathCache: Map<string, string>,

370+

): {

363371

packageManifest?: OpenClawPackageManifest;

364372

packageDependencies?: PluginDependencySpecMap;

365373

packageOptionalDependencies?: PluginDependencySpecMap;

@@ -370,7 +378,9 @@ function resolveInstalledPackageMetadata(record: InstalledPluginIndexRecord): {

370378

channel: recordPackageChannel,

371379

}

372380

: undefined;

373-

const packageJsonPath = record.packageJson?.path ? resolvePackageJsonPath(record) : undefined;

381+

const packageJsonPath = record.packageJson?.path

382+

? resolvePackageJsonPath(record, realpathCache)

383+

: undefined;

374384

if (!packageJsonPath) {

375385

return fallbackPackageManifest ? { packageManifest: fallbackPackageManifest } : {};

376386

}

@@ -409,9 +419,12 @@ function resolveInstalledPackageMetadata(record: InstalledPluginIndexRecord): {

409419

return fallbackPackageManifest ? { packageManifest: fallbackPackageManifest } : {};

410420

}

411421412-

function toPluginCandidate(record: InstalledPluginIndexRecord): PluginCandidate {

422+

function toPluginCandidate(

423+

record: InstalledPluginIndexRecord,

424+

realpathCache: Map<string, string>,

425+

): PluginCandidate {

413426

const rootDir = resolveInstalledPluginRootDir(record);

414-

const packageMetadata = resolveInstalledPackageMetadata(record);

427+

const packageMetadata = resolveInstalledPackageMetadata(record, realpathCache);

415428

return {

416429

idHint: record.pluginId,

417430

source: record.source ?? resolveFallbackPluginSource(record),

@@ -452,6 +465,7 @@ export function loadPluginManifestRegistryForInstalledIndex(params: {

452465

}

453466

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

454467

const pluginIdSet = params.pluginIds?.length ? new Set(params.pluginIds) : null;

468+

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

455469

const diagnostics = pluginIdSet

456470

? params.index.diagnostics.filter((diagnostic) => {

457471

const pluginId = diagnostic.pluginId;

@@ -461,7 +475,7 @@ export function loadPluginManifestRegistryForInstalledIndex(params: {

461475

const candidates = params.index.plugins

462476

.filter((plugin) => params.includeDisabled || plugin.enabled)

463477

.filter((plugin) => !pluginIdSet || pluginIdSet.has(plugin.pluginId))

464-

.map(toPluginCandidate);

478+

.map((plugin) => toPluginCandidate(plugin, realpathCache));

465479

return loadPluginManifestRegistry({

466480

config: params.config,

467481

workspaceDir: params.workspaceDir,