@tekyzinc/gsd-t 2.16.0 → 2.16.2
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.16.2] - 2026-02-16
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Smart router renamed from `/user:gsd-t` to `/user:gsd` — sorts first in autocomplete when typing `/gs`, shorter to type
|
|
9
|
+
|
|
10
|
+
## [2.16.1] - 2026-02-16
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- `gsd-t-init-scan-setup` now pulls existing code from remote before scanning — prevents treating repos with existing code as greenfield
|
|
14
|
+
|
|
5
15
|
## [2.16.0] - 2026-02-13
|
|
6
16
|
|
|
7
17
|
### Changed
|
package/README.md
CHANGED
|
@@ -93,7 +93,7 @@ This will replace changed command files, back up your CLAUDE.md if customized, a
|
|
|
93
93
|
|
|
94
94
|
| Command | Purpose | Auto |
|
|
95
95
|
|---------|---------|------|
|
|
96
|
-
| `/user:gsd
|
|
96
|
+
| `/user:gsd {request}` | Describe what you need → auto-routes to the right command | Manual |
|
|
97
97
|
|
|
98
98
|
### Help & Onboarding
|
|
99
99
|
|
package/commands/gsd-t-help.md
CHANGED
|
@@ -13,7 +13,7 @@ Display the full command reference:
|
|
|
13
13
|
|
|
14
14
|
SMART ROUTER Manual
|
|
15
15
|
───────────────────────────────────────────────────────────────────────────────
|
|
16
|
-
gsd
|
|
16
|
+
gsd Describe what you need → auto-routes to the right command
|
|
17
17
|
|
|
18
18
|
GETTING STARTED Manual
|
|
19
19
|
───────────────────────────────────────────────────────────────────────────────
|
|
@@ -127,13 +127,13 @@ RELATED COMMANDS
|
|
|
127
127
|
|
|
128
128
|
Use these when user asks for help on a specific command:
|
|
129
129
|
|
|
130
|
-
### gsd
|
|
130
|
+
### gsd (smart router)
|
|
131
131
|
- **Summary**: Describe what you need in plain language — auto-routes to the right GSD-T command using semantic evaluation
|
|
132
132
|
- **Auto-invoked**: No
|
|
133
133
|
- **Files**: Reads `CLAUDE.md`, `.gsd-t/progress.md`, command summaries from `gsd-t-help`
|
|
134
134
|
- **How it works**: Evaluates your request against every command's purpose and "Use when" criteria. Commands that match get shortlisted, best fit is selected. Shows runner-up when close.
|
|
135
135
|
- **Use when**: You don't want to remember which command to use — just describe what you want
|
|
136
|
-
- **Examples**: `/user:gsd
|
|
136
|
+
- **Examples**: `/user:gsd Fix the login bug`, `/user:gsd Add dark mode`, `/user:gsd Scan for tech debt`
|
|
137
137
|
|
|
138
138
|
### prompt
|
|
139
139
|
- **Summary**: Help formulate project/feature/milestone prompts through guided questions
|
|
@@ -28,6 +28,12 @@ All subsequent steps run from inside the project directory.
|
|
|
28
28
|
git remote add origin {url}
|
|
29
29
|
```
|
|
30
30
|
- **Remote exists** → Log it and continue
|
|
31
|
+
3. **Pull existing code from remote** (if any):
|
|
32
|
+
- Run `git fetch origin` to get remote refs
|
|
33
|
+
- If the remote has commits and local is empty (or behind), run `git pull origin main` (or the default branch)
|
|
34
|
+
- This ensures the scan sees the actual codebase, not an empty directory
|
|
35
|
+
- If pull fails due to branch mismatch, try `git pull origin master`
|
|
36
|
+
- Skip if local already has commits matching the remote
|
|
31
37
|
|
|
32
38
|
## Step 3: Initialize Project (gsd-t-init)
|
|
33
39
|
|
|
@@ -58,14 +58,14 @@ This MUST be the very first line of your response so the user sees which command
|
|
|
58
58
|
If called with no arguments, show:
|
|
59
59
|
|
|
60
60
|
```
|
|
61
|
-
Usage: /user:gsd
|
|
61
|
+
Usage: /user:gsd {describe what you want}
|
|
62
62
|
|
|
63
63
|
Examples:
|
|
64
|
-
/user:gsd
|
|
65
|
-
/user:gsd
|
|
66
|
-
/user:gsd
|
|
67
|
-
/user:gsd
|
|
68
|
-
/user:gsd
|
|
64
|
+
/user:gsd Fix the login timeout bug
|
|
65
|
+
/user:gsd Add dark mode support
|
|
66
|
+
/user:gsd Scan the codebase for tech debt
|
|
67
|
+
/user:gsd What's the current progress?
|
|
68
|
+
/user:gsd Compare this spec against our code
|
|
69
69
|
|
|
70
70
|
I'll route to the right GSD-T command automatically.
|
|
71
71
|
```
|
package/docs/GSD-T-README.md
CHANGED
|
@@ -62,7 +62,7 @@ GSD-T reads all state files and tells you exactly where you left off.
|
|
|
62
62
|
|
|
63
63
|
| Command | Purpose | Auto |
|
|
64
64
|
|---------|---------|------|
|
|
65
|
-
| `/user:gsd
|
|
65
|
+
| `/user:gsd {request}` | Describe what you need → auto-routes to the right command | Manual |
|
|
66
66
|
|
|
67
67
|
### Help & Onboarding
|
|
68
68
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.16.
|
|
3
|
+
"version": "2.16.2",
|
|
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",
|
|
@@ -27,7 +27,7 @@ PROJECT or FEATURE or SCAN
|
|
|
27
27
|
|
|
28
28
|
| Command | Purpose |
|
|
29
29
|
|---------|---------|
|
|
30
|
-
| `/user:gsd
|
|
30
|
+
| `/user:gsd` | Smart router — describe what you need, auto-routes to the right command |
|
|
31
31
|
| `/user:gsd-t-help` | List all commands or get detailed help |
|
|
32
32
|
| `/user:gsd-t-prompt` | Help formulate your idea before committing |
|
|
33
33
|
| `/user:gsd-t-brainstorm` | Creative exploration and idea generation |
|