@tekyzinc/gsd-t 2.20.4 → 2.20.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/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.20.5] - 2026-02-16
6
+
7
+ ### Added
8
+ - **Next Command Hint**: After each GSD-T phase completes, displays the recommended next command (e.g., `Next → /user:gsd-t-partition`). Full successor mapping for all workflow commands. Skipped during auto-advancing (Level 3 mid-wave)
9
+
5
10
  ## [2.20.4] - 2026-02-16
6
11
 
7
12
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekyzinc/gsd-t",
3
- "version": "2.20.4",
3
+ "version": "2.20.5",
4
4
  "description": "GSD-T: Contract-Driven Development for Claude Code — 41 slash commands with backlog management, impact analysis, test sync, and milestone archival",
5
5
  "author": "Tekyz, Inc.",
6
6
  "license": "MIT",
@@ -333,6 +333,40 @@ If in doubt, skip research and proceed — research if execution reveals gaps.
333
333
  - ALWAYS self-verify work by running verification commands
334
334
  - NEVER pause to show verification steps — execute them
335
335
 
336
+ ### Next Command Hint
337
+
338
+ When a GSD-T command completes (and does NOT auto-advance to the next phase), display a hint showing the recommended next command. Format:
339
+
340
+ ```
341
+ Next → /user:gsd-t-{command}
342
+ ```
343
+
344
+ Successor mapping:
345
+ | Completed | Next |
346
+ |-----------|------|
347
+ | `project` | `gsd-t-milestone` |
348
+ | `feature` | `gsd-t-milestone` |
349
+ | `milestone` | `gsd-t-partition` |
350
+ | `partition` | `gsd-t-plan` (or `gsd-t-discuss` if complex) |
351
+ | `discuss` | `gsd-t-plan` |
352
+ | `plan` | `gsd-t-execute` (or `gsd-t-impact` if risky) |
353
+ | `impact` | `gsd-t-execute` |
354
+ | `execute` | `gsd-t-test-sync` |
355
+ | `test-sync` | `gsd-t-verify` (or `gsd-t-integrate` if multi-domain) |
356
+ | `integrate` | `gsd-t-verify` |
357
+ | `verify` | `gsd-t-complete-milestone` |
358
+ | `complete-milestone` | `gsd-t-status` |
359
+ | `scan` | `gsd-t-promote-debt` or `gsd-t-milestone` |
360
+ | `init` | `gsd-t-scan` or `gsd-t-milestone` |
361
+ | `init-scan-setup` | `gsd-t-milestone` |
362
+ | `gap-analysis` | `gsd-t-milestone` or `gsd-t-feature` |
363
+ | `populate` | `gsd-t-status` |
364
+ | `setup` | `gsd-t-status` |
365
+
366
+ Commands with no successor (standalone): `quick`, `debug`, `brainstorm`, `status`, `help`, `resume`, `prompt`, `log`, backlog commands.
367
+
368
+ Skip the hint if auto-advancing (Level 3 mid-wave) — only show when the user needs to manually invoke the next step.
369
+
336
370
 
337
371
  # Don't Do These Things
338
372