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

推荐订阅源

U
Unit 42
罗磊的独立博客
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美
Stack Overflow Blog
Stack Overflow Blog
F
Fortinet All Blogs
A
About on SuperTechFans
腾讯CDC
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog RSS Feed
IT之家
IT之家
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
C
Check Point Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
月光博客
月光博客
T
Tailwind CSS Blog
The Cloudflare 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): cache existence probes within bundle manif...
ml12580 · 2026-06-23 · via Recent Commits to openclaw:main
11

/** Reads Codex/Claude/Cursor bundle manifests into OpenClaw plugin manifest metadata. */

2-

import fs from "node:fs";

32

import path from "node:path";

43

import {

54

normalizeLowercaseStringOrEmpty,

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

1716

normalizeManifestActivation,

1817

PLUGIN_MANIFEST_FILENAME,

1918

} from "./manifest.js";

19+

import { pluginScanExistsSync } from "./plugin-scan-existence-cache.js";

20202121

/** Relative manifest path for Codex-style plugin bundles. */

2222

export const CODEX_BUNDLE_MANIFEST_RELATIVE_PATH = ".codex-plugin/plugin.json";

@@ -139,26 +139,26 @@ function resolveCodexSkillDirs(raw: Record<string, unknown>, rootDir: string): s

139139

if (declared.length > 0) {

140140

return declared;

141141

}

142-

return fs.existsSync(path.join(rootDir, "skills")) ? ["skills"] : [];

142+

return pluginScanExistsSync(path.join(rootDir, "skills")) ? ["skills"] : [];

143143

}

144144145145

function resolveCodexHookDirs(raw: Record<string, unknown>, rootDir: string): string[] {

146146

const declared = normalizeBundlePathList(raw.hooks);

147147

if (declared.length > 0) {

148148

return declared;

149149

}

150-

return fs.existsSync(path.join(rootDir, "hooks")) ? ["hooks"] : [];

150+

return pluginScanExistsSync(path.join(rootDir, "hooks")) ? ["hooks"] : [];

151151

}

152152153153

function resolveCursorSkillsRootDirs(raw: Record<string, unknown>, rootDir: string): string[] {

154154

const declared = normalizeBundlePathList(raw.skills);

155-

const defaults = fs.existsSync(path.join(rootDir, "skills")) ? ["skills"] : [];

155+

const defaults = pluginScanExistsSync(path.join(rootDir, "skills")) ? ["skills"] : [];

156156

return mergeBundlePathLists(defaults, declared);

157157

}

158158159159

