@tekyzinc/gsd-t 2.19.0 → 2.19.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-quick.md +18 -9
- 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.19.1] - 2026-02-16
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- **Quick**: Now runs the FULL test suite (not just affected tests), requires comprehensive test creation for new/changed code paths including Playwright E2E, and verifies against requirements and contracts. "Quick doesn't mean skip testing."
|
|
9
|
+
|
|
5
10
|
## [2.19.0] - 2026-02-16
|
|
6
11
|
|
|
7
12
|
### Changed
|
package/commands/gsd-t-quick.md
CHANGED
|
@@ -52,14 +52,23 @@ If `.gsd-t/progress.md` exists, assess what documentation was affected and updat
|
|
|
52
52
|
|
|
53
53
|
### Skip what's not affected — most quick tasks will only touch 1-2 of these.
|
|
54
54
|
|
|
55
|
-
## Step 5: Test
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
1. **
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
55
|
+
## Step 5: Test & Verify (MANDATORY)
|
|
56
|
+
|
|
57
|
+
Quick does not mean skip testing. Before committing:
|
|
58
|
+
|
|
59
|
+
1. **Write/update tests for every new or changed code path**:
|
|
60
|
+
- Unit tests: happy path + common edge cases + error cases
|
|
61
|
+
- Playwright E2E specs (if UI/routes/flows/modes changed): create new specs for new functionality, update existing specs for changed behavior
|
|
62
|
+
- Cover all modes/flags affected by this change
|
|
63
|
+
- "No feature code without test code" applies to quick tasks too
|
|
64
|
+
2. **Run the FULL test suite** — not just affected tests:
|
|
65
|
+
- All unit/integration tests
|
|
66
|
+
- Full Playwright E2E suite (if configured)
|
|
67
|
+
- Fix any failures before proceeding (up to 2 attempts)
|
|
68
|
+
3. **Verify against requirements**:
|
|
69
|
+
- Does the change satisfy its intended requirement?
|
|
70
|
+
- Did the change break any existing functionality? (the full test run catches this)
|
|
71
|
+
- If a contract exists for the interface touched, does the code still match?
|
|
72
|
+
4. **No test framework?**: Set one up, or at minimum manually verify and document how in the commit message
|
|
64
73
|
|
|
65
74
|
$ARGUMENTS
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.19.
|
|
3
|
+
"version": "2.19.1",
|
|
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",
|