skillhub 0.2.2 → 0.2.4

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 SkillHub Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,3 +1,4 @@
1
+ import { createRequire as __createRequire } from 'module'; const require = __createRequire(import.meta.url);
1
2
  var __create = Object.create;
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
package/dist/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
+ import { createRequire as __createRequire } from 'module'; const require = __createRequire(import.meta.url);
2
3
  import {
3
4
  __commonJS,
4
5
  __require,
@@ -12,7 +13,7 @@ import {
12
13
  isSkillInstalled,
13
14
  loadConfig,
14
15
  saveConfig
15
- } from "./chunk-5WBBOQ42.js";
16
+ } from "./chunk-NEDYJNFV.js";
16
17
 
17
18
  // ../../node_modules/.pnpm/kind-of@6.0.3/node_modules/kind-of/index.js
18
19
  var require_kind_of = __commonJS({
@@ -4826,7 +4827,7 @@ program.command("config").description("Manage CLI configuration").option("--set
4826
4827
  program.command("uninstall <skill-name>").description("Uninstall a skill").option("-p, --platform <platform>", "Target platform").option("--project", "Uninstall from project instead of globally").action(async (skillName, options2) => {
4827
4828
  const fs3 = await import("fs-extra");
4828
4829
  const pathModule = await import("path");
4829
- const { getSkillPath: getSkillPath2, isSkillInstalled: isSkillInstalled2 } = await import("./paths-XP6IKJAN.js");
4830
+ const { getSkillPath: getSkillPath2, isSkillInstalled: isSkillInstalled2 } = await import("./paths-AZYVSV7E.js");
4830
4831
  const userConfig = await loadConfig();
4831
4832
  const platform = options2.platform || userConfig.defaultPlatform || "claude";
4832
4833
  const installed = await isSkillInstalled2(platform, skillName, options2.project);
@@ -4851,7 +4852,7 @@ program.command("uninstall <skill-name>").description("Uninstall a skill").optio
4851
4852
  program.command("update [skill-name]").description("Update installed skills").option("-p, --platform <platform>", "Target platform").option("--all", "Update all installed skills").action(async (skillName, options2) => {
4852
4853
  const fsExtra = await import("fs-extra");
4853
4854
  const pathModule = await import("path");
4854
- const { getSkillsPath: getSkillsPath2, getSkillPath: getSkillPath2 } = await import("./paths-XP6IKJAN.js");
4855
+ const { getSkillsPath: getSkillsPath2, getSkillPath: getSkillPath2 } = await import("./paths-AZYVSV7E.js");
4855
4856
  const userConfig = await loadConfig();
4856
4857
  const platform = options2.platform || userConfig.defaultPlatform || "claude";
4857
4858
  const ALL_PLATFORMS2 = ["claude", "codex", "copilot", "cursor", "windsurf"];
@@ -1,3 +1,4 @@
1
+ import { createRequire as __createRequire } from 'module'; const require = __createRequire(import.meta.url);
1
2
  import {
2
3
  detectPlatform,
3
4
  ensureSkillsDir,
@@ -9,7 +10,7 @@ import {
9
10
  isSkillInstalled,
10
11
  loadConfig,
11
12
  saveConfig
12
- } from "./chunk-5WBBOQ42.js";
13
+ } from "./chunk-NEDYJNFV.js";
13
14
  export {
14
15
  detectPlatform,
15
16
  ensureSkillsDir,
package/package.json CHANGED
@@ -1,61 +1,61 @@
1
- {
2
- "name": "skillhub",
3
- "version": "0.2.2",
4
- "description": "CLI tool for managing AI Agent skills - search, install, and update skills for Claude, Codex, Copilot, and more",
5
- "author": "SkillHub Contributors",
6
- "license": "MIT",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/anthropics/skillhub.git",
10
- "directory": "apps/cli"
11
- },
12
- "homepage": "https://skills.palebluedot.live",
13
- "type": "module",
14
- "bin": {
15
- "skillhub": "./dist/index.js"
16
- },
17
- "files": [
18
- "dist"
19
- ],
20
- "scripts": {
21
- "build": "tsup",
22
- "dev": "tsx src/index.ts",
23
- "start": "node dist/index.js",
24
- "lint": "eslint src/",
25
- "typecheck": "tsc --noEmit",
26
- "test": "vitest",
27
- "test:run": "vitest run"
28
- },
29
- "dependencies": {
30
- "@octokit/rest": "^20.0.2",
31
- "chalk": "^5.3.0",
32
- "commander": "^11.1.0",
33
- "fs-extra": "^11.2.0",
34
- "ora": "^8.0.1",
35
- "prompts": "^2.4.2"
36
- },
37
- "devDependencies": {
38
- "skillhub-core": "workspace:*",
39
- "@types/fs-extra": "^11.0.4",
40
- "@types/node": "^20.10.0",
41
- "@types/prompts": "^2.4.9",
42
- "tsup": "^8.0.1",
43
- "tsx": "^4.7.0",
44
- "typescript": "^5.3.0",
45
- "vitest": "^1.2.0"
46
- },
47
- "engines": {
48
- "node": ">=18.0.0"
49
- },
50
- "keywords": [
51
- "ai",
52
- "agent",
53
- "skills",
54
- "cli",
55
- "claude",
56
- "codex",
57
- "copilot",
58
- "cursor",
59
- "windsurf"
60
- ]
61
- }
1
+ {
2
+ "name": "skillhub",
3
+ "version": "0.2.4",
4
+ "description": "CLI tool for managing AI Agent skills - search, install, and update skills for Claude, Codex, Copilot, and more",
5
+ "author": "SkillHub Contributors",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/airano-ir/skillhub.git",
10
+ "directory": "apps/cli"
11
+ },
12
+ "homepage": "https://skills.palebluedot.live",
13
+ "type": "module",
14
+ "bin": {
15
+ "skillhub": "./dist/index.js"
16
+ },
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "dependencies": {
21
+ "@octokit/rest": "^20.0.2",
22
+ "chalk": "^5.3.0",
23
+ "commander": "^11.1.0",
24
+ "fs-extra": "^11.2.0",
25
+ "ora": "^8.0.1",
26
+ "prompts": "^2.4.2"
27
+ },
28
+ "devDependencies": {
29
+ "@types/fs-extra": "^11.0.4",
30
+ "@types/node": "^20.10.0",
31
+ "@types/prompts": "^2.4.9",
32
+ "tsup": "^8.0.1",
33
+ "tsx": "^4.7.0",
34
+ "typescript": "^5.3.0",
35
+ "vitest": "^1.2.0",
36
+ "skillhub-core": "0.1.0"
37
+ },
38
+ "engines": {
39
+ "node": ">=18.0.0"
40
+ },
41
+ "keywords": [
42
+ "ai",
43
+ "agent",
44
+ "skills",
45
+ "cli",
46
+ "claude",
47
+ "codex",
48
+ "copilot",
49
+ "cursor",
50
+ "windsurf"
51
+ ],
52
+ "scripts": {
53
+ "build": "tsup",
54
+ "dev": "tsx src/index.ts",
55
+ "start": "node dist/index.js",
56
+ "lint": "eslint src/",
57
+ "typecheck": "tsc --noEmit",
58
+ "test": "vitest",
59
+ "test:run": "vitest run"
60
+ }
61
+ }