@tekyzinc/gsd-t 2.24.6 → 2.24.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/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  All notable changes to GSD-T are documented here. Updated with each release.
4
4
 
5
+ ## [2.24.7] - 2026-02-18
6
+
7
+ ### Changed
8
+ - **Next Command Hint redesigned**: Replaced plain `Next →` text with GSD-style "Next Up" visual block — divider lines, `▶ Next Up` header, phase name with description, command in backticks, and alternatives section. Format designed to trigger Claude Code's prompt suggestion engine, making the next command appear as ghost text in the user's input field
9
+
5
10
  ## [2.24.6] - 2026-02-18
6
11
 
7
12
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekyzinc/gsd-t",
3
- "version": "2.24.6",
3
+ "version": "2.24.7",
4
4
  "description": "GSD-T: Contract-Driven Development for Claude Code — 43 slash commands with backlog management, impact analysis, test sync, and milestone archival",
5
5
  "author": "Tekyz, Inc.",
6
6
  "license": "MIT",
@@ -361,33 +361,51 @@ If in doubt, skip research and proceed — research if execution reveals gaps.
361
361
 
362
362
  ### Next Command Hint
363
363
 
364
- When a GSD-T command completes (and does NOT auto-advance to the next phase), display a hint showing the recommended next command. Format:
364
+ When a GSD-T command completes (and does NOT auto-advance to the next phase), display a "Next Up" block at the very end of your response. This format is designed to trigger Claude Code's prompt suggestion engine — making the next command appear as ghost text in the user's input field.
365
+
366
+ **MANDATORY format** — use this exact structure:
367
+
368
+ ```
369
+ ───────────────────────────────────────────────────────────────
370
+
371
+ ## ▶ Next Up
372
+
373
+ **{Phase Name}** — {one-line description of what happens next}
374
+
375
+ `/user:gsd-t-{command}`
376
+
377
+ ───────────────────────────────────────────────────────────────
378
+ ```
379
+
380
+ If there are alternative commands that also make sense, add them:
365
381
 
366
382
  ```
367
- Next → /user:gsd-t-{command}
383
+ **Also available:**
384
+ - `/user:gsd-t-{alt-1}` — {description}
385
+ - `/user:gsd-t-{alt-2}` — {description}
368
386
  ```
369
387
 
370
388
  Successor mapping:
371
- | Completed | Next |
372
- |-----------|------|
373
- | `project` | `gsd-t-milestone` |
374
- | `feature` | `gsd-t-milestone` |
375
- | `milestone` | `gsd-t-partition` |
376
- | `partition` | `gsd-t-plan` (or `gsd-t-discuss` if complex) |
377
- | `discuss` | `gsd-t-plan` |
378
- | `plan` | `gsd-t-execute` (or `gsd-t-impact` if risky) |
379
- | `impact` | `gsd-t-execute` |
380
- | `execute` | `gsd-t-test-sync` |
381
- | `test-sync` | `gsd-t-verify` (or `gsd-t-integrate` if multi-domain) |
382
- | `integrate` | `gsd-t-verify` |
383
- | `verify` | `gsd-t-complete-milestone` |
384
- | `complete-milestone` | `gsd-t-status` |
385
- | `scan` | `gsd-t-promote-debt` or `gsd-t-milestone` |
386
- | `init` | `gsd-t-scan` or `gsd-t-milestone` |
387
- | `init-scan-setup` | `gsd-t-milestone` |
388
- | `gap-analysis` | `gsd-t-milestone` or `gsd-t-feature` |
389
- | `populate` | `gsd-t-status` |
390
- | `setup` | `gsd-t-status` |
389
+ | Completed | Next | Also available |
390
+ |-----------|------|----------------|
391
+ | `project` | `milestone` | |
392
+ | `feature` | `milestone` | |
393
+ | `milestone` | `partition` | |
394
+ | `partition` | `plan` | `discuss` (if complex) |
395
+ | `discuss` | `plan` | |
396
+ | `plan` | `execute` | `impact` (if risky) |
397
+ | `impact` | `execute` | |
398
+ | `execute` | `test-sync` | |
399
+ | `test-sync` | `verify` | `integrate` (if multi-domain) |
400
+ | `integrate` | `verify` | |
401
+ | `verify` | `complete-milestone` | |
402
+ | `complete-milestone` | `status` | |
403
+ | `scan` | `promote-debt` | `milestone` |
404
+ | `init` | `scan` | `milestone` |
405
+ | `init-scan-setup` | `milestone` | |
406
+ | `gap-analysis` | `milestone` | `feature` |
407
+ | `populate` | `status` | |
408
+ | `setup` | `status` | |
391
409
 
392
410
  Commands with no successor (standalone): `quick`, `debug`, `brainstorm`, `status`, `help`, `resume`, `prompt`, `log`, backlog commands.
393
411