@tekyzinc/gsd-t 2.31.12 → 2.31.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.
- package/commands/gsd.md +18 -0
- package/package.json +1 -1
package/commands/gsd.md
CHANGED
|
@@ -49,6 +49,24 @@ When the same request could fit multiple commands at different scales:
|
|
|
49
49
|
→ Routing to /user:gsd-t-{command}: {brief reason}
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
+
**CRITICAL: `{command}` MUST be a real GSD-T command slug — never a free-form description.**
|
|
53
|
+
|
|
54
|
+
Valid command slugs: `quick`, `debug`, `feature`, `execute`, `milestone`, `project`, `scan`, `gap-analysis`, `plan`, `partition`, `discuss`, `impact`, `integrate`, `verify`, `test-sync`, `complete-milestone`, `wave`, `status`, `populate`, `setup`, `init`, `health`, `log`, `pause`, `resume`, `prd`, `brainstorm`, `prompt`, `backlog-add`, `backlog-list`, `backlog-promote`, `promote-debt`, `triage-and-merge`, `version-update`, `version-update-all`
|
|
55
|
+
|
|
56
|
+
**WRONG ❌** — do not do this:
|
|
57
|
+
```
|
|
58
|
+
→ Routing to research + PRD update: reading web app auth code
|
|
59
|
+
→ Routing to implementation: adding the login feature
|
|
60
|
+
→ Routing to fix: resolving the bug
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
**RIGHT ✅** — always use the exact command slug:
|
|
64
|
+
```
|
|
65
|
+
→ Routing to /user:gsd-t-execute: implement auth feature across backend
|
|
66
|
+
→ Routing to /user:gsd-t-debug: investigate login bug before fixing
|
|
67
|
+
→ Routing to /user:gsd-t-quick: small focused change to config file
|
|
68
|
+
```
|
|
69
|
+
|
|
52
70
|
This MUST be the very first line of your response so the user sees which command was selected. Then immediately execute that command's full workflow, passing `$ARGUMENTS` through.
|
|
53
71
|
|
|
54
72
|
**Do NOT ask "is this the right command?" — just route and go.** The user can interrupt with Esc if it's wrong.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.31.
|
|
3
|
+
"version": "2.31.13",
|
|
4
4
|
"description": "GSD-T: Contract-Driven Development for Claude Code — 46 slash commands with backlog management, impact analysis, test sync, milestone archival, and PRD generation",
|
|
5
5
|
"author": "Tekyz, Inc.",
|
|
6
6
|
"license": "MIT",
|