@mcowger/skillfu 0.1.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 +221 -0
- package/completions/_skillfu +83 -0
- package/completions/skillfu.bash +71 -0
- package/completions/skillfu.fish +35 -0
- package/dist/skillfu-cli.mjs +10583 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mcowger/skillfu",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A minimal CLI for installing agent skills. Symlink-only, lockfile-driven.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"skillfu": "dist/skillfu-cli.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/skillfu-cli.mjs",
|
|
11
|
+
"completions/"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "bun run src/cli.ts",
|
|
15
|
+
"build": "bun run build:node && bun run build:binary",
|
|
16
|
+
"build:binary": "bun build src/cli.ts --outfile dist/skillfu --target bun --compile",
|
|
17
|
+
"build:node": "bun build src/cli.ts --outfile dist/skillfu-cli.mjs --target node && sed -i '' '1s|#!/usr/bin/env bun|#!/usr/bin/env node|' dist/skillfu-cli.mjs && chmod +x dist/skillfu-cli.mjs",
|
|
18
|
+
"format": "prettier --write 'src/**/*.ts'",
|
|
19
|
+
"format:check": "prettier --check 'src/**/*.ts'",
|
|
20
|
+
"typecheck": "tsc --noEmit",
|
|
21
|
+
"test": "bun test",
|
|
22
|
+
"prepublishOnly": "bun run build:node"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"cli",
|
|
26
|
+
"agent",
|
|
27
|
+
"skills",
|
|
28
|
+
"ai",
|
|
29
|
+
"symlink",
|
|
30
|
+
"lockfile",
|
|
31
|
+
"kung-fu"
|
|
32
|
+
],
|
|
33
|
+
"author": "Matt Cowger",
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": ""
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@clack/prompts": "^1.3.0",
|
|
41
|
+
"commander": "^14.0.3",
|
|
42
|
+
"picocolors": "^1.1.1",
|
|
43
|
+
"simple-git": "^3.36.0",
|
|
44
|
+
"yaml": "^2.8.4"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/bun": "^1.3.13",
|
|
48
|
+
"prettier": "^3.5.3",
|
|
49
|
+
"typescript": "^5.9.3"
|
|
50
|
+
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=18"
|
|
53
|
+
}
|
|
54
|
+
}
|