claude-cli-advanced-starter-pack 1.0.4 → 1.0.7
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 +69 -5
- package/package.json +69 -69
- package/src/commands/init.js +315 -37
- package/src/commands/setup-wizard.js +736 -110
- package/src/data/releases.json +349 -0
- package/src/utils/version-check.js +512 -0
- package/templates/commands/project-impl.template.md +320 -0
- package/templates/commands/update-check.template.md +322 -0
- package/templates/hooks/ccasp-update-check.template.js +241 -0
package/README.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# Claude CLI Advanced Starter Pack
|
|
2
2
|
|
|
3
|
+
```
|
|
4
|
+
┌─────────────────────────────────────────────────────────────────────────────────┐
|
|
5
|
+
│ 📦 NEW UPDATE AVAILABLE: v1.0.5 → v1.0.7 │
|
|
6
|
+
├─────────────────────────────────────────────────────────────────────────────────┤
|
|
7
|
+
│ What's New: │
|
|
8
|
+
│ • Enhanced removal wizard with full backup/restore │
|
|
9
|
+
│ • Automatic update notifications on startup │
|
|
10
|
+
│ • Dynamic menu with version tracking │
|
|
11
|
+
├─────────────────────────────────────────────────────────────────────────────────┤
|
|
12
|
+
│ Press [N] to update now │ Press [U] for details │ Press any to continue │
|
|
13
|
+
└─────────────────────────────────────────────────────────────────────────────────┘
|
|
14
|
+
|
|
15
|
+
╔═══════════════════════════════════════════════════════════════════════════════╗
|
|
16
|
+
║ ║
|
|
17
|
+
║ ╔═╗╦ ╔═╗╦ ╦╔╦╗╔═╗ ╔═╗╔╦╗╦ ╦╔═╗╔╗╔╔═╗╔═╗╔╦╗ ╔═╗╔╦╗╔═╗╦═╗╔╦╗╔═╗╦═╗ ║
|
|
18
|
+
║ ║ ║ ╠═╣║ ║ ║║║╣ ╠═╣ ║║╚╗╔╝╠═╣║║║║ ║╣ ║║ ╚═╗ ║ ╠═╣╠╦╝ ║ ║╣ ╠╦╝ ║
|
|
19
|
+
║ ╚═╝╩═╝╩ ╩╚═╝═╩╝╚═╝ ╩ ╩═╩╝ ╚╝ ╩ ╩╝╚╝╚═╝╚═╝═╩╝ ╚═╝ ╩ ╩ ╩╩╚═ ╩ ╚═╝╩╚═ ║
|
|
20
|
+
║ ║
|
|
21
|
+
║ Your Project Name v1.0.5 [NEW UPDATE] ║
|
|
22
|
+
║ ║
|
|
23
|
+
╠═══════════════════════════════════════════════════════════════════════════════╣
|
|
24
|
+
║ ║
|
|
25
|
+
║ Quick Actions: ║
|
|
26
|
+
║ ───────────── ║
|
|
27
|
+
║ [T] Run Tests [G] GitHub Task [P] Phase Dev Plan ║
|
|
28
|
+
║ [A] Create Agent [H] Create Hook [S] Create Skill ║
|
|
29
|
+
║ [M] Explore MCP [C] Claude Audit [E] Explore Codebase ║
|
|
30
|
+
║ ║
|
|
31
|
+
║ Project Resources: ║
|
|
32
|
+
║ ────────────────── ║
|
|
33
|
+
║ [1] View Agents [2] View Skills [3] View Hooks ║
|
|
34
|
+
║ [4] View Commands [5] Settings [6] Documentation ║
|
|
35
|
+
║ ║
|
|
36
|
+
║ Project Implementation: ║
|
|
37
|
+
║ ─────────────────────── ║
|
|
38
|
+
║ [I] /project-impl Agent-powered setup & configuration ║
|
|
39
|
+
║ ║
|
|
40
|
+
║ Navigation: ║
|
|
41
|
+
║ ─────────── ║
|
|
42
|
+
║ [U] Check for Updates [R] Refresh Menu [?] Help [Q] Exit ║
|
|
43
|
+
║ [N] UPDATE NOW Run: npm update -g claude-cli-advanced-starter-pack ║
|
|
44
|
+
║ ║
|
|
45
|
+
╚═══════════════════════════════════════════════════════════════════════════════╝
|
|
46
|
+
```
|
|
47
|
+
|
|
3
48
|
**Advanced Claude Code CLI Toolkit - Agents, Hooks, Skills, MCP Servers, Phased Development, and GitHub Integration**
|
|
4
49
|
|
|
5
50
|
A platform-agnostic toolkit for supercharging your Claude Code CLI experience with:
|
|
@@ -65,12 +110,14 @@ Mobile-ready setup with single-character inputs:
|
|
|
65
110
|
1. Quick Start - Detect stack + init .claude
|
|
66
111
|
2. Full Setup - All features + customization
|
|
67
112
|
3. GitHub Setup - Connect project board
|
|
68
|
-
4.
|
|
69
|
-
5.
|
|
70
|
-
6.
|
|
71
|
-
7. View Templates - Browse available items
|
|
72
|
-
8. Project Settings - Configure deployment, tunnels, etc.
|
|
113
|
+
4. View Templates - Browse available items
|
|
114
|
+
5. Prior Releases - Review & add features from past versions
|
|
115
|
+
6. Remove CCASP - Uninstall from this project
|
|
73
116
|
0. Exit
|
|
117
|
+
|
|
118
|
+
Agent-powered features (audit, enhance, detect, configure) available via:
|
|
119
|
+
/project-impl - In Claude Code CLI
|
|
120
|
+
/update-check - Check for updates and add new features
|
|
74
121
|
```
|
|
75
122
|
|
|
76
123
|
**Feature Presets** (just type A, B, C, or D):
|
|
@@ -143,6 +190,23 @@ Select during setup - each adds specific commands and hooks:
|
|
|
143
190
|
|
|
144
191
|
Features marked with (*) require post-install configuration via `/menu` → Project Settings.
|
|
145
192
|
|
|
193
|
+
### Automatic Update Notifications
|
|
194
|
+
|
|
195
|
+
CCASP automatically checks for updates when Claude Code starts:
|
|
196
|
+
|
|
197
|
+
- **Startup hook** runs on first prompt, checks npm registry (1-hour cache)
|
|
198
|
+
- **Dynamic menu header** shows current version with `[NEW UPDATE]` badge when available
|
|
199
|
+
- **Update banner** displays what's new on first view, then compact banner on subsequent views
|
|
200
|
+
- **One-key update** - Press `[N]` in the menu to run `npm update -g` instantly
|
|
201
|
+
|
|
202
|
+
```
|
|
203
|
+
┌──────────────────────────────────────────────────────────────┐
|
|
204
|
+
│ 📦 Update available: v1.0.5 → v1.0.7 │ [N] Update │
|
|
205
|
+
└──────────────────────────────────────────────────────────────┘
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
Updates are **manual** - you control when to update. The notification simply informs you.
|
|
209
|
+
|
|
146
210
|
### MCP Server Explorer
|
|
147
211
|
|
|
148
212
|
Discover and install MCP servers based on your tech stack:
|
package/package.json
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "claude-cli-advanced-starter-pack",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Advanced Claude Code CLI toolkit - agents, hooks, skills, MCP servers, phased development, and GitHub integration",
|
|
5
|
-
"main": "src/index.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"ccasp": "./bin/gtask.js",
|
|
8
|
-
"claude-advanced": "./bin/gtask.js",
|
|
9
|
-
"claude-cli-advanced-starter-pack": "./bin/gtask.js"
|
|
10
|
-
},
|
|
11
|
-
"type": "module",
|
|
12
|
-
"scripts": {
|
|
13
|
-
"start": "node bin/gtask.js",
|
|
14
|
-
"setup": "node bin/gtask.js setup",
|
|
15
|
-
"postinstall": "node bin/postinstall.js",
|
|
16
|
-
"test": "node --check bin/gtask.js && node --check bin/postinstall.js && echo 'Syntax OK'",
|
|
17
|
-
"lint": "eslint src/",
|
|
18
|
-
"prepublishOnly": "npm run test"
|
|
19
|
-
},
|
|
20
|
-
"keywords": [
|
|
21
|
-
"claude",
|
|
22
|
-
"claude-code",
|
|
23
|
-
"anthropic",
|
|
24
|
-
"cli",
|
|
25
|
-
"ai-tools",
|
|
26
|
-
"mcp",
|
|
27
|
-
"agents",
|
|
28
|
-
"hooks",
|
|
29
|
-
"skills",
|
|
30
|
-
"github",
|
|
31
|
-
"developer-tools",
|
|
32
|
-
"automation",
|
|
33
|
-
"codebase-analysis"
|
|
34
|
-
],
|
|
35
|
-
"author": "evan043",
|
|
36
|
-
"license": "MIT",
|
|
37
|
-
"repository": {
|
|
38
|
-
"type": "git",
|
|
39
|
-
"url": "git+https://github.com/evan043/claude-cli-advanced-starter-pack.git"
|
|
40
|
-
},
|
|
41
|
-
"bugs": {
|
|
42
|
-
"url": "https://github.com/evan043/claude-cli-advanced-starter-pack/issues"
|
|
43
|
-
},
|
|
44
|
-
"homepage": "https://github.com/evan043/claude-cli-advanced-starter-pack#readme",
|
|
45
|
-
"engines": {
|
|
46
|
-
"node": ">=18.0.0"
|
|
47
|
-
},
|
|
48
|
-
"dependencies": {
|
|
49
|
-
"chalk": "^5.3.0",
|
|
50
|
-
"commander": "^12.1.0",
|
|
51
|
-
"inquirer": "^9.2.23",
|
|
52
|
-
"ora": "^8.0.1",
|
|
53
|
-
"boxen": "^7.1.1",
|
|
54
|
-
"yaml": "^2.4.1",
|
|
55
|
-
"glob": "^10.3.10",
|
|
56
|
-
"figures": "^6.0.1"
|
|
57
|
-
},
|
|
58
|
-
"devDependencies": {
|
|
59
|
-
"eslint": "^9.0.0"
|
|
60
|
-
},
|
|
61
|
-
"files": [
|
|
62
|
-
"bin/",
|
|
63
|
-
"src/",
|
|
64
|
-
"templates/",
|
|
65
|
-
"README.md",
|
|
66
|
-
"OVERVIEW.md",
|
|
67
|
-
"LICENSE"
|
|
68
|
-
]
|
|
69
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "claude-cli-advanced-starter-pack",
|
|
3
|
+
"version": "1.0.7",
|
|
4
|
+
"description": "Advanced Claude Code CLI toolkit - agents, hooks, skills, MCP servers, phased development, and GitHub integration",
|
|
5
|
+
"main": "src/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"ccasp": "./bin/gtask.js",
|
|
8
|
+
"claude-advanced": "./bin/gtask.js",
|
|
9
|
+
"claude-cli-advanced-starter-pack": "./bin/gtask.js"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"scripts": {
|
|
13
|
+
"start": "node bin/gtask.js",
|
|
14
|
+
"setup": "node bin/gtask.js setup",
|
|
15
|
+
"postinstall": "node bin/postinstall.js",
|
|
16
|
+
"test": "node --check bin/gtask.js && node --check bin/postinstall.js && echo 'Syntax OK'",
|
|
17
|
+
"lint": "eslint src/",
|
|
18
|
+
"prepublishOnly": "npm run test"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"claude",
|
|
22
|
+
"claude-code",
|
|
23
|
+
"anthropic",
|
|
24
|
+
"cli",
|
|
25
|
+
"ai-tools",
|
|
26
|
+
"mcp",
|
|
27
|
+
"agents",
|
|
28
|
+
"hooks",
|
|
29
|
+
"skills",
|
|
30
|
+
"github",
|
|
31
|
+
"developer-tools",
|
|
32
|
+
"automation",
|
|
33
|
+
"codebase-analysis"
|
|
34
|
+
],
|
|
35
|
+
"author": "evan043",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/evan043/claude-cli-advanced-starter-pack.git"
|
|
40
|
+
},
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/evan043/claude-cli-advanced-starter-pack/issues"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://github.com/evan043/claude-cli-advanced-starter-pack#readme",
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=18.0.0"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"chalk": "^5.3.0",
|
|
50
|
+
"commander": "^12.1.0",
|
|
51
|
+
"inquirer": "^9.2.23",
|
|
52
|
+
"ora": "^8.0.1",
|
|
53
|
+
"boxen": "^7.1.1",
|
|
54
|
+
"yaml": "^2.4.1",
|
|
55
|
+
"glob": "^10.3.10",
|
|
56
|
+
"figures": "^6.0.1"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"eslint": "^9.0.0"
|
|
60
|
+
},
|
|
61
|
+
"files": [
|
|
62
|
+
"bin/",
|
|
63
|
+
"src/",
|
|
64
|
+
"templates/",
|
|
65
|
+
"README.md",
|
|
66
|
+
"OVERVIEW.md",
|
|
67
|
+
"LICENSE"
|
|
68
|
+
]
|
|
69
|
+
}
|