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

推荐订阅源

U
Unit 42
T
The Blog of Author Tim Ferriss
H
Help Net Security
博客园 - 叶小钗
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net
博客园 - 聂微东
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
B
Blog
Engineering at Meta
Engineering at Meta
V
V2EX
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: scope plugin tool discovery to manifest tool owners...
shakkernerd · 2026-05-02 · via Recent Commits to openclaw:main

@@ -2,9 +2,11 @@ import { normalizeToolName } from "../agents/tool-policy.js";

22

import type { AnyAgentTool } from "../agents/tools/common.js";

33

import { createSubsystemLogger } from "../logging/subsystem.js";

44

import { applyTestPluginDefaults, normalizePluginsConfig } from "./config-state.js";

5-

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

65

import { resolveRuntimePluginRegistry, type PluginLoadOptions } from "./loader.js";

7-

import { loadPluginRegistrySnapshot } from "./plugin-registry-snapshot.js";

6+

import {

7+

isManifestPluginAvailableForControlPlane,

8+

loadManifestContractSnapshot,

9+

} from "./manifest-contract-eligibility.js";

810

import {

911

getActivePluginChannelRegistry,

1012

getActivePluginRegistry,

@@ -199,13 +201,54 @@ function describeMalformedPluginTool(tool: unknown): string | undefined {

199201

return undefined;

200202

}

201203202-

function addLoadedPluginIdsFromRegistry(

204+

function pluginToolNamesMatchAllowlist(params: {

205+

names: readonly string[];

206+

pluginId: string;

207+

optional: boolean;

208+

allowlist: Set<string>;

209+

}): boolean {

210+

if (params.allowlist.size === 0) {

211+

return !params.optional;

212+

}

213+

return isOptionalToolEntryPotentiallyAllowed(params);

214+

}

215+216+

function manifestToolContractMatchesAllowlist(params: {

217+

toolNames: readonly string[];

218+

pluginId: string;

219+

allowlist: Set<string>;

220+

}): boolean {

221+

if (params.toolNames.length === 0) {

222+

return false;

223+

}

224+

if (params.allowlist.size === 0) {

225+

return true;

226+

}

227+

if (params.allowlist.has("*") || params.allowlist.has("group:plugins")) {

228+

return true;

229+

}

230+

const pluginKey = normalizeToolName(params.pluginId);

231+

if (params.allowlist.has(pluginKey)) {

232+

return true;

233+

}

234+

return params.toolNames.some((name) => params.allowlist.has(normalizeToolName(name)));

235+

}

236+237+

function addToolPluginIdsFromRegistry(

203238

registry: ReturnType<typeof getActivePluginRegistry>,

204239

pluginIds: Set<string>,

240+

allowlist: Set<string>,

205241

): void {

206-

for (const plugin of registry?.plugins ?? []) {

207-

if (plugin.status === undefined || plugin.status === "loaded") {

208-

pluginIds.add(plugin.id);

242+

for (const entry of registry?.tools ?? []) {

243+

if (

244+

pluginToolNamesMatchAllowlist({

245+

names: entry.names,

246+

pluginId: entry.pluginId,

247+

optional: entry.optional,

248+

allowlist,

249+

})

250+

) {

251+

pluginIds.add(entry.pluginId);

209252

}

210253

}

211254

}

@@ -214,21 +257,38 @@ function resolvePluginToolRuntimePluginIds(params: {

214257

config: PluginLoadOptions["config"];

215258

workspaceDir?: string;

216259

env: NodeJS.ProcessEnv;

217-

}): string[] | undefined {

260+

toolAllowlist?: string[];

261+

}): string[] {

218262

const pluginIds = new Set<string>();

219-

addLoadedPluginIdsFromRegistry(getActivePluginChannelRegistry(), pluginIds);

220-

addLoadedPluginIdsFromRegistry(getActivePluginRegistry(), pluginIds);

221-

const index = loadPluginRegistrySnapshot({

263+

const allowlist = normalizeAllowlist(params.toolAllowlist);

264+

addToolPluginIdsFromRegistry(getActivePluginChannelRegistry(), pluginIds, allowlist);

265+

addToolPluginIdsFromRegistry(getActivePluginRegistry(), pluginIds, allowlist);

266+

const snapshot = loadManifestContractSnapshot({

222267

config: params.config,

223268

workspaceDir: params.workspaceDir,

224269

env: params.env,

225270

});

226-

for (const plugin of listEnabledInstalledPluginRecords(index, params.config)) {

227-

pluginIds.add(plugin.pluginId);

271+

for (const plugin of snapshot.plugins) {

272+

if (

273+

!isManifestPluginAvailableForControlPlane({

274+

snapshot,

275+

plugin,

276+

config: params.config,

277+

})

278+

) {

279+

continue;

280+

}

281+

if (

282+

manifestToolContractMatchesAllowlist({

283+

toolNames: plugin.contracts?.tools ?? [],

284+

pluginId: plugin.id,

285+

allowlist,

286+

})

287+

) {

288+

pluginIds.add(plugin.id);

289+

}

228290

}

229-

return pluginIds.size > 0

230-

? [...pluginIds].toSorted((left, right) => left.localeCompare(right))

231-

: undefined;

291+

return [...pluginIds].toSorted((left, right) => left.localeCompare(right));

232292

}

233293234294

function registryContainsPluginIds(

@@ -238,8 +298,11 @@ function registryContainsPluginIds(

238298

if (!registry || pluginIds === undefined) {

239299

return false;

240300

}

241-

const loadedPluginIds = new Set<string>();

242-

addLoadedPluginIdsFromRegistry(registry, loadedPluginIds);

301+

const loadedPluginIds = new Set(

302+

(registry.plugins ?? [])

303+

.filter((plugin) => plugin.status === undefined || plugin.status === "loaded")

304+

.map((plugin) => plugin.id),

305+

);

243306

return pluginIds.every((pluginId) => loadedPluginIds.has(pluginId));

244307

}

245308

@@ -291,6 +354,7 @@ export function resolvePluginTools(params: {

291354

config: context.config,

292355

workspaceDir: context.workspaceDir,

293356

env,

357+

toolAllowlist: params.toolAllowlist,

294358

});

295359

const loadOptions = buildPluginRuntimeLoadOptions(context, {

296360

activate: false,

@@ -335,10 +399,10 @@ export function resolvePluginTools(params: {

335399

}

336400

const declaredNames = entry.names ?? [];

337401

if (

338-

entry.optional &&

339-

!isOptionalToolEntryPotentiallyAllowed({

402+

!pluginToolNamesMatchAllowlist({

340403

names: declaredNames,

341404

pluginId: entry.pluginId,

405+

optional: entry.optional,

342406

allowlist,

343407

})

344408

) {