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

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
P
Proofpoint News Feed
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
C
Check Point Blog
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
美团技术团队
D
Docker
博客园 - Franky
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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(doctor): defer missing plugin payload repair during u...
vincentkoc · 2026-05-03 · via Recent Commits to openclaw:main

@@ -15,6 +15,7 @@ import { loadInstalledPluginIndexInstallRecords } from "../../../plugins/install

1515

import { writePersistedInstalledPluginIndexInstallRecords } from "../../../plugins/installed-plugin-index-records.js";

1616

import { buildNpmResolutionInstallFields } from "../../../plugins/installs.js";

1717

import { loadManifestMetadataSnapshot } from "../../../plugins/manifest-contract-eligibility.js";

18+

import type { PluginManifestRecord } from "../../../plugins/manifest-registry.js";

1819

import type { PluginPackageInstall } from "../../../plugins/manifest.js";

1920

import {

2021

listOfficialExternalPluginCatalogEntries,

@@ -53,6 +54,7 @@ const RUNTIME_PLUGIN_INSTALL_CANDIDATES: readonly DownloadableInstallCandidate[]

5354

];

54555556

const MISSING_CHANNEL_CONFIG_DESCRIPTOR_DIAGNOSTIC = "without channelConfigs metadata";

57+

const UPDATE_IN_PROGRESS_ENV = "OPENCLAW_UPDATE_IN_PROGRESS";

56585759

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

5860

return (

@@ -172,6 +174,9 @@ function collectDownloadableInstallCandidates(params: {

172174

env: params.env,

173175

excludeWorkspace: true,

174176

})) {

177+

if (entry.origin === "bundled") {

178+

continue;

179+

}

175180

const pluginId = entry.pluginId ?? entry.id;

176181

if (params.blockedPluginIds?.has(pluginId)) {

177182

continue;

@@ -305,6 +310,31 @@ function isInstalledRecordMissingOnDisk(

305310

return !existsSync(path.join(resolved, "package.json"));

306311

}

307312313+

function isUpdatePackageDoctorPass(env: NodeJS.ProcessEnv): boolean {

314+

return env[UPDATE_IN_PROGRESS_ENV] === "1";

315+

}

316+317+

function recordMatchesBundledPackage(

318+

record: PluginInstallRecord,

319+

bundled: PluginManifestRecord,

320+

): boolean {

321+

const packageName = bundled.packageName?.trim() || bundled.name?.trim();

322+

if (!packageName) {

323+

return false;

324+

}

325+

if (record.source === "npm") {

326+

return [record.spec, record.resolvedName, record.resolvedSpec].some((value) =>

327+

value?.trim().startsWith(packageName),

328+

);

329+

}

330+

if (record.source === "clawhub") {

331+

return [record.clawhubPackage, record.spec].some((value) =>

332+

value?.trim().includes(packageName),

333+

);

334+

}

335+

return false;

336+

}

337+308338

async function installCandidate(params: {

309339

candidate: DownloadableInstallCandidate;

310340

records: Record<string, PluginInstallRecord>;

@@ -451,30 +481,72 @@ async function repairMissingPluginInstalls(params: {

451481

env,

452482

});

453483

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

484+

const bundledPluginsById = new Map(

485+

snapshot.plugins

486+

.filter((plugin) => plugin.origin === "bundled")

487+

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

488+

);

454489

const configuredPluginIdsWithStaleDescriptors =

455490

collectConfiguredPluginIdsWithMissingChannelConfigDescriptors({

456491

snapshot,

457492

configuredPluginIds: params.pluginIds,

458493

configuredChannelIds: params.channelIds,

459494

});

460495

const records = await loadInstalledPluginIndexInstallRecords({ env });

461-

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

462-

(pluginId) =>

463-

(params.pluginIds.has(pluginId) &&

464-

(!knownIds.has(pluginId) || isInstalledRecordMissingOnDisk(records[pluginId], env))) ||

465-

configuredPluginIdsWithStaleDescriptors.has(pluginId),

466-

);

467496

const changes: string[] = [];

468497

const warnings: string[] = [];

498+

const deferredPluginIds = new Set<string>();

469499

let nextRecords = records;

470500501+

for (const [pluginId, record] of Object.entries(records)) {

502+

const bundled = bundledPluginsById.get(pluginId);

503+

if (

504+

!bundled ||

505+

!params.pluginIds.has(pluginId) ||

506+

!recordMatchesBundledPackage(record, bundled)

507+

) {

508+

continue;

509+

}

510+

if (nextRecords === records) {

511+

nextRecords = { ...records };

512+

}

513+

delete nextRecords[pluginId];

514+

changes.push(`Removed stale managed install record for bundled plugin "${pluginId}".`);

515+

}

516+517+

if (isUpdatePackageDoctorPass(env)) {

518+

for (const pluginId of params.pluginIds) {

519+

const record = nextRecords[pluginId];

520+

if (!record || !isInstalledRecordMissingOnDisk(record, env)) {

521+

continue;

522+

}

523+

if (nextRecords === records) {

524+

nextRecords = { ...records };

525+

}

526+

delete nextRecords[pluginId];

527+

deferredPluginIds.add(pluginId);

528+

changes.push(

529+

`Deferred missing configured plugin "${pluginId}" install repair until post-update doctor.`,

530+

);

531+

}

532+

}

533+534+

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

535+

(pluginId) =>

536+

Object.hasOwn(nextRecords, pluginId) &&

537+

!bundledPluginsById.has(pluginId) &&

538+

((params.pluginIds.has(pluginId) &&

539+

(!knownIds.has(pluginId) || isInstalledRecordMissingOnDisk(nextRecords[pluginId], env))) ||

540+

configuredPluginIdsWithStaleDescriptors.has(pluginId)),

541+

);

542+471543

if (missingRecordedPluginIds.length > 0) {

472544

const updateResult = await updateNpmInstalledPlugins({

473545

config: {

474546

...params.cfg,

475547

plugins: {

476548

...params.cfg.plugins,

477-

installs: records,

549+

installs: nextRecords,

478550

},

479551

},

480552

pluginIds: missingRecordedPluginIds,

@@ -496,10 +568,15 @@ async function repairMissingPluginInstalls(params: {

496568497569

const missingPluginIds = new Set(

498570

[...params.pluginIds].filter((pluginId) => {

571+

if (deferredPluginIds.has(pluginId)) {

572+

return false;

573+

}

499574

const hasRecord = Object.hasOwn(nextRecords, pluginId);

500575

return (

501-

(!knownIds.has(pluginId) && !hasRecord) ||

502-

(hasRecord && isInstalledRecordMissingOnDisk(nextRecords[pluginId], env))

576+

(!knownIds.has(pluginId) && !hasRecord && !bundledPluginsById.has(pluginId)) ||

577+

(hasRecord &&

578+

!bundledPluginsById.has(pluginId) &&

579+

isInstalledRecordMissingOnDisk(nextRecords[pluginId], env))

503580

);

504581

}),

505582

);

@@ -509,7 +586,10 @@ async function repairMissingPluginInstalls(params: {

509586

missingPluginIds,

510587

configuredPluginIds: params.pluginIds,

511588

configuredChannelIds: params.channelIds,

512-

blockedPluginIds: params.blockedPluginIds,

589+

blockedPluginIds:

590+

deferredPluginIds.size > 0

591+

? new Set([...(params.blockedPluginIds ?? []), ...deferredPluginIds])

592+

: params.blockedPluginIds,

513593

})) {

514594

const hasUsableRecord =

515595

Object.hasOwn(nextRecords, candidate.pluginId) &&