We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a62bec commit 27958bbCopy full SHA for 27958bb
packages/clawdhub/src/skills.test.ts
@@ -4,6 +4,7 @@ import { tmpdir } from 'node:os'
4
import { join } from 'node:path'
5
import { strToU8, zipSync } from 'fflate'
6
import { describe, expect, it } from 'vitest'
7
+import type { SkillOrigin } from './skills'
8
import {
9
buildSkillFingerprint,
10
extractZipToDir,
@@ -177,7 +178,7 @@ describe('skills', () => {
177
178
)
179
expect(await readSkillOrigin(workdir)).toBeNull()
180
- const origin = {
181
+ const origin: SkillOrigin = {
182
version: 1,
183
registry: 'https://example.com',
184
slug: 'demo',
0 commit comments