function resolveCursorCommandRootDirs(raw: Record<string, unknown>, rootDir: string): string[] {

160160

const declared = normalizeBundlePathList(raw.commands);

161-

const defaults = fs.existsSync(path.join(rootDir, ".cursor", "commands"))

161+

const defaults = pluginScanExistsSync(path.join(rootDir, ".cursor", "commands"))

162162

? [".cursor/commands"]

163163

: [];

164164

return mergeBundlePathLists(defaults, declared);

@@ -173,25 +173,31 @@ function resolveCursorSkillDirs(raw: Record<string, unknown>, rootDir: string):

173173174174

function resolveCursorAgentDirs(raw: Record<string, unknown>, rootDir: string): string[] {

175175

const declared = normalizeBundlePathList(raw.subagents ?? raw.agents);

176-

const defaults = fs.existsSync(path.join(rootDir, ".cursor", "agents")) ? [".cursor/agents"] : [];

176+

const defaults = pluginScanExistsSync(path.join(rootDir, ".cursor", "agents"))

177+

? [".cursor/agents"]

178+

: [];

177179

return mergeBundlePathLists(defaults, declared);

178180

}

179181180182

function hasCursorHookCapability(raw: Record<string, unknown>, rootDir: string): boolean {

181183

return (

182184

hasInlineCapabilityValue(raw.hooks) ||

183-

fs.existsSync(path.join(rootDir, ".cursor", "hooks.json"))

185+

pluginScanExistsSync(path.join(rootDir, ".cursor", "hooks.json"))

184186

);

185187

}

186188187189

function hasCursorRulesCapability(raw: Record<string, unknown>, rootDir: string): boolean {

188190

return (

189-

hasInlineCapabilityValue(raw.rules) || fs.existsSync(path.join(rootDir, ".cursor", "rules"))

191+

hasInlineCapabilityValue(raw.rules) ||

192+

pluginScanExistsSync(path.join(rootDir, ".cursor", "rules"))

190193

);

191194

}

192195193196

function hasCursorMcpCapability(raw: Record<string, unknown>, rootDir: string): boolean {

194-

return hasInlineCapabilityValue(raw.mcpServers) || fs.existsSync(path.join(rootDir, ".mcp.json"));

197+

return (

198+

hasInlineCapabilityValue(raw.mcpServers) ||

199+

pluginScanExistsSync(path.join(rootDir, ".mcp.json"))

200+

);

195201

}

196202197203

function resolveClaudeComponentPaths(

@@ -202,7 +208,7 @@ function resolveClaudeComponentPaths(

202208

): string[] {

203209

const declared = normalizeBundlePathList(raw[key]);

204210

const existingDefaults = defaults.filter((candidate) =>

205-

fs.existsSync(path.join(rootDir, candidate)),

211+

pluginScanExistsSync(path.join(rootDir, candidate)),

206212

);

207213

return mergeBundlePathLists(existingDefaults, declared);

208214

}

@@ -245,7 +251,7 @@ function resolveClaudeOutputStylePaths(raw: Record<string, unknown>, rootDir: st

245251

}

246252247253

function resolveClaudeSettingsFiles(_raw: Record<string, unknown>, rootDir: string): string[] {

248-

return fs.existsSync(path.join(rootDir, "settings.json")) ? ["settings.json"] : [];

254+

return pluginScanExistsSync(path.join(rootDir, "settings.json")) ? ["settings.json"] : [];

249255

}

250256251257

function hasClaudeHookCapability(raw: Record<string, unknown>, rootDir: string): boolean {

@@ -260,10 +266,13 @@ function buildCodexCapabilities(raw: Record<string, unknown>, rootDir: string):

260266

if (resolveCodexHookDirs(raw, rootDir).length > 0) {

261267

capabilities.push("hooks");

262268

}

263-

if (hasInlineCapabilityValue(raw.mcpServers) || fs.existsSync(path.join(rootDir, ".mcp.json"))) {

269+

if (

270+

hasInlineCapabilityValue(raw.mcpServers) ||

271+

pluginScanExistsSync(path.join(rootDir, ".mcp.json"))

272+

) {

264273

capabilities.push("mcpServers");

265274

}

266-

if (hasInlineCapabilityValue(raw.apps) || fs.existsSync(path.join(rootDir, ".app.json"))) {

275+

if (hasInlineCapabilityValue(raw.apps) || pluginScanExistsSync(path.join(rootDir, ".app.json"))) {

267276

capabilities.push("apps");

268277

}

269278

return capabilities;

@@ -416,21 +425,21 @@ export function loadBundleManifest(params: {

416425

}

417426418427

export function detectBundleManifestFormat(rootDir: string): PluginBundleFormat | null {

419-

if (fs.existsSync(path.join(rootDir, CODEX_BUNDLE_MANIFEST_RELATIVE_PATH))) {

428+

if (pluginScanExistsSync(path.join(rootDir, CODEX_BUNDLE_MANIFEST_RELATIVE_PATH))) {

420429

return "codex";

421430

}

422-

if (fs.existsSync(path.join(rootDir, CURSOR_BUNDLE_MANIFEST_RELATIVE_PATH))) {

431+

if (pluginScanExistsSync(path.join(rootDir, CURSOR_BUNDLE_MANIFEST_RELATIVE_PATH))) {

423432

return "cursor";

424433

}

425-

if (fs.existsSync(path.join(rootDir, CLAUDE_BUNDLE_MANIFEST_RELATIVE_PATH))) {

434+

if (pluginScanExistsSync(path.join(rootDir, CLAUDE_BUNDLE_MANIFEST_RELATIVE_PATH))) {

426435

return "claude";

427436

}

428-

if (fs.existsSync(path.join(rootDir, PLUGIN_MANIFEST_FILENAME))) {

437+

if (pluginScanExistsSync(path.join(rootDir, PLUGIN_MANIFEST_FILENAME))) {

429438

return null;

430439

}

431440

if (

432441

DEFAULT_PLUGIN_ENTRY_CANDIDATES.some((candidate) =>

433-

fs.existsSync(path.join(rootDir, candidate)),

442+

pluginScanExistsSync(path.join(rootDir, candidate)),

434443

)

435444

) {

436445

return null;

@@ -444,7 +453,7 @@ export function detectBundleManifestFormat(rootDir: string): PluginBundleFormat

444453

path.join(rootDir, ".lsp.json"),

445454

path.join(rootDir, "settings.json"),

446455

];

447-

if (manifestlessClaudeMarkers.some((candidate) => fs.existsSync(candidate))) {

456+

if (manifestlessClaudeMarkers.some((candidate) => pluginScanExistsSync(candidate))) {

448457

return "claude";

449458

}

450459

return null;