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

推荐订阅源

WordPress大学
WordPress大学
H
Help Net Security
Jina AI
Jina AI
V
V2EX
G
Google Developers Blog
B
Blog
GbyAI
GbyAI
U
Unit 42
爱范儿
爱范儿
腾讯CDC
Engineering at Meta
Engineering at Meta
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
小众软件
小众软件
D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
博客园 - 聂微东
The Cloudflare Blog
I
InfoQ
Microsoft Azure Blog
Microsoft Azure 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
fix: repair stale configured channel plugins · openclaw/o...
steipete · 2026-05-03 · via Recent Commits to openclaw:main

@@ -20,6 +20,7 @@ import {

2020

resolveOfficialExternalPluginInstall,

2121

resolveOfficialExternalPluginLabel,

2222

} from "../../../plugins/official-external-plugin-catalog.js";

23+

import type { PluginMetadataSnapshot } from "../../../plugins/plugin-metadata-snapshot.types.js";

2324

import { resolveProviderInstallCatalogEntries } from "../../../plugins/provider-install-catalog.js";

2425

import { updateNpmInstalledPlugins } from "../../../plugins/update.js";

2526

import { resolveWebSearchInstallCatalogEntry } from "../../../plugins/web-search-install-catalog.js";

@@ -48,6 +49,8 @@ const RUNTIME_PLUGIN_INSTALL_CANDIDATES: readonly DownloadableInstallCandidate[]

4849

},

4950

];

505152+

const MISSING_CHANNEL_CONFIG_DESCRIPTOR_DIAGNOSTIC = "without channelConfigs metadata";

53+5154

function shouldFallbackClawHubToNpm(result: { ok: false; code?: string }): boolean {

5255

return (

5356

result.code === CLAWHUB_INSTALL_ERROR_CODE.PACKAGE_NOT_FOUND ||

@@ -264,6 +267,29 @@ function collectDownloadableInstallCandidates(params: {

264267

);

265268

}

266269270+

function collectConfiguredPluginIdsWithMissingChannelConfigDescriptors(params: {

271+

snapshot: PluginMetadataSnapshot;

272+

configuredPluginIds: ReadonlySet<string>;

273+

configuredChannelIds: ReadonlySet<string>;

274+

}): Set<string> {

275+

const stalePluginIds = new Set<string>();

276+

const pluginsById = new Map(params.snapshot.plugins.map((plugin) => [plugin.id, plugin]));

277+

for (const diagnostic of params.snapshot.diagnostics) {

278+

const pluginId = diagnostic.pluginId?.trim();

279+

if (!pluginId || !diagnostic.message.includes(MISSING_CHANNEL_CONFIG_DESCRIPTOR_DIAGNOSTIC)) {

280+

continue;

281+

}

282+

const plugin = pluginsById.get(pluginId);

283+

const ownsConfiguredChannel = plugin?.channels.some((channelId) =>

284+

params.configuredChannelIds.has(channelId),

285+

);

286+

if (params.configuredPluginIds.has(pluginId) || ownsConfiguredChannel) {

287+

stalePluginIds.add(pluginId);

288+

}

289+

}

290+

return stalePluginIds;

291+

}

292+267293

async function installCandidate(params: {

268294

candidate: DownloadableInstallCandidate;

269295

records: Record<string, PluginInstallRecord>;

@@ -405,15 +431,22 @@ async function repairMissingPluginInstalls(params: {

405431

env?: NodeJS.ProcessEnv;

406432

}): Promise<{ changes: string[]; warnings: string[] }> {

407433

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

408-

const knownIds = new Set(

409-

loadManifestMetadataSnapshot({

410-

config: params.cfg,

411-

env,

412-

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

413-

);

434+

const snapshot = loadManifestMetadataSnapshot({

435+

config: params.cfg,

436+

env,

437+

});

438+

const knownIds = new Set(snapshot.plugins.map((plugin) => plugin.id));

439+

const configuredPluginIdsWithStaleDescriptors =

440+

collectConfiguredPluginIdsWithMissingChannelConfigDescriptors({

441+

snapshot,

442+

configuredPluginIds: params.pluginIds,

443+

configuredChannelIds: params.channelIds,

444+

});

414445

const records = await loadInstalledPluginIndexInstallRecords({ env });

415446

const missingRecordedPluginIds = Object.keys(records).filter(

416-

(pluginId) => params.pluginIds.has(pluginId) && !knownIds.has(pluginId),

447+

(pluginId) =>

448+

(params.pluginIds.has(pluginId) && !knownIds.has(pluginId)) ||

449+

configuredPluginIdsWithStaleDescriptors.has(pluginId),

417450

);

418451

const changes: string[] = [];

419452

const warnings: string[] = [];

@@ -429,6 +462,7 @@ async function repairMissingPluginInstalls(params: {

429462

},

430463

},

431464

pluginIds: missingRecordedPluginIds,

465+

updateChannel: params.cfg.update?.channel,

432466

logger: {

433467

warn: (message) => warnings.push(message),

434468

error: (message) => warnings.push(message),