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

推荐订阅源

博客园 - 司徒正美
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
罗磊的独立博客
The GitHub Blog
The GitHub Blog
L
LangChain Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
DataBreaches.Net
宝玉的分享
宝玉的分享
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
N
Netflix TechBlog - Medium
The Cloudflare Blog
Microsoft Azure Blog
Microsoft Azure Blog
H
Help Net Security
美团技术团队
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | 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(plugins): restrict ClawHub npm fallback scope · openc...
steipete · 2026-05-18 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -83,7 +83,7 @@ Docs: https://docs.openclaw.ai

8383

- CLI/doctor: seed Control UI allowed origins when migrating legacy non-loopback gateway bind host aliases like `0.0.0.0`. Fixes #83286. Thanks @giodl73-repo.

8484

- CLI/plugins: ship the bundled memory CLI as a package entry so package-installed `openclaw memory` commands register correctly.

8585

- CLI/update: defer doctor-time plugin package installs during package swaps and seed post-core repair from the updated install registry, preventing duplicate reinstall failures.

86-

- CLI/update: preserve old-parent-readable config metadata during legacy package handoffs, fall back to npm when ClawHub package artifacts are unavailable, and keep managed service package roots authoritative during updates.

86+

- CLI/update: preserve old-parent-readable config metadata during legacy package handoffs, fall back only to official `@openclaw/*` npm plugin packages when ClawHub plugin artifacts are unavailable, and keep managed service package roots authoritative during updates.

8787

- Feishu: detect SecretRef top-level credentials as a configured default account instead of treating object-backed app secrets as missing.

8888

- Gateway/restart: keep ordinary unmanaged SIGUSR1/config restarts in-process instead of detach-spawning an orphaned child, preserving custom supervisor PID tracking while leaving update restarts on the fresh-process path. Fixes #65668.

8989

- CLI/completion: resolve concrete PowerShell profile paths and reload commands during setup and doctor completion installation. Fixes #44296. (#83059) Thanks @yu-xin-c.

Original file line numberDiff line numberDiff line change

@@ -380,6 +380,40 @@ describe("repairMissingConfiguredPluginInstalls", () => {

380380

expect(result.warnings).toStrictEqual([]);

381381

});

382382
383+

it("does not fall back from ClawHub to non-OpenClaw npm packages", async () => {

384+

mocks.installPluginFromClawHub.mockResolvedValueOnce({

385+

ok: false,

386+

code: "artifact_download_unavailable",

387+

error: "ClawHub artifact download is not available yet.",

388+

});

389+

mocks.listChannelPluginCatalogEntries.mockReturnValue([

390+

{

391+

id: "matrix",

392+

pluginId: "matrix",

393+

meta: { label: "Matrix" },

394+

install: {

395+

clawhubSpec: "clawhub:@openclaw/plugin-matrix@stable",

396+

npmSpec: "@someone-else/plugin-matrix@1.2.3",

397+

},

398+

},

399+

]);

400+
401+

const { repairMissingPluginInstallsForIds } =

402+

await import("./missing-configured-plugin-install.js");

403+

const result = await repairMissingPluginInstallsForIds({

404+

cfg: {},

405+

pluginIds: [],

406+

channelIds: ["matrix"],

407+

env: {},

408+

});

409+
410+

expect(mocks.installPluginFromNpmSpec).not.toHaveBeenCalled();

411+

expect(result.changes).toStrictEqual([]);

412+

expect(result.warnings).toEqual([

413+

'Failed to install missing configured plugin "matrix" from clawhub:@openclaw/plugin-matrix@stable: ClawHub artifact download is not available yet.',

414+

]);

415+

});

416+
383417

