@tekyzinc/gsd-t 2.15.4 → 2.16.0
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 +10 -0
- package/commands/gsd-t-help.md +3 -2
- package/commands/gsd-t.md +34 -29
- package/package.json +1 -1
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.0] - 2026-02-13
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Smart router (`/gsd-t`) replaced signal-word lookup table with **semantic evaluation** — evaluates user intent against each command's purpose and "Use when" criteria from help summaries
|
|
9
|
+
- Router shows runner-up command when confidence is close: `(also considered: gsd-t-{x} — Esc to switch)`
|
|
10
|
+
- New commands automatically participate in routing without updating a routing table
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Backlog item B1: Agentic Workflow Architecture (future exploration when Claude Code agents mature)
|
|
14
|
+
|
|
5
15
|
## [2.15.4] - 2026-02-13
|
|
6
16
|
|
|
7
17
|
### Changed
|
package/commands/gsd-t-help.md
CHANGED
|
@@ -128,9 +128,10 @@ RELATED COMMANDS
|
|
|
128
128
|
Use these when user asks for help on a specific command:
|
|
129
129
|
|
|
130
130
|
### gsd-t (smart router)
|
|
131
|
-
- **Summary**: Describe what you need in plain language — auto-routes to the right GSD-T command
|
|
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
|
-
- **Files**: Reads `CLAUDE.md`, `.gsd-t/progress.md`
|
|
133
|
+
- **Files**: Reads `CLAUDE.md`, `.gsd-t/progress.md`, command summaries from `gsd-t-help`
|
|
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.
|
|
134
135
|
- **Use when**: You don't want to remember which command to use — just describe what you want
|
|
135
136
|
- **Examples**: `/user:gsd-t Fix the login bug`, `/user:gsd-t Add dark mode`, `/user:gsd-t Scan for tech debt`
|
|
136
137
|
|
package/commands/gsd-t.md
CHANGED
|
@@ -4,38 +4,42 @@ You are the GSD-T smart router. The user describes what they want in plain langu
|
|
|
4
4
|
|
|
5
5
|
## Step 1: Load Context
|
|
6
6
|
|
|
7
|
-
Read
|
|
7
|
+
Read:
|
|
8
8
|
1. `CLAUDE.md` — project context
|
|
9
9
|
2. `.gsd-t/progress.md` — current state, active milestone/phase
|
|
10
10
|
|
|
11
|
-
## Step 2:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
###
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
-
|
|
11
|
+
## Step 2: Semantic Evaluation
|
|
12
|
+
|
|
13
|
+
Read the **Command Summaries** section of `commands/gsd-t-help.md` (or the in-memory skill list). For each command, evaluate whether the user's request matches that command's **Summary** and **Use when** criteria.
|
|
14
|
+
|
|
15
|
+
### Evaluation process:
|
|
16
|
+
|
|
17
|
+
1. **Read the request**: Understand what the user is actually asking for — not just keywords, but intent, scope, and context
|
|
18
|
+
2. **Evaluate each command**: For every GSD-T command, ask: "Would this command raise its hand for this request?" Consider:
|
|
19
|
+
- Does the request match the command's stated purpose?
|
|
20
|
+
- Does the scope align? (small task vs. large feature vs. full project)
|
|
21
|
+
- Does the current project state matter? (e.g., if mid-milestone, does this fit the active phase?)
|
|
22
|
+
3. **Collect candidates**: Commands that match get shortlisted
|
|
23
|
+
4. **Select the best fit**: From the candidates, pick the one whose purpose most closely matches the request
|
|
24
|
+
|
|
25
|
+
### Resolution rules:
|
|
26
|
+
|
|
27
|
+
- **0 matches** → Ask one clarifying question to narrow down
|
|
28
|
+
- **1 match** → Route immediately
|
|
29
|
+
- **2+ matches** → Pick the best fit based on scope and context. Show the runner-up:
|
|
30
|
+
```
|
|
31
|
+
→ Routing to /user:gsd-t-{command}: {reason}
|
|
32
|
+
(also considered: gsd-t-{runner-up} — Esc to switch)
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### Scope disambiguation:
|
|
36
|
+
|
|
37
|
+
When the same request could fit multiple commands at different scales:
|
|
38
|
+
- **Touches 1-3 files, straightforward** → `quick`
|
|
39
|
+
- **New capability spanning multiple files/components** → `feature`
|
|
40
|
+
- **Requires its own milestone with domains** → `milestone` or `project`
|
|
41
|
+
- **Needs investigation before fixing** → `debug` (not `quick`)
|
|
42
|
+
- **Spec/requirements to verify against code** → `gap-analysis` (not `scan`)
|
|
39
43
|
|
|
40
44
|
## Step 3: Confirm and Execute
|
|
41
45
|
|
|
@@ -61,6 +65,7 @@ Examples:
|
|
|
61
65
|
/user:gsd-t Add dark mode support
|
|
62
66
|
/user:gsd-t Scan the codebase for tech debt
|
|
63
67
|
/user:gsd-t What's the current progress?
|
|
68
|
+
/user:gsd-t Compare this spec against our code
|
|
64
69
|
|
|
65
70
|
I'll route to the right GSD-T command automatically.
|
|
66
71
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.16.0",
|
|
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",
|