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

推荐订阅源

V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
Google Developers Blog
J
Java Code Geeks
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
美团技术团队
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
IT之家
IT之家
博客园_首页
B
Blog RSS Feed
Google DeepMind News
Google DeepMind News
B
Blog
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
罗磊的独立博客
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
博客园 - 聂微东
腾讯CDC
A
About on SuperTechFans

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): use clawhub artifact resolver for installs ...
vincentkoc · 2026-05-03 · via Recent Commits to openclaw:main

@@ -13,18 +13,20 @@ import {

1313

import {

1414

ClawHubRequestError,

1515

downloadClawHubPackageArchive,

16+

fetchClawHubPackageArtifact,

1617

fetchClawHubPackageDetail,

17-

fetchClawHubPackageVersion,

1818

normalizeClawHubSha256Integrity,

1919

normalizeClawHubSha256Hex,

2020

parseClawHubPluginSpec,

2121

resolveLatestVersionFromPackage,

2222

satisfiesGatewayMinimum,

2323

satisfiesPluginApiRange,

2424

type ClawHubPackageArtifactSummary,

25+

type ClawHubPackageArtifactResolverResponse,

2526

type ClawHubPackageCompatibility,

2627

type ClawHubPackageDetail,

2728

type ClawHubPackageClawPackSummary,

29+

type ClawHubResolvedArtifact,

2830

type ClawHubPackageVersion,

2931

} from "../infra/clawhub.js";

3032

import { formatErrorMessage } from "../infra/errors.js";

@@ -89,6 +91,17 @@ type ClawHubArchiveVerificationResolution =

8991

}

9092

| ClawHubInstallFailure;

919394+

type ClawHubArtifactResolverVersion = NonNullable<

95+

Exclude<ClawHubPackageArtifactResolverResponse["version"], string | null | undefined>

96+

>;

97+98+

type ClawHubInstallArtifactDecision = {

99+

version: string;

100+

compatibility?: ClawHubPackageCompatibility | null;

101+

verification: ClawHubArchiveVerification | null;

102+

clawpack?: ClawHubPackageArtifactSummary | ClawHubPackageClawPackSummary | null;

103+

};

104+92105

type ClawHubArchiveFileVerificationResult =

93106

