agent-skill-manager 2.3.0 → 2.5.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.
Files changed (35) hide show
  1. package/README.md +25 -37
  2. package/data/bundles/content-writing.json +30 -0
  3. package/data/bundles/devops.json +30 -0
  4. package/data/bundles/frontend-dev.json +35 -0
  5. package/data/bundles/ios-release.json +30 -0
  6. package/data/skill-index/antonbabenko_terraform-skill.json +146 -0
  7. package/data/skill-index/google_skills.json +1790 -0
  8. package/data/skill-index/luongnv89_asm.json +73 -0
  9. package/data/skill-index-resources.json +28 -1
  10. package/dist/agent-skill-manager.js +442 -431
  11. package/dist/chunk-7BMOBFGJ.js +2 -0
  12. package/dist/chunk-GOI5LV72.js +3 -0
  13. package/dist/chunk-PVEAYTE2.js +3 -0
  14. package/dist/chunk-QY4LTOTR.js +19 -0
  15. package/dist/config-55HAAFSH.js +2 -0
  16. package/dist/devtools-W557IAG7.js +8 -0
  17. package/dist/lock-SOHBB4N3.js +2 -0
  18. package/dist/src-YK2KIAU7.js +108 -0
  19. package/package.json +55 -21
  20. package/scripts/postinstall.cjs +3 -7
  21. package/dist/chunk-76faq0t9.js +0 -93
  22. package/dist/chunk-83zxj8cj.js +0 -3
  23. package/dist/chunk-chw0sgjp.js +0 -3
  24. package/dist/chunk-dtg819nd.js +0 -19
  25. package/dist/highlights-eq9cgrbb.scm +0 -604
  26. package/dist/highlights-ghv9g403.scm +0 -205
  27. package/dist/highlights-hk7bwhj4.scm +0 -284
  28. package/dist/highlights-r812a2qc.scm +0 -150
  29. package/dist/highlights-x6tmsnaa.scm +0 -115
  30. package/dist/injections-73j83es3.scm +0 -27
  31. package/dist/tree-sitter-javascript-nd0q4pe9.wasm +0 -0
  32. package/dist/tree-sitter-markdown-411r6y9b.wasm +0 -0
  33. package/dist/tree-sitter-markdown_inline-j5349f42.wasm +0 -0
  34. package/dist/tree-sitter-typescript-zxjzwt75.wasm +0 -0
  35. 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.0",
3
+ "version": "2.5.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": "bun run src/index.ts",
12
- "typecheck": "bun run --bun tsc --noEmit",
13
- "test": "bun test src/",
14
- "test:e2e": "bun test tests/e2e/",
15
- "test:e2e:node": "bun test tests/e2e/node-e2e.test.ts",
16
- "test:e2e:install": "bun test tests/e2e/npm-install-e2e.test.ts",
17
- "test:all": "bun test src/ && bun run build && bun test tests/e2e/",
18
- "dev": "bun run src/index.ts",
19
- "build": "bun run scripts/build.ts",
20
- "preindex": "bun run scripts/preindex.ts",
21
- "build:website": "bun scripts/build-catalog.ts",
22
- "prepublishOnly": "bun run build",
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
- "@opentui/core": "0.1.87",
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/agent-skill-manager#readme",
60
+ "homepage": "https://github.com/luongnv89/asm#readme",
53
61
  "repository": {
54
62
  "type": "git",
55
- "url": "git+https://github.com/luongnv89/agent-skill-manager.git"
63
+ "url": "git+https://github.com/luongnv89/asm.git"
56
64
  },
57
65
  "bugs": {
58
- "url": "https://github.com/luongnv89/agent-skill-manager/issues"
66
+ "url": "https://github.com/luongnv89/asm/issues"
59
67
  },
60
68
  "devDependencies": {
61
- "bun-types": "^1.3.10",
62
- "prettier": "^3.8.1"
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
  }
@@ -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 npm-vs-bun shadowing
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
- " Pick one package manager (npm OR bun) and remove the other install.\n",
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",