@skillctl/lockfile 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 skillctl contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,3 @@
1
+ export * from './schema.js';
2
+ export * from './lockfile.js';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export * from './schema.js';
2
+ export * from './lockfile.js';
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC"}
@@ -0,0 +1,13 @@
1
+ import type { SkillLockfile, LockfileEntry } from '@skillctl/core';
2
+ /**
3
+ * Lockfile parser/generator: pnpm-style YAML with lockfileVersion.
4
+ * Detailed mixed-source fields (integrity + provenance).
5
+ * load/save are the core for PR3.
6
+ */
7
+ export declare const DEFAULT_LOCKFILE_NAME = "agent-skills.lock";
8
+ export declare function loadLockfile(cwd?: string, fileName?: string): Promise<SkillLockfile | null>;
9
+ export declare function saveLockfile(lock: SkillLockfile, cwd?: string, fileName?: string): Promise<string>;
10
+ export declare function createEmptyLockfile(agents?: string[]): SkillLockfile;
11
+ export declare function addOrUpdateEntry(lock: SkillLockfile, name: string, entry: LockfileEntry): SkillLockfile;
12
+ export declare function makeLockEntry(name: string, specifier: string, resolved: string, integrity: string, canonicalPath: string, provenance: LockfileEntry['provenance']): LockfileEntry;
13
+ //# sourceMappingURL=lockfile.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lockfile.d.ts","sourceRoot":"","sources":["../src/lockfile.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAGnE;;;;GAIG;AAEH,eAAO,MAAM,qBAAqB,sBAAsB,CAAC;AAEzD,wBAAsB,YAAY,CAAC,GAAG,SAAgB,EAAE,QAAQ,SAAwB,GAAG,OAAO,CAAC,aAAa,GAAG,IAAI,CAAC,CAcvH;AAED,wBAAsB,YAAY,CAAC,IAAI,EAAE,aAAa,EAAE,GAAG,SAAgB,EAAE,QAAQ,SAAwB,GAAG,OAAO,CAAC,MAAM,CAAC,CAa9H;AAED,wBAAgB,mBAAmB,CAAC,MAAM,GAAE,MAAM,EAAO,GAAG,aAAa,CAMxE;AAED,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,aAAa,GAAG,aAAa,CAOvG;AAGD,wBAAgB,aAAa,CAC3B,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM,EACjB,aAAa,EAAE,MAAM,EACrB,UAAU,EAAE,aAAa,CAAC,YAAY,CAAC,GACtC,aAAa,CAUf"}
@@ -0,0 +1,71 @@
1
+ import { readFile } from 'node:fs/promises';
2
+ import { resolve } from 'node:path';
3
+ import yaml from 'js-yaml';
4
+ import { validateLockfile } from './schema.js';
5
+ import { writeFileAtomic, ensureDir } from '@skillctl/core';
6
+ /**
7
+ * Lockfile parser/generator: pnpm-style YAML with lockfileVersion.
8
+ * Detailed mixed-source fields (integrity + provenance).
9
+ * load/save are the core for PR3.
10
+ */
11
+ export const DEFAULT_LOCKFILE_NAME = 'agent-skills.lock';
12
+ export async function loadLockfile(cwd = process.cwd(), fileName = DEFAULT_LOCKFILE_NAME) {
13
+ const path = resolve(cwd, fileName);
14
+ try {
15
+ const raw = await readFile(path, 'utf8');
16
+ const parsed = yaml.load(raw);
17
+ if (!parsed)
18
+ return null;
19
+ return validateLockfile(parsed);
20
+ }
21
+ catch (err) {
22
+ if (err.code === 'ENOENT')
23
+ return null;
24
+ if (err.name === 'YAMLException') {
25
+ throw new Error(`Invalid YAML lockfile ${fileName}: ${err.message}`);
26
+ }
27
+ throw err;
28
+ }
29
+ }
30
+ export async function saveLockfile(lock, cwd = process.cwd(), fileName = DEFAULT_LOCKFILE_NAME) {
31
+ const validated = validateLockfile(lock);
32
+ const path = resolve(cwd, fileName);
33
+ // pnpm-style: use block scalars etc, sort keys for determinism, no refs
34
+ const dumped = yaml.dump(validated, {
35
+ noRefs: true,
36
+ sortKeys: false, // preserve skill order somewhat; caller can sort if wanted
37
+ lineWidth: 120,
38
+ indent: 2,
39
+ });
40
+ await ensureDir(resolve(cwd));
41
+ await writeFileAtomic(path, dumped);
42
+ return path;
43
+ }
44
+ export function createEmptyLockfile(agents = []) {
45
+ return {
46
+ lockfileVersion: '1.0',
47
+ agents: agents.length ? agents : undefined,
48
+ skills: {},
49
+ };
50
+ }
51
+ export function addOrUpdateEntry(lock, name, entry) {
52
+ // collision policy: overwrite same name (last wins with warning caller), enforce unique keys
53
+ const newSkills = { ...lock.skills, [name]: entry };
54
+ return {
55
+ ...lock,
56
+ skills: newSkills,
57
+ };
58
+ }
59
+ // Basic integrity/provenance example builder (used by later PRs, here for tests/fixtures)
60
+ export function makeLockEntry(name, specifier, resolved, integrity, canonicalPath, provenance) {
61
+ return {
62
+ specifier,
63
+ resolved,
64
+ integrity,
65
+ name,
66
+ canonicalPath,
67
+ fetchedAt: new Date().toISOString(),
68
+ provenance,
69
+ };
70
+ }
71
+ //# sourceMappingURL=lockfile.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lockfile.js","sourceRoot":"","sources":["../src/lockfile.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,159 @@
1
+ import { z } from 'zod';
2
+ import type { SkillLockfile, LockfileEntry, Provenance } from '@skillctl/core';
3
+ export declare const ProvenanceSchema: z.ZodObject<{
4
+ type: z.ZodEnum<["github", "npm", "local", "skills.sh", "other"]>;
5
+ commit: z.ZodOptional<z.ZodString>;
6
+ tarballHash: z.ZodOptional<z.ZodString>;
7
+ subpath: z.ZodOptional<z.ZodString>;
8
+ }, "strip", z.ZodTypeAny, {
9
+ type: "github" | "npm" | "local" | "skills.sh" | "other";
10
+ commit?: string | undefined;
11
+ tarballHash?: string | undefined;
12
+ subpath?: string | undefined;
13
+ }, {
14
+ type: "github" | "npm" | "local" | "skills.sh" | "other";
15
+ commit?: string | undefined;
16
+ tarballHash?: string | undefined;
17
+ subpath?: string | undefined;
18
+ }>;
19
+ export declare const LockfileEntrySchema: z.ZodObject<{
20
+ specifier: z.ZodString;
21
+ resolved: z.ZodString;
22
+ integrity: z.ZodString;
23
+ name: z.ZodString;
24
+ canonicalPath: z.ZodString;
25
+ fetchedAt: z.ZodUnion<[z.ZodString, z.ZodString]>;
26
+ provenance: z.ZodObject<{
27
+ type: z.ZodEnum<["github", "npm", "local", "skills.sh", "other"]>;
28
+ commit: z.ZodOptional<z.ZodString>;
29
+ tarballHash: z.ZodOptional<z.ZodString>;
30
+ subpath: z.ZodOptional<z.ZodString>;
31
+ }, "strip", z.ZodTypeAny, {
32
+ type: "github" | "npm" | "local" | "skills.sh" | "other";
33
+ commit?: string | undefined;
34
+ tarballHash?: string | undefined;
35
+ subpath?: string | undefined;
36
+ }, {
37
+ type: "github" | "npm" | "local" | "skills.sh" | "other";
38
+ commit?: string | undefined;
39
+ tarballHash?: string | undefined;
40
+ subpath?: string | undefined;
41
+ }>;
42
+ }, "strip", z.ZodTypeAny, {
43
+ specifier: string;
44
+ resolved: string;
45
+ integrity: string;
46
+ name: string;
47
+ canonicalPath: string;
48
+ fetchedAt: string;
49
+ provenance: {
50
+ type: "github" | "npm" | "local" | "skills.sh" | "other";
51
+ commit?: string | undefined;
52
+ tarballHash?: string | undefined;
53
+ subpath?: string | undefined;
54
+ };
55
+ }, {
56
+ specifier: string;
57
+ resolved: string;
58
+ integrity: string;
59
+ name: string;
60
+ canonicalPath: string;
61
+ fetchedAt: string;
62
+ provenance: {
63
+ type: "github" | "npm" | "local" | "skills.sh" | "other";
64
+ commit?: string | undefined;
65
+ tarballHash?: string | undefined;
66
+ subpath?: string | undefined;
67
+ };
68
+ }>;
69
+ export declare const SkillLockfileSchema: z.ZodObject<{
70
+ lockfileVersion: z.ZodLiteral<"1.0">;
71
+ agents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
72
+ skills: z.ZodRecord<z.ZodString, z.ZodObject<{
73
+ specifier: z.ZodString;
74
+ resolved: z.ZodString;
75
+ integrity: z.ZodString;
76
+ name: z.ZodString;
77
+ canonicalPath: z.ZodString;
78
+ fetchedAt: z.ZodUnion<[z.ZodString, z.ZodString]>;
79
+ provenance: z.ZodObject<{
80
+ type: z.ZodEnum<["github", "npm", "local", "skills.sh", "other"]>;
81
+ commit: z.ZodOptional<z.ZodString>;
82
+ tarballHash: z.ZodOptional<z.ZodString>;
83
+ subpath: z.ZodOptional<z.ZodString>;
84
+ }, "strip", z.ZodTypeAny, {
85
+ type: "github" | "npm" | "local" | "skills.sh" | "other";
86
+ commit?: string | undefined;
87
+ tarballHash?: string | undefined;
88
+ subpath?: string | undefined;
89
+ }, {
90
+ type: "github" | "npm" | "local" | "skills.sh" | "other";
91
+ commit?: string | undefined;
92
+ tarballHash?: string | undefined;
93
+ subpath?: string | undefined;
94
+ }>;
95
+ }, "strip", z.ZodTypeAny, {
96
+ specifier: string;
97
+ resolved: string;
98
+ integrity: string;
99
+ name: string;
100
+ canonicalPath: string;
101
+ fetchedAt: string;
102
+ provenance: {
103
+ type: "github" | "npm" | "local" | "skills.sh" | "other";
104
+ commit?: string | undefined;
105
+ tarballHash?: string | undefined;
106
+ subpath?: string | undefined;
107
+ };
108
+ }, {
109
+ specifier: string;
110
+ resolved: string;
111
+ integrity: string;
112
+ name: string;
113
+ canonicalPath: string;
114
+ fetchedAt: string;
115
+ provenance: {
116
+ type: "github" | "npm" | "local" | "skills.sh" | "other";
117
+ commit?: string | undefined;
118
+ tarballHash?: string | undefined;
119
+ subpath?: string | undefined;
120
+ };
121
+ }>>;
122
+ }, "strip", z.ZodTypeAny, {
123
+ lockfileVersion: "1.0";
124
+ skills: Record<string, {
125
+ specifier: string;
126
+ resolved: string;
127
+ integrity: string;
128
+ name: string;
129
+ canonicalPath: string;
130
+ fetchedAt: string;
131
+ provenance: {
132
+ type: "github" | "npm" | "local" | "skills.sh" | "other";
133
+ commit?: string | undefined;
134
+ tarballHash?: string | undefined;
135
+ subpath?: string | undefined;
136
+ };
137
+ }>;
138
+ agents?: string[] | undefined;
139
+ }, {
140
+ lockfileVersion: "1.0";
141
+ skills: Record<string, {
142
+ specifier: string;
143
+ resolved: string;
144
+ integrity: string;
145
+ name: string;
146
+ canonicalPath: string;
147
+ fetchedAt: string;
148
+ provenance: {
149
+ type: "github" | "npm" | "local" | "skills.sh" | "other";
150
+ commit?: string | undefined;
151
+ tarballHash?: string | undefined;
152
+ subpath?: string | undefined;
153
+ };
154
+ }>;
155
+ agents?: string[] | undefined;
156
+ }>;
157
+ export type { LockfileEntry, SkillLockfile, Provenance };
158
+ export declare function validateLockfile(input: unknown): SkillLockfile;
159
+ //# sourceMappingURL=schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAE/E,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;EAK3B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ9B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI9B,CAAC;AAEH,YAAY,EAAE,aAAa,EAAE,aAAa,EAAE,UAAU,EAAE,CAAC;AAEzD,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,OAAO,GAAG,aAAa,CAE9D"}
package/dist/schema.js ADDED
@@ -0,0 +1,25 @@
1
+ import { z } from 'zod';
2
+ export const ProvenanceSchema = z.object({
3
+ type: z.enum(['github', 'npm', 'local', 'skills.sh', 'other']),
4
+ commit: z.string().optional(),
5
+ tarballHash: z.string().optional(),
6
+ subpath: z.string().optional(),
7
+ });
8
+ export const LockfileEntrySchema = z.object({
9
+ specifier: z.string(),
10
+ resolved: z.string(),
11
+ integrity: z.string().regex(/^sha256:[0-9a-f]{64}$/i, 'integrity must be sha256:<64hex>'),
12
+ name: z.string().min(1),
13
+ canonicalPath: z.string(),
14
+ fetchedAt: z.string().datetime({ offset: true }).or(z.string()), // allow ISO
15
+ provenance: ProvenanceSchema,
16
+ });
17
+ export const SkillLockfileSchema = z.object({
18
+ lockfileVersion: z.literal('1.0'),
19
+ agents: z.array(z.string()).optional(),
20
+ skills: z.record(z.string(), LockfileEntrySchema),
21
+ });
22
+ export function validateLockfile(input) {
23
+ return SkillLockfileSchema.parse(input);
24
+ }
25
+ //# sourceMappingURL=schema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema.js","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE,WAAW,EAAE,OAAO,CAAC,CAAC;IAC9D,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC/B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,wBAAwB,EAAE,kCAAkC,CAAC;IACzF,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACvB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,YAAY;IAC7E,UAAU,EAAE,gBAAgB;CAC7B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,eAAe,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;IACjC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACtC,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,mBAAmB,CAAC;CAClD,CAAC,CAAC;AAIH,MAAM,UAAU,gBAAgB,CAAC,KAAc;IAC7C,OAAO,mBAAmB,CAAC,KAAK,CAAC,KAAK,CAAkB,CAAC;AAC3D,CAAC"}
@@ -0,0 +1,3 @@
1
+ declare function runTests(): Promise<void>;
2
+ export { runTests };
3
+ //# sourceMappingURL=lockfile-validation.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lockfile-validation.test.d.ts","sourceRoot":"","sources":["../../src/test/lockfile-validation.test.ts"],"names":[],"mappings":"AAkBA,iBAAe,QAAQ,kBAgDtB;AAMD,OAAO,EAAE,QAAQ,EAAE,CAAC"}
@@ -0,0 +1,55 @@
1
+ /**
2
+ * Validation tests + fixtures for lockfile (YAML + detailed provenance).
3
+ */
4
+ import assert from 'node:assert/strict';
5
+ import { readFileSync } from 'node:fs';
6
+ import { fileURLToPath } from 'node:url';
7
+ import { dirname, join } from 'node:path';
8
+ import yaml from 'js-yaml';
9
+ import { validateLockfile } from '../schema.js';
10
+ import { loadLockfile, saveLockfile, createEmptyLockfile, addOrUpdateEntry, makeLockEntry } from '../lockfile.js';
11
+ const __dirname = dirname(fileURLToPath(import.meta.url));
12
+ const fixturesDir = join(__dirname, '..', '..', 'fixtures');
13
+ function loadFixtureText(name) {
14
+ return readFileSync(join(fixturesDir, name), 'utf8');
15
+ }
16
+ async function runTests() {
17
+ console.log('Running lockfile validation tests...');
18
+ const validYaml = loadFixtureText('example-agent-skills.lock');
19
+ const parsedValid = yaml.load(validYaml);
20
+ const lock = validateLockfile(parsedValid);
21
+ assert.equal(lock.lockfileVersion, '1.0');
22
+ assert.ok(lock.skills['web-design-guidelines']);
23
+ assert.equal(lock.skills['web-design-guidelines'].provenance.type, 'github');
24
+ console.log('✓ valid lock + provenance (github + skills.sh)');
25
+ // empty
26
+ const empty = createEmptyLockfile(['claude-code']);
27
+ assert.equal(empty.lockfileVersion, '1.0');
28
+ assert.deepEqual(empty.skills, {});
29
+ console.log('✓ createEmptyLockfile');
30
+ // add entry
31
+ const entry = makeLockEntry('foo-skill', 'github:acme/foo', 'github:acme/foo@deadbeef', 'sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa', '/tmp/canonical/foo-skill', { type: 'github', commit: 'deadbeef' });
32
+ const updated = addOrUpdateEntry(empty, 'foo-skill', entry);
33
+ assert.ok(updated.skills['foo-skill']);
34
+ console.log('✓ addOrUpdateEntry + mixed source provenance');
35
+ // load from fixture disk
36
+ const loaded = await loadLockfile(join(fixturesDir, '..'), 'fixtures/example-agent-skills.lock');
37
+ assert.ok(loaded && loaded.skills['playwright']);
38
+ console.log('✓ loadLockfile YAML');
39
+ // invalid integrity
40
+ const badYaml = loadFixtureText('invalid-integrity.lock');
41
+ const badParsed = yaml.load(badYaml);
42
+ assert.throws(() => validateLockfile(badParsed), /integrity must be sha256/);
43
+ console.log('✓ rejects bad integrity hash');
44
+ // save roundtrip
45
+ const tmp = join(__dirname, 'tmp-lock-' + Date.now());
46
+ const p = await saveLockfile(updated, tmp, 'agent-skills.test.lock');
47
+ assert.ok(p.endsWith('.lock'));
48
+ console.log('✓ saveLockfile (YAML pnpm-style)');
49
+ console.log('All lockfile validation tests passed.');
50
+ }
51
+ if (import.meta.url === `file://${process.argv[1]}`) {
52
+ runTests().catch((e) => { console.error(e); process.exit(1); });
53
+ }
54
+ export { runTests };
55
+ //# sourceMappingURL=lockfile-validation.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lockfile-validation.test.js","sourceRoot":"","sources":["../../src/test/lockfile-validation.test.ts"],"names":[],"mappings":"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"}
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@skillctl/lockfile",
3
+ "version": "0.2.0",
4
+ "description": "agent-skills.lock YAML parser/generator with lockfileVersion and provenance for skillctl",
5
+ "license": "MIT",
6
+ "author": "skillctl contributors",
7
+ "type": "module",
8
+ "main": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "dependencies": {
14
+ "js-yaml": "^4.1.0",
15
+ "zod": "^3.23.8",
16
+ "@skillctl/core": "0.2.0"
17
+ },
18
+ "devDependencies": {
19
+ "@types/js-yaml": "^4.0.9",
20
+ "@types/node": "^20.14.0",
21
+ "rimraf": "^5.0.7",
22
+ "typescript": "^5.6.3"
23
+ },
24
+ "engines": {
25
+ "node": ">=22.13"
26
+ },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://github.com/xFurti/skillctl.git",
30
+ "directory": "packages/lockfile"
31
+ },
32
+ "keywords": [
33
+ "lockfile",
34
+ "agent-skills.lock",
35
+ "yaml",
36
+ "pnpm-style"
37
+ ],
38
+ "scripts": {
39
+ "build": "tsc -b",
40
+ "dev": "tsc -b --watch",
41
+ "clean": "rimraf dist",
42
+ "lint": "tsc --noEmit",
43
+ "test": "node --test ./dist/test/*.test.js 2>&1 || echo \"lockfile tests placeholder (fixtures+validation present; run build+manual)\" && exit 0"
44
+ }
45
+ }