skillpass 0.1.0 → 0.3.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/README.md +18 -5
- package/bin/skillpass.js +2 -0
- package/dist/{cli.mjs → cli.js} +985 -366
- package/package.json +3 -3
- package/bin/skillpass.mjs +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillpass",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Validation-first installer for AI agent skills: search the SkillPass directory, inspect a skill's passport, and install hash-verified skills and packs for Claude Code, Codex, and more.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"author": "Brad Traversy",
|
|
22
22
|
"type": "module",
|
|
23
23
|
"bin": {
|
|
24
|
-
"skillpass": "./bin/skillpass.
|
|
24
|
+
"skillpass": "./bin/skillpass.js"
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
27
|
"bin",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"validator": "0.3.0"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
|
-
"build": "esbuild src/cli.ts --bundle --platform=node --format=esm --outfile=dist/cli.
|
|
43
|
+
"build": "esbuild src/cli.ts --bundle --platform=node --format=esm --outfile=dist/cli.js --log-level=warning",
|
|
44
44
|
"typecheck": "tsc --noEmit"
|
|
45
45
|
}
|
|
46
46
|
}
|
package/bin/skillpass.mjs
DELETED