askill-cli 0.1.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/LICENSE +21 -0
- package/README.md +254 -0
- package/dist/cli.mjs +2816 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "askill-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "askill - The Agent Skill Package Manager",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"askill": "./dist/cli.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "npx tsx src/cli.ts",
|
|
15
|
+
"build": "npx esbuild src/cli.ts --bundle --platform=node --format=esm --outfile=dist/cli.mjs --external:@clack/prompts --external:picocolors --external:semver",
|
|
16
|
+
"build:bun": "bun build ./src/cli.ts --outfile ./dist/cli.mjs --target node",
|
|
17
|
+
"build:binary": "bun build ./src/cli.ts --compile --outfile ./dist/askill",
|
|
18
|
+
"build:all": "npm run build && npm run build:binary",
|
|
19
|
+
"test": "npx tsx --test src/**/*.test.ts",
|
|
20
|
+
"test:e2e": "docker build -f Dockerfile.test -t askill-test . && docker run --rm askill-test",
|
|
21
|
+
"test:e2e:build": "docker build -f Dockerfile.test -t askill-test .",
|
|
22
|
+
"test:e2e:run": "docker run --rm askill-test",
|
|
23
|
+
"release": "./scripts/release.sh",
|
|
24
|
+
"prepublishOnly": "npm run build"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"cli",
|
|
28
|
+
"skills",
|
|
29
|
+
"ai-agents",
|
|
30
|
+
"skill-package-manager",
|
|
31
|
+
"askill",
|
|
32
|
+
"claude-code",
|
|
33
|
+
"cursor",
|
|
34
|
+
"windsurf",
|
|
35
|
+
"opencode",
|
|
36
|
+
"agent"
|
|
37
|
+
],
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "https://github.com/avibe-bot/askill.git"
|
|
41
|
+
},
|
|
42
|
+
"homepage": "https://askill.sh",
|
|
43
|
+
"author": "askill",
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/bun": "latest",
|
|
47
|
+
"@types/node": "^22.10.0",
|
|
48
|
+
"esbuild": "^0.27.2",
|
|
49
|
+
"typescript": "^5.9.3"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@clack/prompts": "^0.11.0",
|
|
53
|
+
"picocolors": "^1.1.1",
|
|
54
|
+
"semver": "^7.6.0"
|
|
55
|
+
},
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": ">=18"
|
|
58
|
+
}
|
|
59
|
+
}
|