@tekyzinc/gsd-t 2.15.0 → 2.15.1
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 +5 -0
- package/commands/gsd-t-gap-analysis.md +45 -14
- package/package.json +1 -1
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.15.1] - 2026-02-13
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- `gsd-t-gap-analysis` now uses agent team mode automatically — one teammate per requirement section for parallel scanning and classification, with solo fallback
|
|
9
|
+
|
|
5
10
|
## [2.15.0] - 2026-02-13
|
|
6
11
|
|
|
7
12
|
### Added
|
|
@@ -48,20 +48,11 @@ Review each requirement for ambiguity. If any are unclear:
|
|
|
48
48
|
Discuss now or proceed with assumptions?
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
## Step 4: System Scan
|
|
51
|
+
## Step 4: System Scan + Gap Classification (Team Mode)
|
|
52
52
|
|
|
53
|
-
|
|
54
|
-
- Source files relevant to each requirement
|
|
55
|
-
- Test files for coverage evidence
|
|
56
|
-
- Configuration and schema files
|
|
57
|
-
- Existing contracts in `.gsd-t/contracts/`
|
|
58
|
-
- Documentation in `docs/`
|
|
53
|
+
Automatically use agent teams to scan and classify requirements in parallel. Each teammate handles one requirement section independently.
|
|
59
54
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
## Step 5: Gap Classification
|
|
63
|
-
|
|
64
|
-
For each requirement, classify with evidence:
|
|
55
|
+
### Classification Reference
|
|
65
56
|
|
|
66
57
|
| Status | Meaning | Action Needed |
|
|
67
58
|
|--------|---------|---------------|
|
|
@@ -70,8 +61,6 @@ For each requirement, classify with evidence:
|
|
|
70
61
|
| **Incorrect** | Code exists but doesn't match the requirement | Fix implementation |
|
|
71
62
|
| **Not Implemented** | No code exists for this requirement | Build from scratch |
|
|
72
63
|
|
|
73
|
-
Assign severity to gaps:
|
|
74
|
-
|
|
75
64
|
| Severity | Criteria |
|
|
76
65
|
|----------|----------|
|
|
77
66
|
| **Critical** | Incorrect implementation — existing code actively contradicts the requirement |
|
|
@@ -79,6 +68,48 @@ Assign severity to gaps:
|
|
|
79
68
|
| **Medium** | Not implemented — required but no code exists yet |
|
|
80
69
|
| **Low** | Not implemented — nice-to-have or can be deferred |
|
|
81
70
|
|
|
71
|
+
### Team Execution
|
|
72
|
+
|
|
73
|
+
```
|
|
74
|
+
Create an agent team for gap analysis:
|
|
75
|
+
|
|
76
|
+
ALL TEAMMATES must read before starting:
|
|
77
|
+
1. CLAUDE.md — project conventions
|
|
78
|
+
2. docs/architecture.md — system structure
|
|
79
|
+
3. docs/requirements.md — existing requirements
|
|
80
|
+
4. .gsd-t/contracts/ — domain interfaces
|
|
81
|
+
|
|
82
|
+
Classification rules:
|
|
83
|
+
- For each requirement, search the codebase for relevant code
|
|
84
|
+
- Cite specific files and line numbers as evidence
|
|
85
|
+
- Classify as: Implemented / Partial / Incorrect / Not Implemented
|
|
86
|
+
- Assign severity: Critical / High / Medium / Low
|
|
87
|
+
- Flag assumptions with [ASSUMED: {reason}]
|
|
88
|
+
|
|
89
|
+
Output format per requirement:
|
|
90
|
+
| ID | Requirement | Status | Severity | Evidence |
|
|
91
|
+
|
|
92
|
+
Teammate assignments (one per requirement section):
|
|
93
|
+
- Teammate "section-1": Scan and classify {Section 1} (R1–R{N})
|
|
94
|
+
- Teammate "section-2": Scan and classify {Section 2} (R{N+1}–R{M})
|
|
95
|
+
- Teammate "section-3": Scan and classify {Section 3} (R{M+1}–R{P})
|
|
96
|
+
(add more teammates as needed — one per section)
|
|
97
|
+
|
|
98
|
+
Lead responsibilities:
|
|
99
|
+
- Distribute requirement sections to teammates
|
|
100
|
+
- Collect classification results from each teammate
|
|
101
|
+
- Resolve conflicts (two teammates found different evidence for the same code)
|
|
102
|
+
- Merge all results into the unified gap analysis document
|
|
103
|
+
- Update .gsd-t/progress.md after completion
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
### Fallback: Solo Mode
|
|
107
|
+
|
|
108
|
+
If agent teams are not available or the spec has only 1 section, run sequentially:
|
|
109
|
+
- Scan the codebase for each requirement
|
|
110
|
+
- Read source files, test files, config, schema, contracts, and docs
|
|
111
|
+
- Classify each requirement with evidence
|
|
112
|
+
|
|
82
113
|
## Step 6: Generate Gap Analysis Document
|
|
83
114
|
|
|
84
115
|
Create `.gsd-t/gap-analysis.md`:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.15.
|
|
3
|
+
"version": "2.15.1",
|
|
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",
|