| {

94107

ok: true;

@@ -219,6 +232,49 @@ function resolveClawHubNpmPackArtifact(

219232

return null;

220233

}

221234235+

function readArtifactResolverVersion(

236+

response: ClawHubPackageArtifactResolverResponse,

237+

requestedVersion: string,

238+

): ClawHubArtifactResolverVersion {

239+

if (

240+

response.version &&

241+

typeof response.version === "object" &&

242+

!Array.isArray(response.version)

243+

) {

244+

return response.version;

245+

}

246+

if (typeof response.version === "string" && response.version.trim().length > 0) {

247+

return { version: response.version.trim() };

248+

}

249+

return { version: requestedVersion };

250+

}

251+252+

function resolveTopLevelNpmPackArtifact(

253+

artifact: ClawHubResolvedArtifact | null | undefined,

254+

): ClawHubPackageArtifactSummary | null {

255+

if (artifact?.artifactKind !== "npm-pack") {

256+

return null;

257+

}

258+

return {

259+

kind: "npm-pack",

260+

format: "tgz",

261+

sha256: artifact.artifactSha256 ?? null,

262+

npmIntegrity: artifact.npmIntegrity,

263+

npmShasum: artifact.npmShasum ?? null,

264+

downloadUrl: artifact.downloadUrl ?? null,

265+

};

266+

}

267+268+

function resolveTopLevelLegacyArchiveVerification(

269+

artifact: ClawHubResolvedArtifact | null | undefined,

270+

): ClawHubArchiveVerification | null {

271+

if (artifact?.artifactKind !== "legacy-zip" || typeof artifact.artifactSha256 !== "string") {

272+

return null;

273+

}

274+

const integrity = normalizeClawHubSha256Integrity(artifact.artifactSha256);

275+

return integrity ? { kind: "archive-integrity", integrity } : null;

276+

}

277+222278

export function formatClawHubSpecifier(params: { name: string; version?: string }): string {

223279

return `clawhub:${params.name}${params.version ? `@${params.version}` : ""}`;

224280

}

@@ -692,26 +748,17 @@ async function resolveCompatiblePackageVersion(params: {

692748

baseUrl?: string;

693749

token?: string;

694750

timeoutMs?: number;

695-

}): Promise<

696-

| {

697-

ok: true;

698-

version: string;

699-

compatibility?: ClawHubPackageCompatibility | null;

700-

verification: ClawHubArchiveVerification | null;

701-

clawpack?: ClawHubPackageArtifactSummary | ClawHubPackageClawPackSummary | null;

702-

}

703-

| ClawHubInstallFailure

704-

> {

751+

}): Promise<({ ok: true } & ClawHubInstallArtifactDecision) | ClawHubInstallFailure> {

705752

const requestedVersion = resolveRequestedVersion(params);

706753

if (!requestedVersion) {

707754

return buildClawHubInstallFailure(

708755

`ClawHub package "${params.detail.package?.name ?? "unknown"}" has no installable version.`,

709756

CLAWHUB_INSTALL_ERROR_CODE.NO_INSTALLABLE_VERSION,

710757

);

711758

}

712-

let versionDetail;

759+

let artifactResponse;

713760

try {

714-

versionDetail = await fetchClawHubPackageVersion({

761+

artifactResponse = await fetchClawHubPackageArtifact({

715762

name: params.detail.package?.name ?? "",

716763

version: requestedVersion,

717764

baseUrl: params.baseUrl,

@@ -725,20 +772,47 @@ async function resolveCompatiblePackageVersion(params: {

725772

version: requestedVersion,

726773

});

727774

}

728-

const resolvedVersion = versionDetail.version?.version ?? requestedVersion;

775+

const artifactVersion = readArtifactResolverVersion(artifactResponse, requestedVersion);

776+

const resolvedVersion = normalizeOptionalString(artifactVersion.version) ?? requestedVersion;

729777

if (params.detail.package?.family === "skill") {

730778

return {

731779

ok: true,

732780

version: resolvedVersion,

733-

compatibility:

734-

versionDetail.version?.compatibility ?? params.detail.package?.compatibility ?? null,

781+

compatibility: artifactVersion.compatibility ?? params.detail.package?.compatibility ?? null,

735782

verification: null,

736-

clawpack: versionDetail.version?.clawpack ?? null,

783+

clawpack:

784+

artifactVersion.clawpack ?? resolveTopLevelNpmPackArtifact(artifactResponse.artifact),

737785

};

738786

}

739-

const clawpack = versionDetail.version

740-

? resolveClawHubNpmPackArtifact(versionDetail.version)

741-

: null;

787+

const versionDetail: ClawHubPackageVersion = {

788+

package: artifactResponse.package

789+

? {

790+

name: artifactResponse.package.name ?? params.detail.package?.name ?? "",

791+

displayName:

792+

artifactResponse.package.displayName ?? params.detail.package?.displayName ?? "",

793+

family:

794+

artifactResponse.package.family === "code-plugin" ||

795+

artifactResponse.package.family === "bundle-plugin" ||

796+

artifactResponse.package.family === "skill"

797+

? artifactResponse.package.family

798+

: (params.detail.package?.family ?? "code-plugin"),

799+

}

800+

: null,

801+

version: {

802+

version: resolvedVersion,

803+

createdAt: typeof artifactVersion.createdAt === "number" ? artifactVersion.createdAt : 0,

804+

changelog: typeof artifactVersion.changelog === "string" ? artifactVersion.changelog : "",

805+

distTags: artifactVersion.distTags,

806+

files: artifactVersion.files,

807+

sha256hash: artifactVersion.sha256hash,

808+

compatibility: artifactVersion.compatibility,

809+

artifact: artifactVersion.artifact,

810+

clawpack: artifactVersion.clawpack ?? undefined,

811+

},

812+

};

813+

const clawpack =

814+

resolveClawHubNpmPackArtifact(versionDetail.version) ??

815+

resolveTopLevelNpmPackArtifact(artifactResponse.artifact);

742816

const verificationState = resolveClawHubArchiveVerification(

743817

versionDetail,

744818

params.detail.package?.name ?? "unknown",

@@ -757,12 +831,15 @@ async function resolveCompatiblePackageVersion(params: {

757831

clawpack,

758832

};

759833

}

834+

const topLevelLegacyVerification = resolveTopLevelLegacyArchiveVerification(

835+

artifactResponse.artifact,

836+

);

760837

return {

761838

ok: true,

762839

version: resolvedVersion,

763840

compatibility:

764841

versionDetail.version?.compatibility ?? params.detail.package?.compatibility ?? null,

765-

verification: verificationState.verification,

842+

verification: verificationState.verification ?? topLevelLegacyVerification,

766843

clawpack,

767844

};

768845

}