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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
小众软件
小众软件
D
Docker
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
V2EX
博客园 - 叶小钗
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
IT之家
IT之家
博客园 - 司徒正美
M
MIT News - Artificial intelligence
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
C
Check Point 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
Persist ClawHub skill install provenance (#93283) · openc...
momothemage · 2026-06-15 · via Recent Commits to openclaw:main
11

// ClawHub lifecycle tests cover registry metadata lookup and error handling.

2+

import { createHash } from "node:crypto";

23

import fs from "node:fs/promises";

34

import os from "node:os";

45

import path from "node:path";

5-

import { beforeEach, describe, expect, it, vi } from "vitest";

6+

import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

7+

import { createTrackedTempDirs } from "../../test-utils/tracked-temp-dirs.js";

6879

const fetchClawHubSkillDetailMock = vi.fn();

810

const fetchClawHubSkillInstallResolutionMock = vi.fn();

11+

const fetchClawHubSkillVerificationMock = vi.fn();

912

const downloadClawHubSkillArchiveMock = vi.fn();

1013

const downloadClawHubSkillArchiveUrlMock = vi.fn();

1114

const downloadClawHubGitHubSkillArchiveMock = vi.fn();

@@ -19,10 +22,12 @@ const withExtractedArchiveRootMock = vi.fn();

1922

const installPackageDirMock = vi.fn();

2023

const evaluateSkillInstallPolicyMock = vi.fn();

2124

const pathExistsMock = vi.fn();

25+

const tempDirs = createTrackedTempDirs();

22262327

vi.mock("../../infra/clawhub.js", () => ({

2428

fetchClawHubSkillDetail: fetchClawHubSkillDetailMock,

2529

fetchClawHubSkillInstallResolution: fetchClawHubSkillInstallResolutionMock,

30+

fetchClawHubSkillVerification: fetchClawHubSkillVerificationMock,

2631

downloadClawHubSkillArchive: downloadClawHubSkillArchiveMock,

2732

downloadClawHubSkillArchiveUrl: downloadClawHubSkillArchiveUrlMock,

2833

downloadClawHubGitHubSkillArchive: downloadClawHubGitHubSkillArchiveMock,

@@ -162,9 +167,14 @@ async function writeClawHubOriginFixture(params: {

162167

}

163168164169

describe("skills-clawhub", () => {

170+

afterEach(async () => {

171+

await tempDirs.cleanup();

172+

});

173+165174

beforeEach(() => {

166175

fetchClawHubSkillDetailMock.mockReset();

167176

fetchClawHubSkillInstallResolutionMock.mockReset();

177+

fetchClawHubSkillVerificationMock.mockReset();

168178

downloadClawHubSkillArchiveMock.mockReset();

169179

downloadClawHubSkillArchiveUrlMock.mockReset();

170180

downloadClawHubGitHubSkillArchiveMock.mockReset();

@@ -205,19 +215,36 @@ describe("skills-clawhub", () => {

205215

downloadUrl: "https://clawhub.ai/api/v1/download?slug=agentreceipt&version=1.0.0",

206216

},

207217

});

218+

fetchClawHubSkillVerificationMock.mockResolvedValue({

219+

schema: "clawhub.skill.verify.v1",

220+

ok: true,

221+

decision: "pass",

222+

reasons: [],

223+

card: { available: true, sha256: "card-sha" },

224+

artifact: { sourceFingerprint: "source-fp" },

225+

provenance: { source: "unavailable" },

226+

security: { status: "clean", signals: { staticScan: { engineVersion: "v2.4.24" } } },

227+

signature: { status: "unsigned" },

228+

});

208229

downloadClawHubSkillArchiveMock.mockResolvedValue({

209230

archivePath: "/tmp/agentreceipt.zip",

210231

integrity: "sha256-test",

232+

sha256Hex: "a".repeat(64),

233+

artifact: "archive",

211234

cleanup: archiveCleanupMock,

212235

});

213236

downloadClawHubSkillArchiveUrlMock.mockResolvedValue({

214237

archivePath: "/tmp/agentreceipt.zip",

215238

integrity: "sha256-test",

239+

sha256Hex: "a".repeat(64),

240+

artifact: "archive",

216241

cleanup: archiveCleanupMock,

217242

});

218243

downloadClawHubGitHubSkillArchiveMock.mockResolvedValue({

219244

archivePath: "/tmp/github-agentreceipt.zip",

220245

integrity: "sha256-github-test",

246+

sha256Hex: "b".repeat(64),

247+

artifact: "archive",

221248

cleanup: archiveCleanupMock,

222249

});

223250

reportClawHubSkillInstallTelemetryMock.mockResolvedValue(undefined);

@@ -263,13 +290,125 @@ describe("skills-clawhub", () => {

263290

baseUrl: undefined,

264291

root: "/tmp/workspace",

265292

skills: expect.objectContaining({

266-

agentreceipt: {

293+

agentreceipt: expect.objectContaining({

267294

version: "1.0.0",

268295

installedAt: expect.any(Number),

269296

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

270-

},

297+

}),

271298

}),

272299

});

300+

const telemetrySkills = reportClawHubSkillInstallTelemetryMock.mock.calls[0]?.[0]?.skills as

301+

| Record<string, Record<string, unknown>>

302+

| undefined;

303+

expect(Object.keys(telemetrySkills?.agentreceipt ?? {}).toSorted()).toEqual([

304+

"installedAt",

305+

"registry",

306+

"version",

307+

]);

308+

});

309+310+

it("persists install artifact and verification provenance in the ClawHub lockfile", async () => {

311+

const workspaceDir = await tempDirs.make("openclaw-skills-lock-");

312+

const skillContent = "---\nname: agentreceipt\ndescription: Receipt helper\n---\n";

313+

const skillSha256 = createHash("sha256").update(skillContent).digest("hex");

314+

installPackageDirMock.mockImplementationOnce(async (params: { targetDir: string }) => {

315+

await fs.mkdir(params.targetDir, { recursive: true });

316+

await fs.writeFile(path.join(params.targetDir, "SKILL.md"), skillContent, "utf8");

317+

return { ok: true, targetDir: params.targetDir };

318+

});

319+320+

try {

321+

const result = await installSkillFromClawHub({

322+

workspaceDir,

323+

slug: "agentreceipt",

324+

});

325+326+

expectInstalledSkill(result, {

327+

slug: "agentreceipt",

328+

version: "1.0.0",

329+

targetDir: path.join(workspaceDir, "skills", "agentreceipt"),

330+

});

331+

expect(fetchClawHubSkillVerificationMock).toHaveBeenCalledWith({

332+

slug: "agentreceipt",

333+

version: "1.0.0",

334+

baseUrl: undefined,

335+

});

336+

const lock = JSON.parse(

337+

await fs.readFile(path.join(workspaceDir, ".clawhub", "lock.json"), "utf8"),

338+

) as { skills: Record<string, Record<string, unknown>> };

339+

expect(lock.skills.agentreceipt).toMatchObject({

340+

version: "1.0.0",

341+

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

342+

artifact: {

343+

kind: "archive",

344+

sha256: "a".repeat(64),

345+

integrity: "sha256-test",

346+

},

347+

skillFile: {

348+

path: "SKILL.md",

349+

sha256: skillSha256,

350+

},

351+

verification: {

352+

schema: "clawhub.skill.verify.v1",

353+

ok: true,

354+

decision: "pass",

355+

reasons: [],

356+

provenance: { source: "unavailable" },

357+

security: { status: "clean", signals: { staticScan: { engineVersion: "v2.4.24" } } },

358+

},

359+

});

360+

const origin = JSON.parse(

361+

await fs.readFile(

362+

path.join(workspaceDir, "skills", "agentreceipt", ".clawhub", "origin.json"),

363+

"utf8",

364+

),

365+

) as Record<string, unknown>;

366+

expect(origin).toMatchObject({

367+

version: 1,

368+

slug: "agentreceipt",

369+

installedVersion: "1.0.0",

370+

artifact: {

371+

kind: "archive",

372+

sha256: "a".repeat(64),

373+

integrity: "sha256-test",

374+

},

375+

skillFile: {

376+

path: "SKILL.md",

377+

sha256: skillSha256,

378+

},

379+

});

380+

} finally {

381+

await fs.rm(workspaceDir, { recursive: true, force: true });

382+

}

383+

});

384+385+

it("keeps installing when the ClawHub verification snapshot is unavailable", async () => {

386+

const workspaceDir = await tempDirs.make("openclaw-skills-lock-");

387+

fetchClawHubSkillVerificationMock.mockRejectedValueOnce(new Error("verification down"));

388+

installPackageDirMock.mockImplementationOnce(async (params: { targetDir: string }) => {

389+

await fs.mkdir(params.targetDir, { recursive: true });

390+

await fs.writeFile(path.join(params.targetDir, "SKILL.md"), "# AgentReceipt\n", "utf8");

391+

return { ok: true, targetDir: params.targetDir };

392+

});

393+394+

try {

395+

const result = await installSkillFromClawHub({

396+

workspaceDir,

397+

slug: "agentreceipt",

398+

});

399+400+

expectInstalledSkill(result, { slug: "agentreceipt", version: "1.0.0" });

401+

const lock = JSON.parse(

402+

await fs.readFile(path.join(workspaceDir, ".clawhub", "lock.json"), "utf8"),

403+

) as { skills: Record<string, Record<string, unknown>> };

404+

expect(lock.skills.agentreceipt?.verification).toBeUndefined();

405+

expect(lock.skills.agentreceipt?.artifact).toMatchObject({

406+

sha256: "a".repeat(64),

407+

integrity: "sha256-test",

408+

});

409+

} finally {

410+

await fs.rm(workspaceDir, { recursive: true, force: true });

411+

}

273412

});

274413275414

it("installs GitHub-backed ClawHub skills from the pinned resolver source path", async () => {