@tekyzinc/gsd-t 2.20.3 → 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,16 @@
|
|
|
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
|
+
|
|
10
|
+
## [2.20.4] - 2026-02-16
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- **Scan always uses team mode**: `gsd-t-scan` and `gsd-t-init-scan-setup` now spawn a team by default. Solo mode only for trivially small codebases (< 5 files) or when teams are explicitly disabled
|
|
14
|
+
|
|
5
15
|
## [2.20.3] - 2026-02-16
|
|
6
16
|
|
|
7
17
|
### Added
|
|
@@ -58,7 +58,7 @@ Execute the full scan workflow (same as `/user:gsd-t-scan`):
|
|
|
58
58
|
3. Cross-populate findings into living documents (docs/architecture.md, docs/workflows.md, docs/infrastructure.md, docs/requirements.md)
|
|
59
59
|
4. Update README.md with discovered tech stack and setup info
|
|
60
60
|
|
|
61
|
-
|
|
61
|
+
Always use team mode for the scan unless the codebase is trivially small (< 5 files) or teams are explicitly disabled.
|
|
62
62
|
|
|
63
63
|
**If `.gsd-t/techdebt.md` already exists**: Append new findings, don't overwrite.
|
|
64
64
|
|
package/commands/gsd-t-scan.md
CHANGED
|
@@ -13,10 +13,7 @@ Read:
|
|
|
13
13
|
|
|
14
14
|
## Step 2: Full Codebase Scan
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
### Team Mode (recommended for medium-to-large codebases)
|
|
19
|
-
If agent teams are enabled, spawn a team — each dimension is fully independent:
|
|
16
|
+
**Always use Team Mode** unless the codebase is trivially small (< 5 files) or agent teams are explicitly disabled. Each dimension is fully independent — parallel scanning is faster and produces better results.
|
|
20
17
|
|
|
21
18
|
```
|
|
22
19
|
Create an agent team to scan this codebase:
|
|
@@ -41,7 +38,7 @@ Each teammate: write your findings to your assigned file.
|
|
|
41
38
|
Lead: synthesize all findings into .gsd-t/techdebt.md when complete.
|
|
42
39
|
```
|
|
43
40
|
|
|
44
|
-
### Solo Mode (
|
|
41
|
+
### Solo Mode (fallback — only if < 5 files or teams disabled)
|
|
45
42
|
Work through each dimension sequentially:
|
|
46
43
|
|
|
47
44
|
Systematically analyze the entire codebase across these dimensions:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.20.
|
|
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
|
|