@chiendt/ack-cli 0.0.0-dev.5
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 +714 -0
- package/bin/ack.js +56 -0
- package/cli-manifest.json +2143 -0
- package/dist/index.js +113291 -0
- package/dist/ui/agents/amp.png +0 -0
- package/dist/ui/agents/antigravity.png +0 -0
- package/dist/ui/agents/droid.png +0 -0
- package/dist/ui/agents/kilo.png +0 -0
- package/dist/ui/agents/opencode.svg +7 -0
- package/dist/ui/agents/openhands.png +0 -0
- package/dist/ui/agents/roo.png +0 -0
- package/dist/ui/apple-touch-icon.png +0 -0
- package/dist/ui/assets/index-fz2_unLw.css +1 -0
- package/dist/ui/assets/index-tjOmplh0.js +318 -0
- package/dist/ui/assets/vendor-CjYZYm_W.js +32 -0
- package/dist/ui/favicon.ico +0 -0
- package/dist/ui/images/apple-touch-icon.png +0 -0
- package/dist/ui/images/favicon-16.png +0 -0
- package/dist/ui/images/favicon-32.png +0 -0
- package/dist/ui/images/logo-192.png +0 -0
- package/dist/ui/images/logo-512.png +0 -0
- package/dist/ui/images/logo-dark-32.png +0 -0
- package/dist/ui/images/logo-light-32.png +0 -0
- package/dist/ui/images/logo-transparent-128.png +0 -0
- package/dist/ui/images/logo-transparent-32.png +0 -0
- package/dist/ui/images/logo-transparent-64.png +0 -0
- package/dist/ui/index.html +81 -0
- package/dist/ui/manifest.json +26 -0
- package/package.json +119 -0
package/package.json
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@chiendt/ack-cli",
|
|
3
|
+
"version": "0.0.0-dev.5",
|
|
4
|
+
"description": "ACK CLI - tool for bootstrapping and updating ACK kits (Claude Code agent kits)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/chiendt1108/ack-cli.git"
|
|
9
|
+
},
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"bin": {
|
|
14
|
+
"ack": "bin/ack.js"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"bin/ack.js",
|
|
18
|
+
"dist/index.js",
|
|
19
|
+
"dist/ui/",
|
|
20
|
+
"cli-manifest.json"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "bun run src/index.ts",
|
|
24
|
+
"dashboard:dev": "cd src/ui && bun install --silent && cd ../.. && bun run src/index.ts config ui --dev",
|
|
25
|
+
"ui:build": "cd src/ui && bun install --silent && bun run build",
|
|
26
|
+
"ui:test": "cd src/ui && bun install --silent && bun run test",
|
|
27
|
+
"ui:test:plans": "cd src/ui && bun install --silent && bunx vitest run src/hooks/__tests__/use-plans-dashboard.vitest.ts src/pages/__tests__/PlansPage.vitest.tsx src/pages/__tests__/PlanDetailPage.vitest.tsx",
|
|
28
|
+
"ui:dev": "cd src/ui && bun run dev",
|
|
29
|
+
"build": "bun build src/index.ts --outdir dist --target node --external @octokit/rest --external better-sqlite3 && node -e \"const fs=require('fs'),f='dist/index.js',c=fs.readFileSync(f,'utf-8');fs.writeFileSync(f,c.replace(/^#!.*\\n\\/\\/ @bun\\n/,''))\"",
|
|
30
|
+
"verify:package": "node scripts/prepublish-check.js",
|
|
31
|
+
"test": "bun test",
|
|
32
|
+
"test:integration": "ACK_RUN_CLI_INTEGRATION=1 bun test tests/integration/cli.test.ts",
|
|
33
|
+
"test:watch": "bun test --watch",
|
|
34
|
+
"test:quick": "./scripts/dev-quick-start.sh test",
|
|
35
|
+
"test:e2e": "playwright test --config=playwright.config.ts",
|
|
36
|
+
"test:e2e:ui": "playwright test --ui --config=playwright.config.ts",
|
|
37
|
+
"lint": "biome check .",
|
|
38
|
+
"lint:fix": "biome check --fix .",
|
|
39
|
+
"lint:fix-unsafe": "biome check --fix --unsafe .",
|
|
40
|
+
"format": "biome format --write .",
|
|
41
|
+
"typecheck": "tsc --noEmit",
|
|
42
|
+
"dev:quick": "./scripts/dev-quick-start.sh",
|
|
43
|
+
"dev:all": "./scripts/dev-quick-start.sh all",
|
|
44
|
+
"metrics": "bun run scripts/workflow-metrics.ts",
|
|
45
|
+
"validate": "bun run typecheck && bun run lint && bun test && bun run ui:test && bun run build",
|
|
46
|
+
"ci:local": "bash scripts/ci-local.sh",
|
|
47
|
+
"install:hooks": "./.githooks/install.sh",
|
|
48
|
+
"prepare": "node -e \"try{require('child_process').execSync('git rev-parse --git-dir',{stdio:'ignore'});require('child_process').execSync('bash .githooks/install.sh',{stdio:'inherit'})}catch(e){console.warn('[i] Hook install skipped:',e.message)}\"",
|
|
49
|
+
"help:check-parity": "bun run scripts/check-help-parity.ts",
|
|
50
|
+
"manifest:generate": "bun run scripts/generate-cli-manifest.ts",
|
|
51
|
+
"docs:generate": "bun run scripts/generate-cli-reference.ts",
|
|
52
|
+
"prepublishOnly": "bun run help:check-parity && bun run manifest:generate && bun run docs:generate"
|
|
53
|
+
},
|
|
54
|
+
"keywords": [
|
|
55
|
+
"cli",
|
|
56
|
+
"ack",
|
|
57
|
+
"ack-cli",
|
|
58
|
+
"ackkit",
|
|
59
|
+
"agent-kit",
|
|
60
|
+
"boilerplate",
|
|
61
|
+
"bootstrap",
|
|
62
|
+
"template"
|
|
63
|
+
],
|
|
64
|
+
"author": "ACK",
|
|
65
|
+
"license": "MIT",
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=18.0.0"
|
|
68
|
+
},
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"@clack/prompts": "^0.7.0",
|
|
71
|
+
"@octokit/rest": "^22.0.0",
|
|
72
|
+
"better-sqlite3": "^12.6.2",
|
|
73
|
+
"cac": "^6.7.14",
|
|
74
|
+
"chokidar": "^5.0.0",
|
|
75
|
+
"cli-progress": "^3.12.0",
|
|
76
|
+
"compare-versions": "^6.1.1",
|
|
77
|
+
"diff": "^8.0.3",
|
|
78
|
+
"express": "^5.2.1",
|
|
79
|
+
"extract-zip": "^2.0.1",
|
|
80
|
+
"fs-extra": "^11.2.0",
|
|
81
|
+
"get-port": "^7.1.0",
|
|
82
|
+
"gray-matter": "^4.0.3",
|
|
83
|
+
"ignore": "^5.3.2",
|
|
84
|
+
"minimatch": "^10.1.1",
|
|
85
|
+
"open": "^11.0.0",
|
|
86
|
+
"ora": "^8.0.0",
|
|
87
|
+
"p-limit": "^7.2.0",
|
|
88
|
+
"picocolors": "^1.1.1",
|
|
89
|
+
"picomatch": "^4.0.3",
|
|
90
|
+
"proper-lockfile": "^4.1.2",
|
|
91
|
+
"semver": "^7.7.3",
|
|
92
|
+
"tar": "^7.4.3",
|
|
93
|
+
"tmp": "^0.2.3",
|
|
94
|
+
"ws": "^8.19.0",
|
|
95
|
+
"zod": "^3.23.8"
|
|
96
|
+
},
|
|
97
|
+
"devDependencies": {
|
|
98
|
+
"@biomejs/biome": "^1.9.4",
|
|
99
|
+
"@playwright/test": "^1.59.1",
|
|
100
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
101
|
+
"@semantic-release/git": "^10.0.1",
|
|
102
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
103
|
+
"@types/bun": "latest",
|
|
104
|
+
"@types/cli-progress": "^3.11.6",
|
|
105
|
+
"@types/diff": "^8.0.0",
|
|
106
|
+
"@types/express": "^5.0.6",
|
|
107
|
+
"@types/fs-extra": "^11.0.4",
|
|
108
|
+
"@types/node": "^22.19.7",
|
|
109
|
+
"@types/picomatch": "^4.0.2",
|
|
110
|
+
"@types/proper-lockfile": "^4.1.4",
|
|
111
|
+
"@types/semver": "^7.7.1",
|
|
112
|
+
"@types/tar": "^6.1.13",
|
|
113
|
+
"@types/tmp": "^0.2.6",
|
|
114
|
+
"@types/ws": "^8.18.1",
|
|
115
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
116
|
+
"semantic-release": "^24.2.0",
|
|
117
|
+
"typescript": "^5.7.2"
|
|
118
|
+
}
|
|
119
|
+
}
|