@tekyzinc/gsd-t 2.20.2 → 2.20.4

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.4] - 2026-02-16
6
+
7
+ ### Changed
8
+ - **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
9
+
10
+ ## [2.20.3] - 2026-02-16
11
+
12
+ ### Added
13
+ - **Playwright Cleanup**: After Playwright tests finish, kill any app/server processes that were started for the tests. Prevents orphaned dev servers from lingering after test runs
14
+
5
15
  ## [2.20.2] - 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
- Use team mode if agent teams are enabled. Otherwise run solo.
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
 
@@ -13,10 +13,7 @@ Read:
13
13
 
14
14
  ## Step 2: Full Codebase Scan
15
15
 
16
- Choose solo or team mode:
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 (small codebases or teams not enabled)
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.2",
3
+ "version": "2.20.4",
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",
@@ -201,6 +201,15 @@ Before any command that involves testing (`gsd-t-execute`, `gsd-t-test-sync`, `g
201
201
 
202
202
  Playwright must always be ready before any testing occurs. Do not skip this check. Do not defer setup to "later."
203
203
 
204
+ ### Playwright Cleanup
205
+
206
+ After Playwright tests finish (pass or fail), **kill any app/server processes that were started for the tests**. Playwright often launches a dev server (via `webServer` config or manually). These processes must not be left running:
207
+ 1. Check for any dev server processes spawned during the test run
208
+ 2. Kill them (e.g., `npx kill-port`, or terminate the process directly)
209
+ 3. Verify the port is free before proceeding
210
+
211
+ This applies everywhere Playwright tests are executed: execute, test-sync, verify, quick, wave, debug, complete-milestone, and integrate.
212
+
204
213
  ## API Documentation Guard (Swagger/OpenAPI)
205
214
 
206
215
  **Every API endpoint MUST be documented in a Swagger/OpenAPI spec. No exceptions.**