agent-skill-manager 2.3.0 → 2.4.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 +25 -37
- package/data/bundles/content-writing.json +30 -0
- package/data/bundles/devops.json +30 -0
- package/data/bundles/eu-project-ops.json +25 -0
- package/data/bundles/frontend-dev.json +35 -0
- package/data/bundles/ios-release.json +30 -0
- package/data/skill-index/luongnv89_asm.json +73 -0
- package/data/skill-index-resources.json +10 -1
- package/dist/agent-skill-manager.js +442 -431
- package/dist/chunk-7BMOBFGJ.js +2 -0
- package/dist/chunk-CLIZUJVB.js +19 -0
- package/dist/chunk-GOI5LV72.js +3 -0
- package/dist/chunk-PVEAYTE2.js +3 -0
- package/dist/config-55HAAFSH.js +2 -0
- package/dist/devtools-W557IAG7.js +8 -0
- package/dist/lock-SOHBB4N3.js +2 -0
- package/dist/src-RNJS76U3.js +108 -0
- package/package.json +55 -21
- package/scripts/postinstall.cjs +3 -7
- package/dist/chunk-76faq0t9.js +0 -93
- package/dist/chunk-83zxj8cj.js +0 -3
- package/dist/chunk-chw0sgjp.js +0 -3
- package/dist/chunk-dtg819nd.js +0 -19
- package/dist/highlights-eq9cgrbb.scm +0 -604
- package/dist/highlights-ghv9g403.scm +0 -205
- package/dist/highlights-hk7bwhj4.scm +0 -284
- package/dist/highlights-r812a2qc.scm +0 -150
- package/dist/highlights-x6tmsnaa.scm +0 -115
- package/dist/injections-73j83es3.scm +0 -27
- package/dist/tree-sitter-javascript-nd0q4pe9.wasm +0 -0
- package/dist/tree-sitter-markdown-411r6y9b.wasm +0 -0
- package/dist/tree-sitter-markdown_inline-j5349f42.wasm +0 -0
- package/dist/tree-sitter-typescript-zxjzwt75.wasm +0 -0
- package/dist/tree-sitter-zig-e78zbjpm.wasm +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-skill-manager",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "Interactive TUI for managing installed skills for AI coding agents (Claude Code, Codex, OpenClaw, and more)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -8,18 +8,23 @@
|
|
|
8
8
|
"asm": "dist/agent-skill-manager.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
|
-
"start": "
|
|
12
|
-
"typecheck": "
|
|
13
|
-
"test": "
|
|
14
|
-
"test:
|
|
15
|
-
"test:e2e
|
|
16
|
-
"test:e2e:
|
|
17
|
-
"test:
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
11
|
+
"start": "tsx src/index.tsx",
|
|
12
|
+
"typecheck": "tsc --noEmit",
|
|
13
|
+
"test": "vitest run src/",
|
|
14
|
+
"test:watch": "vitest src/",
|
|
15
|
+
"test:e2e": "vitest run tests/e2e/",
|
|
16
|
+
"test:e2e:node": "vitest run tests/e2e/node-e2e.test.ts",
|
|
17
|
+
"test:e2e:install": "vitest run tests/e2e/npm-install-e2e.test.ts",
|
|
18
|
+
"test:site": "vitest run website-src/",
|
|
19
|
+
"test:all": "vitest run src/ && vitest run website-src/ && npm run build && vitest run tests/e2e/",
|
|
20
|
+
"dev": "tsx src/index.tsx",
|
|
21
|
+
"dev:site": "vite --config website-src/vite.config.js",
|
|
22
|
+
"build": "tsx scripts/build.ts",
|
|
23
|
+
"build:site": "vite build --config website-src/vite.config.js",
|
|
24
|
+
"preindex": "tsx scripts/preindex.ts",
|
|
25
|
+
"build:website": "tsx scripts/build-catalog.ts && npm run build:site",
|
|
26
|
+
"lint:site": "eslint --config website-src/eslint.config.js 'website-src/src/**/*.{js,jsx}'",
|
|
27
|
+
"prepublishOnly": "npm run build",
|
|
23
28
|
"postinstall": "node scripts/postinstall.cjs"
|
|
24
29
|
},
|
|
25
30
|
"files": [
|
|
@@ -30,12 +35,15 @@
|
|
|
30
35
|
"LICENSE"
|
|
31
36
|
],
|
|
32
37
|
"dependencies": {
|
|
33
|
-
"@
|
|
38
|
+
"@inkjs/ui": "^2",
|
|
39
|
+
"ink": "^5",
|
|
40
|
+
"react": "^18",
|
|
41
|
+
"react-dom": "^18",
|
|
42
|
+
"react-window": "^2.2.7",
|
|
34
43
|
"yaml": "^2.8.3"
|
|
35
44
|
},
|
|
36
45
|
"engines": {
|
|
37
|
-
"node": ">=18"
|
|
38
|
-
"bun": ">=1.0.0"
|
|
46
|
+
"node": ">=18"
|
|
39
47
|
},
|
|
40
48
|
"keywords": [
|
|
41
49
|
"agent-skill-manager",
|
|
@@ -49,16 +57,42 @@
|
|
|
49
57
|
],
|
|
50
58
|
"author": "luongnv89",
|
|
51
59
|
"license": "MIT",
|
|
52
|
-
"homepage": "https://github.com/luongnv89/
|
|
60
|
+
"homepage": "https://github.com/luongnv89/asm#readme",
|
|
53
61
|
"repository": {
|
|
54
62
|
"type": "git",
|
|
55
|
-
"url": "git+https://github.com/luongnv89/
|
|
63
|
+
"url": "git+https://github.com/luongnv89/asm.git"
|
|
56
64
|
},
|
|
57
65
|
"bugs": {
|
|
58
|
-
"url": "https://github.com/luongnv89/
|
|
66
|
+
"url": "https://github.com/luongnv89/asm/issues"
|
|
59
67
|
},
|
|
60
68
|
"devDependencies": {
|
|
61
|
-
"
|
|
62
|
-
"
|
|
69
|
+
"@eslint/js": "^9.17.0",
|
|
70
|
+
"@testing-library/react": "^16.1.0",
|
|
71
|
+
"@types/node": "^18",
|
|
72
|
+
"@types/react": "^18",
|
|
73
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
74
|
+
"@vitest/ui": "^2",
|
|
75
|
+
"autoprefixer": "^10.4.20",
|
|
76
|
+
"class-variance-authority": "^0.7.1",
|
|
77
|
+
"clsx": "^2.1.1",
|
|
78
|
+
"esbuild": "^0.24",
|
|
79
|
+
"eslint": "^9.17.0",
|
|
80
|
+
"eslint-plugin-react": "^7.37.2",
|
|
81
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
82
|
+
"globals": "^15.14.0",
|
|
83
|
+
"ink-testing-library": "^4",
|
|
84
|
+
"jsdom": "^25.0.1",
|
|
85
|
+
"lucide-react": "^0.468.0",
|
|
86
|
+
"minisearch": "7.2.0",
|
|
87
|
+
"postcss": "^8.4.49",
|
|
88
|
+
"prettier": "^3.8.1",
|
|
89
|
+
"react-router-dom": "^6.28.0",
|
|
90
|
+
"tailwind-merge": "^2.6.1",
|
|
91
|
+
"tailwindcss": "^3.4.17",
|
|
92
|
+
"tailwindcss-animate": "^1.0.7",
|
|
93
|
+
"tsx": "^4",
|
|
94
|
+
"typescript": "^5",
|
|
95
|
+
"vite": "^5.4.11",
|
|
96
|
+
"vitest": "^2"
|
|
63
97
|
}
|
|
64
98
|
}
|
package/scripts/postinstall.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* Runs after `npm install -g agent-skill-manager`.
|
|
4
4
|
*
|
|
5
|
-
* Walks PATH for duplicate `asm` binaries so users catch
|
|
5
|
+
* Walks PATH for duplicate `asm` binaries so users catch shadowing
|
|
6
6
|
* before the stale install silently outruns the new one. Never fails the
|
|
7
7
|
* install — any unexpected error is swallowed.
|
|
8
8
|
*
|
|
@@ -17,11 +17,7 @@ try {
|
|
|
17
17
|
const isGlobal =
|
|
18
18
|
process.env.npm_config_global === "true" ||
|
|
19
19
|
process.env.npm_config_global === "1";
|
|
20
|
-
if (
|
|
21
|
-
process.env.ASM_SKIP_POSTINSTALL ||
|
|
22
|
-
process.env.CI ||
|
|
23
|
-
!isGlobal
|
|
24
|
-
) {
|
|
20
|
+
if (process.env.ASM_SKIP_POSTINSTALL || process.env.CI || !isGlobal) {
|
|
25
21
|
process.exit(0);
|
|
26
22
|
}
|
|
27
23
|
|
|
@@ -73,7 +69,7 @@ try {
|
|
|
73
69
|
process.stderr.write(` shadowed: ${other.path}\n`);
|
|
74
70
|
}
|
|
75
71
|
process.stderr.write(
|
|
76
|
-
"
|
|
72
|
+
" Remove the stale install so the new one resolves first on PATH.\n",
|
|
77
73
|
);
|
|
78
74
|
process.stderr.write(
|
|
79
75
|
" See: https://github.com/luongnv89/agent-skill-manager#troubleshooting\n\n",
|