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

推荐订阅源

U
Unit 42
Vercel News
Vercel News
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
量子位
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)

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
feat(plugins): install clawhub clawpack artifacts · openc...
vincentkoc · 2026-05-02 · via Recent Commits to openclaw:main

@@ -54,6 +54,9 @@ const { CLAWHUB_INSTALL_ERROR_CODE, formatClawHubSpecifier, installPluginFromCla

54545555

const DEMO_ARCHIVE_INTEGRITY = "sha256-qerEjGEpvES2+Tyan0j2xwDRkbcnmh4ZFfKN9vWbsa8=";

5656

const DEMO_CLAWPACK_SHA256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";

57+

const DEMO_CLAWPACK_INTEGRITY = `sha256-${Buffer.from(DEMO_CLAWPACK_SHA256, "hex").toString(

58+

"base64",

59+

)}`;

5760

const DEMO_CLAWPACK_MANIFEST_SHA256 =

5861

"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb";

5962

const tempDirs: string[] = [];

@@ -320,6 +323,15 @@ describe("installPluginFromClawHub", () => {

320323

},

321324

},

322325

});

326+

downloadClawHubPackageArchiveMock.mockResolvedValueOnce({

327+

archivePath: "/tmp/clawhub-demo/clawpack.zip",

328+

integrity: DEMO_CLAWPACK_INTEGRITY,

329+

sha256Hex: DEMO_CLAWPACK_SHA256,

330+

artifact: "clawpack",

331+

clawpackHeaderSha256: DEMO_CLAWPACK_SHA256,

332+

clawpackHeaderSpecVersion: 1,

333+

cleanup: archiveCleanupMock,

334+

});

323335324336

const result = await installPluginFromClawHub({

325337

spec: "clawhub:demo",

@@ -329,12 +341,116 @@ describe("installPluginFromClawHub", () => {

329341

expect(result).toMatchObject({

330342

ok: true,

331343

clawhub: {

344+

integrity: DEMO_CLAWPACK_INTEGRITY,

332345

clawpackSha256: DEMO_CLAWPACK_SHA256,

333346

clawpackSpecVersion: 1,

334347

clawpackManifestSha256: DEMO_CLAWPACK_MANIFEST_SHA256,

335348

clawpackSize: 4096,

336349

},

337350

});

351+

expect(downloadClawHubPackageArchiveMock).toHaveBeenCalledWith(

352+

expect.objectContaining({

353+

artifact: "clawpack",

354+

name: "demo",

355+

version: "2026.3.22",

356+

}),

357+

);

358+

});

359+360+

it("installs ClawPack artifacts when version metadata has no legacy archive hash", async () => {

361+

fetchClawHubPackageVersionMock.mockResolvedValueOnce({

362+

version: {

363+

version: "2026.3.22",

364+

createdAt: 0,

365+

changelog: "",

366+

compatibility: {

367+

pluginApiRange: ">=2026.3.22",

368+

minGatewayVersion: "2026.3.0",

369+

},

370+

clawpack: {

371+

available: true,

372+

specVersion: 1,

373+

format: "clawpack.zip",

374+

sha256: DEMO_CLAWPACK_SHA256,

375+

size: 4096,

376+

manifestSha256: DEMO_CLAWPACK_MANIFEST_SHA256,

377+

},

378+

},

379+

});

380+

downloadClawHubPackageArchiveMock.mockResolvedValueOnce({

381+

archivePath: "/tmp/clawhub-demo/clawpack.zip",

382+

integrity: DEMO_CLAWPACK_INTEGRITY,

383+

sha256Hex: DEMO_CLAWPACK_SHA256,

384+

artifact: "clawpack",

385+

clawpackHeaderSha256: DEMO_CLAWPACK_SHA256,

386+

clawpackHeaderSpecVersion: 1,

387+

cleanup: archiveCleanupMock,

388+

});

389+390+

const result = await installPluginFromClawHub({

391+

spec: "clawhub:demo",

392+

baseUrl: "https://clawhub.ai",

393+

});

394+395+

expect(result).toMatchObject({

396+

ok: true,

397+

clawhub: {

398+

integrity: DEMO_CLAWPACK_INTEGRITY,

399+

clawpackSha256: DEMO_CLAWPACK_SHA256,

400+

},

401+

});

402+

expect(downloadClawHubPackageArchiveMock).toHaveBeenCalledWith(

403+

expect.objectContaining({

404+

artifact: "clawpack",

405+

}),

406+

);

407+

expect(installPluginFromArchiveMock).toHaveBeenCalledWith(

408+

expect.objectContaining({

409+

archivePath: "/tmp/clawhub-demo/clawpack.zip",

410+

}),

411+

);

412+

});

413+414+

it("rejects ClawPack artifacts when the download digest does not match version metadata", async () => {

415+

const mismatchedSha256 = "cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc";

416+

fetchClawHubPackageVersionMock.mockResolvedValueOnce({

417+

version: {

418+

version: "2026.3.22",

419+

createdAt: 0,

420+

changelog: "",

421+

compatibility: {

422+

pluginApiRange: ">=2026.3.22",

423+

minGatewayVersion: "2026.3.0",

424+

},

425+

clawpack: {

426+

available: true,

427+

specVersion: 1,

428+

format: "clawpack.zip",

429+

sha256: DEMO_CLAWPACK_SHA256,

430+

},

431+

},

432+

});

433+

downloadClawHubPackageArchiveMock.mockResolvedValueOnce({

434+

archivePath: "/tmp/clawhub-demo/clawpack.zip",

435+

integrity: `sha256-${Buffer.from(mismatchedSha256, "hex").toString("base64")}`,

436+

sha256Hex: mismatchedSha256,

437+

artifact: "clawpack",

438+

clawpackHeaderSha256: mismatchedSha256,

439+

cleanup: archiveCleanupMock,

440+

});

441+442+

const result = await installPluginFromClawHub({

443+

spec: "clawhub:demo",

444+

baseUrl: "https://clawhub.ai",

445+

});

446+447+

expect(result).toMatchObject({

448+

ok: false,

449+

code: CLAWHUB_INSTALL_ERROR_CODE.ARCHIVE_INTEGRITY_MISMATCH,

450+

error: `ClawHub ClawPack integrity mismatch for "demo@2026.3.22": expected ${DEMO_CLAWPACK_SHA256}, got ${mismatchedSha256}.`,

451+

});

452+

expect(installPluginFromArchiveMock).not.toHaveBeenCalled();

453+

expect(archiveCleanupMock).toHaveBeenCalledTimes(1);

338454

});

339455340456

it("does not persist package-level ClawPack metadata for version records without ClawPack facts", async () => {