claude-cli-advanced-starter-pack 1.0.11 → 1.0.12
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
CHANGED
package/src/commands/init.js
CHANGED
|
@@ -471,6 +471,7 @@ Parse the JSON to extract:
|
|
|
471
471
|
- \`updateAvailable\`: Boolean indicating if update exists
|
|
472
472
|
- \`updateHighlights\`: Array of release summaries
|
|
473
473
|
- \`updateFirstDisplayed\`: Whether full highlights have been shown
|
|
474
|
+
- \`projectImplCompleted\`: Whether user has run /project-impl (default: false)
|
|
474
475
|
|
|
475
476
|
### Step 2: Build Dynamic Menu
|
|
476
477
|
|
|
@@ -492,6 +493,16 @@ Set \`updateFirstDisplayed: true\` in ccasp-state.json using Edit tool.
|
|
|
492
493
|
**Subsequent displays** (\`updateAvailable && updateFirstDisplayed\`):
|
|
493
494
|
Show compact banner only.
|
|
494
495
|
|
|
496
|
+
### Step 3b: Show Setup Recommendation (If Applicable)
|
|
497
|
+
|
|
498
|
+
If \`projectImplCompleted\` is \`false\` or missing, display this banner at the BOTTOM of the menu (after the closing box but before the input prompt):
|
|
499
|
+
|
|
500
|
+
\`\`\`
|
|
501
|
+
💡 Tip: Run /project-impl to configure your project (audit CLAUDE.md, detect tech stack, set up deployment)
|
|
502
|
+
\`\`\`
|
|
503
|
+
|
|
504
|
+
This banner should be subtle - just a single line tip. Once the user runs any option in /project-impl, update the state file to set \`projectImplCompleted: true\` and this banner will no longer appear.
|
|
505
|
+
|
|
495
506
|
### Step 4: Display Menu and Wait for Input
|
|
496
507
|
|
|
497
508
|
Ask: "What would you like to do? Enter a key:"
|
|
@@ -1403,7 +1414,7 @@ function loadState() {
|
|
|
1403
1414
|
if (fs.existsSync(statePath)) {
|
|
1404
1415
|
try { return JSON.parse(fs.readFileSync(statePath, 'utf8')); } catch {}
|
|
1405
1416
|
}
|
|
1406
|
-
return { lastCheckTimestamp: 0, updateAvailable: false };
|
|
1417
|
+
return { lastCheckTimestamp: 0, updateAvailable: false, projectImplCompleted: false };
|
|
1407
1418
|
}
|
|
1408
1419
|
|
|
1409
1420
|
function saveState(state) {
|
package/src/data/releases.json
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"releases": [
|
|
3
|
+
{
|
|
4
|
+
"version": "1.0.12",
|
|
5
|
+
"date": "2026-01-30",
|
|
6
|
+
"summary": "Release notes pending",
|
|
7
|
+
"highlights": [],
|
|
8
|
+
"newFeatures": {
|
|
9
|
+
"commands": [],
|
|
10
|
+
"agents": [],
|
|
11
|
+
"skills": [],
|
|
12
|
+
"hooks": [],
|
|
13
|
+
"other": []
|
|
14
|
+
},
|
|
15
|
+
"breaking": [],
|
|
16
|
+
"deprecated": []
|
|
17
|
+
},
|
|
3
18
|
{
|
|
4
19
|
"version": "1.0.11",
|
|
5
20
|
"date": "2026-01-30",
|
|
@@ -305,6 +305,19 @@ Questions:
|
|
|
305
305
|
After completing any option, ask the user:
|
|
306
306
|
- "Would you like to perform another action? (1-4, B to go back, Q to quit)"
|
|
307
307
|
|
|
308
|
+
## Mark Setup Complete
|
|
309
|
+
|
|
310
|
+
**IMPORTANT:** After the user successfully completes ANY option (1-4), update the state file to mark setup as complete:
|
|
311
|
+
|
|
312
|
+
```bash
|
|
313
|
+
# Read current state, add projectImplCompleted: true, write back
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
Use the Edit tool to update `.claude/config/ccasp-state.json`:
|
|
317
|
+
- Set `"projectImplCompleted": true`
|
|
318
|
+
|
|
319
|
+
This removes the "Run /project-impl" recommendation banner from `/menu`.
|
|
320
|
+
|
|
308
321
|
## Terminal Alternative
|
|
309
322
|
|
|
310
323
|
These operations can also be run from the terminal:
|