@sstar/skill-install 1.0.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/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@sstar/skill-install",
3
+ "version": "1.0.0",
4
+ "description": "Agent Skill installation tool - download, extract, validate, and install skills for Claude Code and Codex",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "skill-install": "./dist/cli.js"
8
+ },
9
+ "scripts": {
10
+ "build": "tsc",
11
+ "prepublishOnly": "npm run build",
12
+ "start": "node dist/cli.js",
13
+ "dev": "ts-node src/cli.ts",
14
+ "prepack": "npm run build"
15
+ },
16
+ "keywords": [
17
+ "skills",
18
+ "agent",
19
+ "claude",
20
+ "codex",
21
+ "cli",
22
+ "install",
23
+ "ai",
24
+ "agent-skills"
25
+ ],
26
+ "author": "ekko.bao",
27
+ "license": "MIT",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "https://github.com/ekko.bao/skill-install"
31
+ },
32
+ "homepage": "https://github.com/ekko.bao/skill-install#readme",
33
+ "bugs": {
34
+ "url": "https://github.com/ekko.bao/skill-install/issues"
35
+ },
36
+ "engines": {
37
+ "node": ">=18.0.0"
38
+ },
39
+ "dependencies": {
40
+ "adm-zip": "^0.5.16",
41
+ "axios": "^1.6.0",
42
+ "cheerio": "^1.0.0-rc.12",
43
+ "commander": "^12.0.0",
44
+ "js-yaml": "^4.1.1",
45
+ "tar": "^7.5.6",
46
+ "tough-cookie": "^4.1.3"
47
+ },
48
+ "devDependencies": {
49
+ "@types/adm-zip": "^0.5.7",
50
+ "@types/js-yaml": "^4.0.9",
51
+ "@types/node": "^20.0.0",
52
+ "@types/tar": "^6.1.13",
53
+ "@types/tough-cookie": "^4.0.0",
54
+ "ts-node": "^10.9.0",
55
+ "typescript": "^5.0.0"
56
+ },
57
+ "files": [
58
+ "dist",
59
+ "README.md",
60
+ "LICENSE"
61
+ ]
62
+ }