@tekyzinc/gsd-t 2.15.1 → 2.15.3
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 +10 -0
- package/commands/gsd-t-gap-analysis.md +16 -7
- package/package.json +1 -1
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.15.3] - 2026-02-13
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- `gsd-t-gap-analysis` hard cap of 4 teammates max — scales by requirement count (2 for 5–10, 3 for 11–15, 4 for 16+), solo for < 5
|
|
9
|
+
|
|
10
|
+
## [2.15.2] - 2026-02-13
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- `gsd-t-gap-analysis` team mode now handles flat requirement lists — chunks into batches of ~8–10 per teammate instead of requiring sections
|
|
14
|
+
|
|
5
15
|
## [2.15.1] - 2026-02-13
|
|
6
16
|
|
|
7
17
|
### Changed
|
|
@@ -50,7 +50,15 @@ Discuss now or proceed with assumptions?
|
|
|
50
50
|
|
|
51
51
|
## Step 4: System Scan + Gap Classification (Team Mode)
|
|
52
52
|
|
|
53
|
-
Automatically use agent teams to scan and classify requirements in parallel.
|
|
53
|
+
Automatically use agent teams to scan and classify requirements in parallel.
|
|
54
|
+
|
|
55
|
+
### Team Distribution Strategy
|
|
56
|
+
|
|
57
|
+
**Hard cap: maximum 4 teammates.** Distribute requirements evenly across them:
|
|
58
|
+
|
|
59
|
+
- **Spec has sections**: Group adjacent sections so each teammate gets roughly equal work. (e.g., 12 sections → 4 teammates with 3 sections each)
|
|
60
|
+
- **Flat list (no sections)**: Divide requirements into 4 equal batches (e.g., 30 requirements → R1–R8, R9–R15, R16–R23, R24–R30)
|
|
61
|
+
- **Small spec (< 5 requirements)**: Skip teams, use solo mode
|
|
54
62
|
|
|
55
63
|
### Classification Reference
|
|
56
64
|
|
|
@@ -89,11 +97,12 @@ Classification rules:
|
|
|
89
97
|
Output format per requirement:
|
|
90
98
|
| ID | Requirement | Status | Severity | Evidence |
|
|
91
99
|
|
|
92
|
-
Teammate assignments (
|
|
93
|
-
- Teammate "
|
|
94
|
-
- Teammate "
|
|
95
|
-
- Teammate "
|
|
96
|
-
|
|
100
|
+
Teammate assignments (max 4 — divide requirements evenly):
|
|
101
|
+
- Teammate "analyst-1": Scan and classify R1–R{N}
|
|
102
|
+
- Teammate "analyst-2": Scan and classify R{N+1}–R{M}
|
|
103
|
+
- Teammate "analyst-3": Scan and classify R{M+1}–R{P}
|
|
104
|
+
- Teammate "analyst-4": Scan and classify R{P+1}–R{end}
|
|
105
|
+
(use fewer if < 16 requirements — 2 teammates for 5–10, 3 for 11–15, 4 for 16+)
|
|
97
106
|
|
|
98
107
|
Lead responsibilities:
|
|
99
108
|
- Distribute requirement sections to teammates
|
|
@@ -105,7 +114,7 @@ Lead responsibilities:
|
|
|
105
114
|
|
|
106
115
|
### Fallback: Solo Mode
|
|
107
116
|
|
|
108
|
-
If agent teams are not available or
|
|
117
|
+
If agent teams are not available or there are fewer than 5 requirements, run sequentially:
|
|
109
118
|
- Scan the codebase for each requirement
|
|
110
119
|
- Read source files, test files, config, schema, contracts, and docs
|
|
111
120
|
- Classify each requirement with evidence
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.15.
|
|
3
|
+
"version": "2.15.3",
|
|
4
4
|
"description": "GSD-T: Contract-Driven Development for Claude Code — 40 slash commands with backlog management, impact analysis, test sync, and milestone archival",
|
|
5
5
|
"author": "Tekyz, Inc.",
|
|
6
6
|
"license": "MIT",
|