@tekyzinc/gsd-t 2.71.12 → 2.71.13
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.71.13] - 2026-04-08
|
|
6
|
+
|
|
7
|
+
### Fixed (design-decompose — successor hint)
|
|
8
|
+
- **Next Up points to design-build** — `design-decompose` was recommending `partition` as the next step. The natural successor after decomposing contracts is `design-build` (which handles the tiered build with review gates), not `partition`. Updated the command's Step 9 hint and added `design-decompose → design-build` to the successor mapping table in CLAUDE-global template and live CLAUDE.md.
|
|
9
|
+
|
|
5
10
|
## [2.71.12] - 2026-04-08
|
|
6
11
|
|
|
7
12
|
### Changed (smart router — design-to-code pipeline)
|
|
@@ -468,13 +468,13 @@ Display:
|
|
|
468
468
|
|
|
469
469
|
## ▶ Next Up
|
|
470
470
|
|
|
471
|
-
**
|
|
471
|
+
**Design Build** — build UI from contracts with tiered review gates (elements → widgets → pages)
|
|
472
472
|
|
|
473
|
-
`/user:gsd-t-
|
|
473
|
+
`/user:gsd-t-design-build`
|
|
474
474
|
|
|
475
475
|
**Also available:**
|
|
476
|
-
- `/user:gsd-t-
|
|
477
|
-
- `/user:gsd-t-plan` —
|
|
476
|
+
- `/user:gsd-t-partition` — if you need domain boundaries before building
|
|
477
|
+
- `/user:gsd-t-plan` — if you need task lists before building
|
|
478
478
|
|
|
479
479
|
───────────────────────────────────────────────────────────────
|
|
480
480
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.71.
|
|
3
|
+
"version": "2.71.13",
|
|
4
4
|
"description": "GSD-T: Contract-Driven Development for Claude Code — 56 slash commands with headless CI/CD mode, graph-powered code analysis, real-time agent dashboard, execution intelligence, task telemetry, doc-ripple enforcement, backlog management, impact analysis, test sync, milestone archival, and PRD generation",
|
|
5
5
|
"author": "Tekyz, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -567,6 +567,7 @@ Successor mapping:
|
|
|
567
567
|
| `gap-analysis` | `milestone` | `feature` |
|
|
568
568
|
| `populate` | `status` | |
|
|
569
569
|
| `setup` | `status` | |
|
|
570
|
+
| `design-decompose` | `design-build` | `partition` (if domains needed first) |
|
|
570
571
|
|
|
571
572
|
Commands with no successor (standalone): `quick`, `debug`, `brainstorm`, `status`, `help`, `resume`, `prompt`, `log`, `health`, `pause`, backlog commands.
|
|
572
573
|
|