it("honors npm-first catalog metadata for missing OpenClaw channel plugins", async () => {

384418

mocks.installPluginFromNpmSpec.mockResolvedValueOnce({

385419

ok: true,

Original file line numberDiff line numberDiff line change

@@ -9,7 +9,7 @@ import { listChannelPluginCatalogEntries } from "../../../channels/plugins/catal

99

import type { OpenClawConfig } from "../../../config/types.openclaw.js";

1010

import type { PluginInstallRecord } from "../../../config/types.plugins.js";

1111

import { parseClawHubPluginSpec } from "../../../infra/clawhub-spec.js";

12-

import { parseRegistryNpmSpec } from "../../../infra/npm-registry-spec.js";

12+

import { isOpenClawOrgNpmSpec, parseRegistryNpmSpec } from "../../../infra/npm-registry-spec.js";

1313

import {

1414

normalizeUpdateChannel,

1515

resolveRegistryUpdateChannel,

@@ -80,11 +80,17 @@ const REPAIRABLE_PACKAGE_ENTRY_DIAGNOSTIC_MARKERS = [

8080

"requires compiled runtime output",

8181

] as const;

8282
83-

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

83+

function shouldFallbackClawHubToNpm(params: {

84+

result: { ok: false; code?: string };

85+

npmSpec?: string;

86+

}): boolean {

87+

if (!isOpenClawOrgNpmSpec(params.npmSpec)) {

88+

return false;

89+

}

8490

return (

85-

result.code === CLAWHUB_INSTALL_ERROR_CODE.PACKAGE_NOT_FOUND ||

86-

result.code === CLAWHUB_INSTALL_ERROR_CODE.VERSION_NOT_FOUND ||

87-

result.code === CLAWHUB_INSTALL_ERROR_CODE.ARTIFACT_DOWNLOAD_UNAVAILABLE

91+

params.result.code === CLAWHUB_INSTALL_ERROR_CODE.PACKAGE_NOT_FOUND ||

92+

params.result.code === CLAWHUB_INSTALL_ERROR_CODE.VERSION_NOT_FOUND ||

93+

params.result.code === CLAWHUB_INSTALL_ERROR_CODE.ARTIFACT_DOWNLOAD_UNAVAILABLE

8894

);

8995

}

9096

@@ -795,7 +801,10 @@ async function installCandidate(params: {

795801

warnings: [],

796802

};

797803

}

798-

if (!npmInstallSpec || !shouldFallbackClawHubToNpm(clawhubResult)) {

804+

if (

805+

!npmInstallSpec ||

806+

!shouldFallbackClawHubToNpm({ result: clawhubResult, npmSpec: npmInstallSpec })

807+

) {

799808

return {

800809

records: params.records,

801810

changes: [],

Original file line numberDiff line numberDiff line change

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

33

compareOpenClawReleaseVersions,

44

formatPrereleaseResolutionError,

55

isExactSemverVersion,

6+

isOpenClawOrgNpmSpec,

67

isOpenClawStableCorrectionVersion,

78

isPrereleaseSemverVersion,

89

isPrereleaseResolutionAllowed,

@@ -104,6 +105,17 @@ describe("npm registry spec parsing helpers", () => {

104105

expect(parseRegistryNpmSpec(spec)).toEqual(expected);

105106

});

106107
108+

it.each([

109+

{ spec: "@openclaw/voice-call", expected: true },

110+

{ spec: "@openclaw/voice-call@1.2.3", expected: true },

111+

{ spec: "@other/voice-call", expected: false },

112+

{ spec: "voice-call", expected: false },

113+

{ spec: "npm:@openclaw/voice-call", expected: false },

114+

{ spec: undefined, expected: false },

115+

])("detects OpenClaw-org npm specs for %s", ({ spec, expected }) => {

116+

expect(isOpenClawOrgNpmSpec(spec)).toBe(expected);

117+

});

118+
107119

it.each([

108120

{ value: "v1.2.3", expected: true },

109121

{ value: "1.2", expected: false },

Original file line numberDiff line numberDiff line change

@@ -117,6 +117,11 @@ export function parseRegistryNpmSpec(rawSpec: string): ParsedRegistryNpmSpec | n

117117

return parsed.ok ? parsed.parsed : null;

118118

}

119119
120+

export function isOpenClawOrgNpmSpec(rawSpec: string | undefined): boolean {

121+

const parsed = rawSpec ? parseRegistryNpmSpec(rawSpec) : null;

122+

return parsed?.name.startsWith("@openclaw/") === true;

123+

}

124+
120125

export function validateRegistryNpmSpec(rawSpec: string): string | null {

121126

const parsed = parseRegistryNpmSpecInternal(rawSpec);

122127

return parsed.ok ? null : parsed.error;

Original file line numberDiff line numberDiff line change

@@ -3133,6 +3133,55 @@ describe("syncPluginsForUpdateChannel", () => {

31333133

});

31343134

});

31353135
3136+

it("does not fall back from ClawHub to non-OpenClaw npm packages", async () => {

3137+

resolveBundledPluginSourcesMock.mockReturnValue(new Map());

3138+

installPluginFromClawHubMock.mockResolvedValue({

3139+

ok: false,

3140+

code: "package_not_found",

3141+

error: "Package not found on ClawHub.",

3142+

});

3143+

const config: OpenClawConfig = {

3144+

channels: {

3145+

"legacy-chat": {

3146+

enabled: true,

3147+

},

3148+

},

3149+

plugins: {

3150+

load: { paths: [appBundledPluginRoot("legacy-chat")] },

3151+

installs: {

3152+

"legacy-chat": {

3153+

source: "path",

3154+

sourcePath: appBundledPluginRoot("legacy-chat"),

3155+

installPath: appBundledPluginRoot("legacy-chat"),

3156+

},

3157+

},

3158+

},

3159+

};

3160+
3161+

const result = await syncPluginsForUpdateChannel({

3162+

channel: "stable",

3163+

externalizedBundledPluginBridges: [

3164+

{

3165+

bundledPluginId: "legacy-chat",

3166+

preferredSource: "clawhub",

3167+

clawhubSpec: "clawhub:legacy-chat@2026.5.1-beta.2",

3168+

npmSpec: "@someone-else/legacy-chat",

3169+

channelIds: ["legacy-chat"],

3170+

},

3171+

],

3172+

config,

3173+

});

3174+
3175+

expect(installPluginFromNpmSpecMock).not.toHaveBeenCalled();

3176+

expect(result.changed).toBe(false);

3177+

expect(result.config).toBe(config);

3178+

expect(result.summary.switchedToNpm).toStrictEqual([]);

3179+

expect(result.summary.warnings).toStrictEqual([]);

3180+

expect(result.summary.errors).toEqual([

3181+

"Failed to update legacy-chat: Package not found on ClawHub. (ClawHub clawhub:legacy-chat@2026.5.1-beta.2).",

3182+

]);

3183+

});

3184+
31363185

it("marks official externalized ClawHub-to-npm fallbacks as trusted", async () => {

31373186

resolveBundledPluginSourcesMock.mockReturnValue(new Map());

31383187

installPluginFromClawHubMock.mockResolvedValue({

Original file line numberDiff line numberDiff line change

@@ -6,6 +6,7 @@ import type { NpmSpecResolution } from "../infra/install-source-utils.js";

66

import { resolveNpmSpecMetadata } from "../infra/install-source-utils.js";

77

import {

88

compareOpenClawReleaseVersions,

9+

isOpenClawOrgNpmSpec,

910

isPrereleaseResolutionAllowed,

1011

parseRegistryNpmSpec,

1112

} from "../infra/npm-registry-spec.js";

@@ -428,15 +429,24 @@ function isExternalizedBundledPluginEnabled(params: {

428429

return false;

429430

}

430431
431-

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

432+

function shouldFallbackClawHubBridgeToNpm(params: {

433+

result: { ok: false; code?: string };

434+

npmSpec?: string;

435+

}): boolean {

436+

if (!isOpenClawOrgNpmSpec(params.npmSpec)) {

437+

return false;

438+

}

432439

return (

433-

result.code === CLAWHUB_INSTALL_ERROR_CODE.PACKAGE_NOT_FOUND ||

434-

result.code === CLAWHUB_INSTALL_ERROR_CODE.VERSION_NOT_FOUND

440+

params.result.code === CLAWHUB_INSTALL_ERROR_CODE.PACKAGE_NOT_FOUND ||

441+

params.result.code === CLAWHUB_INSTALL_ERROR_CODE.VERSION_NOT_FOUND

435442

);

436443

}

437444
438445

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

439-

return shouldFallbackClawHubBridgeToNpm(result);

446+

return (

447+

result.code === CLAWHUB_INSTALL_ERROR_CODE.PACKAGE_NOT_FOUND ||

448+

result.code === CLAWHUB_INSTALL_ERROR_CODE.VERSION_NOT_FOUND

449+

);

440450

}

441451
442452

function describeBetaNpmFallback(params: {

@@ -1741,7 +1751,7 @@ export async function syncPluginsForUpdateChannel(params: {

17411751

expectedPluginId: targetPluginId,

17421752

logger,

17431753

});

1744-

if (!result.ok && npmSpec && shouldFallbackClawHubBridgeToNpm(result)) {

1754+

if (!result.ok && npmSpec && shouldFallbackClawHubBridgeToNpm({ result, npmSpec })) {

17451755

const warning = `ClawHub ${clawhubSpec} unavailable for ${targetPluginId}; falling back to npm ${npmSpec}.`;

17461756

summary.warnings.push(warning);

17471757

logger.warn?.(warning);