@tekyzinc/gsd-t 2.24.8 → 2.28.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.
@@ -55,6 +55,8 @@ PROJECT or FEATURE or SCAN
55
55
  | `/user:gsd-t-status` | Cross-domain progress view |
56
56
  | `/user:gsd-t-debug` | Systematic debugging |
57
57
  | `/user:gsd-t-quick` | Fast task, respects contracts |
58
+ | `/user:gsd-t-health` | Validate .gsd-t/ structure, optionally repair |
59
+ | `/user:gsd-t-pause` | Save exact position for reliable resume |
58
60
  | `/user:gsd-t-populate` | Auto-populate docs from existing codebase |
59
61
  | `/user:gsd-t-log` | Sync progress Decision Log with recent git activity |
60
62
  | `/user:gsd-t-resume` | Restore context, continue |
@@ -109,11 +111,13 @@ GSD-T tracks project version in `.gsd-t/progress.md` using semantic versioning:
109
111
 
110
112
  | Segment | Bumped When | Example |
111
113
  |---------|-------------|---------|
112
- | **Major** | Breaking changes, major rework, v1 launch | 1.0.0 → 2.0.0 |
113
- | **Minor** | New features, completed feature milestones | 1.1.0 → 1.2.0 |
114
- | **Patch** | Bug fixes, minor improvements, cleanup | 1.1.1 → 1.1.2 |
114
+ | **Major** | Breaking changes, major rework, v1 launch | 1.0.10 → 2.0.10 |
115
+ | **Minor** | New features, completed feature milestones | 1.10.10 → 1.11.10 |
116
+ | **Patch** | Bug fixes, minor improvements, cleanup | 1.1.10 → 1.1.11 |
115
117
 
116
- - Version is set during `gsd-t-init` (starts at `0.1.0`)
118
+ **Patch convention**: Patch numbers are always 2 digits (≥10). When resetting after a minor or major bump, start at **10** (not 0). This keeps patches always 2 characters without leading zeros, so semver stays valid.
119
+
120
+ - Version is set during `gsd-t-init` (starts at `0.1.10`)
117
121
  - Version is bumped during `gsd-t-complete-milestone` based on milestone scope
118
122
  - Version is reflected in: `progress.md`, `README.md`, package manifest (if any), and git tags (`v{version}`)
119
123
 
@@ -222,20 +226,24 @@ This applies everywhere Playwright tests are executed: execute, test-sync, verif
222
226
 
223
227
  ## QA Agent (Mandatory)
224
228
 
225
- Any GSD-T phase that produces or validates code **MUST spawn a QA teammate**. The QA agent's sole job is test generation, execution, and gap reporting. It never writes feature code.
229
+ Any GSD-T phase that produces or validates code **MUST run QA**. The QA agent's sole job is test generation, execution, and gap reporting. It never writes feature code.
226
230
 
227
- **Commands that must spawn QA agent:**
228
- `partition`, `plan`, `execute`, `verify`, `complete-milestone`, `quick`, `debug`, `integrate`, `test-sync`, `wave`
231
+ **QA method by command:**
232
+ - `execute`, `integrate` spawn QA via **Task subagent** (lightweight, no TeamCreate)
233
+ - `test-sync`, `verify`, `complete-milestone` → perform contract testing and gap analysis **inline**
234
+ - `quick`, `debug` → run the full test suite **inline** as part of the command's Test & Verify step
235
+ - `wave` → each phase agent handles QA per the rules above
236
+ - `partition`, `plan` → no QA spawn needed (no code produced yet)
229
237
 
230
- **Spawn instruction:**
238
+ **Task subagent spawn instruction (execute/integrate):**
231
239
  ```
232
- Teammate "qa": Read commands/gsd-t-qa.md for your full instructions.
233
- Phase context: {current phase}. Read .gsd-t/contracts/ for contract definitions.
234
- Your job: generate contract tests, run all tests, report gaps.
235
- You do NOT write feature code.
240
+ Task subagent (general-purpose):
241
+ "Run the full test suite and contract compliance tests.
242
+ Read .gsd-t/contracts/ for contract definitions.
243
+ Report: pass/fail counts and any coverage gaps."
236
244
  ```
237
245
 
238
- **QA agent failure blocks phase completion.** Lead cannot proceed until QA reports PASS or user explicitly overrides.
246
+ **QA failure blocks phase completion.** Lead cannot proceed until QA reports PASS or user explicitly overrides.
239
247
 
240
248
  ## API Documentation Guard (Swagger/OpenAPI)
241
249
 
@@ -408,7 +416,7 @@ Successor mapping:
408
416
  | `populate` | `status` | |
409
417
  | `setup` | `status` | |
410
418
 
411
- Commands with no successor (standalone): `quick`, `debug`, `brainstorm`, `status`, `help`, `resume`, `prompt`, `log`, backlog commands.
419
+ Commands with no successor (standalone): `quick`, `debug`, `brainstorm`, `status`, `help`, `resume`, `prompt`, `log`, `health`, `pause`, backlog commands.
412
420
 
413
421
  Skip the hint if auto-advancing (Level 3 mid-wave) — only show when the user needs to manually invoke the next step.
414
422