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

推荐订阅源

I
InfoQ
博客园_首页
美团技术团队
M
MIT News - Artificial intelligence
人人都是产品经理
人人都是产品经理
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
J
Java Code Geeks
T
Tailwind CSS Blog
Jina AI
Jina AI
量子位
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
爱范儿
爱范儿
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
宝玉的分享
宝玉的分享
小众软件
小众软件
MongoDB | Blog
MongoDB | Blog
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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(plugins): trust official diagnostics installs (#77516...
steipete · 2026-05-05 · via Recent Commits to openclaw:main

@@ -46,6 +46,8 @@ import { checkMinHostVersion } from "./min-host-version.js";

4646

import {

4747

getOfficialExternalPluginCatalogEntryForPackage,

4848

getOfficialExternalPluginCatalogManifest,

49+

resolveOfficialExternalPluginId,

50+

resolveOfficialExternalPluginInstall,

4951

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

5052

import { isPathInside, safeRealpathSync } from "./path-safety.js";

5153

import type { PluginKind } from "./plugin-kind.types.js";

@@ -140,6 +142,7 @@ export type PluginManifestRecord = {

140142

packageOptionalDependencies?: PluginDependencySpecMap;

141143

packageChannel?: PluginPackageChannel;

142144

packageInstall?: PluginPackageInstall;

145+

trustedOfficialInstall?: boolean;

143146

qaRunners?: PluginManifestQaRunner[];

144147

skills: string[];

145148

settingsFiles?: string[];

@@ -365,6 +368,7 @@ function buildRecord(params: {

365368

schemaCacheKey?: string;

366369

configSchema?: Record<string, unknown>;

367370

bundledChannelConfigCollector?: BundledChannelConfigCollector;

371+

trustedOfficialInstall?: boolean;

368372

}): PluginManifestRecord {

369373

const manifestChannelConfigs =

370374

params.candidate.origin === "bundled" && params.bundledChannelConfigCollector

@@ -434,6 +438,7 @@ function buildRecord(params: {

434438

packageOptionalDependencies: params.candidate.packageOptionalDependencies,

435439

packageChannel: params.candidate.packageManifest?.channel,

436440

packageInstall: params.candidate.packageManifest?.install,

441+

trustedOfficialInstall: params.trustedOfficialInstall === true ? true : undefined,

437442

qaRunners: params.manifest.qaRunners,

438443

skills: params.manifest.skills ?? [],

439444

settingsFiles: [],

@@ -634,7 +639,7 @@ function matchesInstalledPluginRecord(params: {

634639

env: NodeJS.ProcessEnv;

635640

installRecords: Record<string, PluginInstallRecord>;

636641

}): boolean {

637-

if (params.candidate.origin !== "global") {

642+

if (params.candidate.origin !== "global" && params.candidate.origin !== "config") {

638643

return false;

639644

}

640645

const record = params.installRecords[params.pluginId];

@@ -653,6 +658,72 @@ function matchesInstalledPluginRecord(params: {

653658

});

654659

}

655660661+

function npmSpecMatchesPackage(value: string | undefined, packageName: string): boolean {

662+

const normalized = value?.trim();

663+

if (!normalized) {

664+

return false;

665+

}

666+

if (normalized === packageName) {

667+

return true;

668+

}

669+

return normalized.startsWith(`${packageName}@`);

670+

}

671+672+

function isTrustedOfficialPluginInstall(params: {

673+

pluginId: string;

674+

candidate: PluginCandidate;

675+

env: NodeJS.ProcessEnv;

676+

installRecords: Record<string, PluginInstallRecord>;

677+

}): boolean {

678+

if (

679+

(params.candidate.origin !== "global" && params.candidate.origin !== "config") ||

680+

!matchesInstalledPluginRecord({

681+

pluginId: params.pluginId,

682+

candidate: params.candidate,

683+

env: params.env,

684+

installRecords: params.installRecords,

685+

})

686+

) {

687+

return false;

688+

}

689+

const packageName = params.candidate.packageName?.trim();

690+

if (!packageName) {

691+

return false;

692+

}

693+

const catalogEntry = getOfficialExternalPluginCatalogEntryForPackage(packageName);

694+

if (!catalogEntry || resolveOfficialExternalPluginId(catalogEntry) !== params.pluginId) {

695+

return false;

696+

}

697+

const officialInstall = resolveOfficialExternalPluginInstall(catalogEntry);

698+

const installRecord = params.installRecords[params.pluginId];

699+

if (!installRecord) {

700+

return false;

701+

}

702+

if (

703+

installRecord.source === "npm" &&

704+

officialInstall?.npmSpec === packageName &&

705+

[

706+

installRecord.resolvedName,

707+

installRecord.spec,

708+

installRecord.resolvedSpec,

709+

params.candidate.packageName,

710+

].some((value) => npmSpecMatchesPackage(value, packageName))

711+

) {

712+

return true;

713+

}

714+

if (

715+

installRecord.source === "clawhub" &&

716+

officialInstall?.clawhubSpec &&

717+

installRecord.clawhubChannel === "official" &&

718+

(installRecord.clawhubPackage === packageName ||

719+

installRecord.spec === officialInstall.clawhubSpec ||

720+

installRecord.resolvedSpec === officialInstall.clawhubSpec)

721+

) {

722+

return true;

723+

}

724+

return false;

725+

}

726+656727

function resolveDuplicatePrecedenceRank(params: {

657728

pluginId: string;

658729

candidate: PluginCandidate;

@@ -858,6 +929,12 @@ export function loadPluginManifestRegistry(

858929

manifestPath: manifestRes.manifestPath,

859930

schemaCacheKey,

860931

configSchema,

932+

trustedOfficialInstall: isTrustedOfficialPluginInstall({

933+

pluginId: manifest.id,

934+

candidate,

935+

env,

936+

installRecords: getInstallRecords(),

937+

}),

861938

...(params.bundledChannelConfigCollector

862939

? { bundledChannelConfigCollector: params.bundledChannelConfigCollector }

863940

: {}),