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

推荐订阅源

J
Java Code Geeks
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
MongoDB | Blog
MongoDB | Blog
Blog — PlanetScale
Blog — PlanetScale
腾讯CDC
U
Unit 42
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Apple Machine Learning Research
Apple Machine Learning Research
M
MIT News - Artificial intelligence
人人都是产品经理
人人都是产品经理
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
Recent Announcements
Recent Announcements
A
About on SuperTechFans
Stack Overflow Blog
Stack Overflow Blog
The GitHub Blog
The GitHub Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More

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
fix: prevent duplicate channel plugin tools · openclaw/op...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -219,27 +219,60 @@ function resolvePluginIdForConfiguredWebFetchProvider(

219219

});

220220

}

221221222-

function buildChannelToPluginIdMap(registry: PluginManifestRegistry): Map<string, string> {

223-

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

222+

function normalizeManifestChannelId(channelId: string): string {

223+

return normalizeChatChannelId(channelId) ?? channelId;

224+

}

225+226+

function getManifestChannelPreferOver(

227+

plugin: PluginManifestRecord,

228+

channelId: string,

229+

): readonly string[] {

230+

return plugin.channelConfigs?.[channelId]?.preferOver ?? [];

231+

}

232+233+

function collectPluginIdsForConfiguredChannel(

234+

channelId: string,

235+

registry: PluginManifestRegistry,

236+

): string[] {

237+

const normalizedChannelId = normalizeManifestChannelId(channelId);

238+

const builtInId = normalizeChatChannelId(normalizedChannelId);

239+

const claims: Array<{ plugin: PluginManifestRecord; preferOver: readonly string[] }> = [];

224240

for (const record of registry.plugins) {

225-

for (const channelId of record.channels ?? []) {

226-

if (channelId && !map.has(channelId)) {

227-

map.set(channelId, record.id);

228-

}

241+

if (

242+

(record.channels ?? []).some((id) => normalizeManifestChannelId(id) === normalizedChannelId)

243+

) {

244+

claims.push({

245+

plugin: record,

246+

preferOver: getManifestChannelPreferOver(record, normalizedChannelId),

247+

});

229248

}

230249

}

231-

return map;

232-

}

233250234-

function resolvePluginIdForChannel(

235-

channelId: string,

236-

channelToPluginId: ReadonlyMap<string, string>,

237-

): string {

238-

const builtInId = normalizeChatChannelId(channelId);

251+

if (claims.length === 0) {

252+

return [builtInId ?? normalizedChannelId];

253+

}

254+255+

const claimIds = new Set(claims.map((claim) => claim.plugin.id));

239256

if (builtInId) {

240-

return builtInId;

257+

claimIds.add(builtInId);

258+

}

259+

const preferredIds = new Set<string>();

260+

for (const claim of claims) {

261+

for (const preferredOverId of claim.preferOver) {

262+

if (claimIds.has(preferredOverId)) {

263+

// Keep both sides as candidates. The preferOver filter later disables

264+

// the lower-priority plugin unless the preferred plugin is explicitly

265+

// disabled/denied, preserving fallback to bundled channel support.

266+

preferredIds.add(claim.plugin.id);

267+

preferredIds.add(preferredOverId);

268+

}

269+

}

270+

}

271+272+

if (preferredIds.size > 0) {

273+

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

241274

}

242-

return channelToPluginId.get(channelId) ?? channelId;

275+

return [builtInId ?? claims[0]?.plugin.id ?? normalizedChannelId];

243276

}

244277245278

function collectCandidateChannelIds(cfg: OpenClawConfig, env: NodeJS.ProcessEnv): string[] {

@@ -389,9 +422,7 @@ function configMayNeedPluginManifestRegistry(cfg: OpenClawConfig, env: NodeJS.Pr

389422

if (key === "defaults" || key === "modelByChannel") {

390423

continue;

391424

}

392-

if (!normalizeChatChannelId(key)) {

393-

return true;

394-

}

425+

return true;

395426

}

396427

return false;

397428

}

@@ -459,11 +490,11 @@ export function resolveConfiguredPluginAutoEnableCandidates(params: {

459490

registry: PluginManifestRegistry;

460491

}): PluginAutoEnableCandidate[] {

461492

const changes: PluginAutoEnableCandidate[] = [];

462-

const channelToPluginId = buildChannelToPluginIdMap(params.registry);

463493

for (const channelId of collectCandidateChannelIds(params.config, params.env)) {

464-

const pluginId = resolvePluginIdForChannel(channelId, channelToPluginId);

465494

if (isChannelConfigured(params.config, channelId, params.env)) {

466-

changes.push({ pluginId, kind: "channel-configured", channelId });

495+

for (const pluginId of collectPluginIdsForConfiguredChannel(channelId, params.registry)) {

496+

changes.push({ pluginId, kind: "channel-configured", channelId });

497+

}

467498

}

468499

}

469500

@@ -582,6 +613,45 @@ function isPluginDenied(cfg: OpenClawConfig, pluginId: string): boolean {

582613

return Array.isArray(deny) && deny.includes(pluginId);

583614

}

584615616+

function isPluginExplicitlySelected(cfg: OpenClawConfig, pluginId: string): boolean {

617+

const allow = cfg.plugins?.allow;

618+

if (Array.isArray(allow) && allow.includes(pluginId)) {

619+

return true;

620+

}

621+

return hasMaterialPluginEntryConfig(cfg.plugins?.entries?.[pluginId]);

622+

}

623+624+

function disableImplicitPreferredOverPlugin(params: {

625+

config: OpenClawConfig;

626+

originalConfig: OpenClawConfig;

627+

pluginId: string;

628+

manifestRegistry: PluginManifestRegistry;

629+

}): OpenClawConfig {

630+

if (isPluginExplicitlySelected(params.originalConfig, params.pluginId)) {

631+

return params.config;

632+

}

633+

if (

634+

!normalizeChatChannelId(params.pluginId) &&

635+

!isKnownPluginId(params.pluginId, params.manifestRegistry)

636+

) {

637+

return params.config;

638+

}

639+

const existingEntry = params.config.plugins?.entries?.[params.pluginId];

640+

return {

641+

...params.config,

642+

plugins: {

643+

...params.config.plugins,

644+

entries: {

645+

...params.config.plugins?.entries,

646+

[params.pluginId]: {

647+

...(existingEntry && typeof existingEntry === "object" ? existingEntry : {}),

648+

enabled: false,

649+

},

650+

},

651+

},

652+

};

653+

}

654+585655

function isBuiltInChannelAlreadyEnabled(cfg: OpenClawConfig, channelId: string): boolean {

586656

const channels = cfg.channels as Record<string, unknown> | undefined;

587657

const channelConfig = channels?.[channelId];

@@ -753,6 +823,12 @@ export function materializePluginAutoEnableCandidatesInternal(params: {

753823

preferOverCache,

754824

})

755825

) {

826+

next = disableImplicitPreferredOverPlugin({

827+

config: next,

828+

originalConfig: params.config ?? {},

829+

pluginId: entry.pluginId,

830+

manifestRegistry: params.manifestRegistry,

831+

});

756832

continue;

757833

}

758834