@gobing-ai/superskill 0.1.1 → 0.1.2
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/package.json +53 -53
package/package.json
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
2
|
+
"name": "@gobing-ai/superskill",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "A manager for multi-agent skill, slash command, subagent, hook, MCP and etc.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"cli",
|
|
7
|
+
"claude-code",
|
|
8
|
+
"skills",
|
|
9
|
+
"agents",
|
|
10
|
+
"codex",
|
|
11
|
+
"pi",
|
|
12
|
+
"superskill"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/gobing-ai/superskill.git"
|
|
17
|
+
},
|
|
18
|
+
"author": "Robin Min <minlongbing@gmail.com>",
|
|
19
|
+
"license": "Apache-2.0",
|
|
20
|
+
"bin": {
|
|
21
|
+
"superskill": "dist/index.js"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist/",
|
|
25
|
+
"templates/",
|
|
26
|
+
"README.md"
|
|
27
|
+
],
|
|
28
|
+
"engines": {
|
|
29
|
+
"bun": ">=1.3.0"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"start": "bun run src/index.ts",
|
|
33
|
+
"build": "bun build src/index.ts --outfile ../../dist/cli/index.js --target bun && bun run ../../scripts/postbuild.ts ../../dist/cli/index.js",
|
|
34
|
+
"prepublishOnly": "bun run build && mkdir -p dist && cp ../../dist/cli/index.js dist/index.js",
|
|
35
|
+
"test": "NODE_ENV=test bun test --reporter=dots",
|
|
36
|
+
"typecheck": "tsc --noEmit"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@gobing-ai/ts-ai-runner": "^0.3.19",
|
|
40
|
+
"@gobing-ai/ts-db": "^0.3.19",
|
|
41
|
+
"@gobing-ai/ts-utils": "^0.3.19",
|
|
42
|
+
"commander": "^14.0.0",
|
|
43
|
+
"drizzle-orm": "^0.44.0",
|
|
44
|
+
"drizzle-zod": "^0.7.0",
|
|
45
|
+
"rulesync": "^8.28.1",
|
|
46
|
+
"yaml": "^2.9.0",
|
|
47
|
+
"zod": "^3.25.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/bun": "1.3.14"
|
|
51
|
+
},
|
|
52
|
+
"publishConfig": {
|
|
53
|
+
"access": "public"
|
|
54
|
+
}
|
|
55
55
|
}
|