@tekyzinc/gsd-t 2.11.5 → 2.12.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
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
+
## [2.12.0] - 2026-02-12
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- `/user:gsd-t-version-update` slash command — update GSD-T to latest version from within Claude Code
|
|
9
|
+
- `/user:gsd-t-version-update-all` slash command — update GSD-T + all registered projects from within Claude Code
|
|
10
|
+
- Total commands: 34 GSD-T + 3 utility = 37
|
|
11
|
+
|
|
12
|
+
## [2.11.6] - 2026-02-12
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Update notice now shown at both beginning and end of Claude's first response
|
|
16
|
+
|
|
5
17
|
## [2.11.5] - 2026-02-12
|
|
6
18
|
|
|
7
19
|
### Added
|
package/README.md
CHANGED
|
@@ -134,6 +134,8 @@ This will replace changed command files, back up your CLAUDE.md if customized, a
|
|
|
134
134
|
| `/user:gsd-t-resume` | Restore context, continue |
|
|
135
135
|
| `/user:gsd-t-quick` | Fast task with GSD-T guarantees |
|
|
136
136
|
| `/user:gsd-t-debug` | Systematic debugging with state |
|
|
137
|
+
| `/user:gsd-t-version-update` | Update GSD-T to latest version |
|
|
138
|
+
| `/user:gsd-t-version-update-all` | Update GSD-T + all registered projects |
|
|
137
139
|
|
|
138
140
|
### Backlog Management
|
|
139
141
|
|
package/commands/gsd-t-help.md
CHANGED
|
@@ -46,6 +46,8 @@ UTILITIES
|
|
|
46
46
|
debug Systematic debugging with state
|
|
47
47
|
promote-debt Convert techdebt items to milestones
|
|
48
48
|
populate Auto-populate docs from existing codebase
|
|
49
|
+
version-update Update GSD-T package to latest version
|
|
50
|
+
version-update-all Update GSD-T package + all registered projects
|
|
49
51
|
|
|
50
52
|
BACKLOG
|
|
51
53
|
───────────────────────────────────────────────────────────────────────────────
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# GSD-T: Version Update All — Update GSD-T and All Registered Projects
|
|
2
|
+
|
|
3
|
+
You are updating the GSD-T package to the latest version from npm and applying it to the global installation and all registered projects.
|
|
4
|
+
|
|
5
|
+
## Step 1: Update the npm package
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm update -g @tekyzinc/gsd-t
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Step 2: Apply to global install and all projects
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
gsd-t update-all
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Step 3: Report
|
|
18
|
+
|
|
19
|
+
Show the user what version was installed, how many projects were updated, and confirm success.
|
|
20
|
+
|
|
21
|
+
If the update fails (e.g., permissions issue), suggest running with `sudo` on macOS/Linux or using an Administrator terminal on Windows.
|
|
22
|
+
|
|
23
|
+
$ARGUMENTS
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# GSD-T: Version Update — Update GSD-T Package
|
|
2
|
+
|
|
3
|
+
You are updating the GSD-T package to the latest version from npm and applying it to the current installation.
|
|
4
|
+
|
|
5
|
+
## Step 1: Update the npm package
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm update -g @tekyzinc/gsd-t
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Step 2: Apply the update
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
gsd-t update
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Step 3: Report
|
|
18
|
+
|
|
19
|
+
Show the user what version was installed and confirm success.
|
|
20
|
+
|
|
21
|
+
If the update fails (e.g., permissions issue), suggest running with `sudo` on macOS/Linux or using an Administrator terminal on Windows.
|
|
22
|
+
|
|
23
|
+
$ARGUMENTS
|
package/docs/GSD-T-README.md
CHANGED
|
@@ -102,6 +102,8 @@ GSD-T reads all state files and tells you exactly where you left off.
|
|
|
102
102
|
| `/user:gsd-t-status` | Cross-domain progress view |
|
|
103
103
|
| `/user:gsd-t-resume` | Restore context, continue |
|
|
104
104
|
| `/user:gsd-t-quick` | Fast task with GSD-T guarantees |
|
|
105
|
+
| `/user:gsd-t-version-update` | Update GSD-T to latest version |
|
|
106
|
+
| `/user:gsd-t-version-update-all` | Update GSD-T + all registered projects |
|
|
105
107
|
| `/user:gsd-t-debug` | Systematic debugging with state |
|
|
106
108
|
|
|
107
109
|
---
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "GSD-T: Contract-Driven Development for Claude Code —
|
|
3
|
+
"version": "2.12.0",
|
|
4
|
+
"description": "GSD-T: Contract-Driven Development for Claude Code — 37 slash commands with backlog management, impact analysis, test sync, and milestone archival",
|
|
5
5
|
"author": "Tekyz, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -52,6 +52,8 @@ PROJECT or FEATURE or SCAN
|
|
|
52
52
|
| `/user:gsd-t-quick` | Fast task, respects contracts |
|
|
53
53
|
| `/user:gsd-t-populate` | Auto-populate docs from existing codebase |
|
|
54
54
|
| `/user:gsd-t-resume` | Restore context, continue |
|
|
55
|
+
| `/user:gsd-t-version-update` | Update GSD-T to latest version |
|
|
56
|
+
| `/user:gsd-t-version-update-all` | Update GSD-T + all registered projects |
|
|
55
57
|
| `/user:gsd-t-backlog-add` | Capture item, auto-categorize, append to backlog |
|
|
56
58
|
| `/user:gsd-t-backlog-list` | Filtered, ordered view of backlog items |
|
|
57
59
|
| `/user:gsd-t-backlog-move` | Reorder items by position (priority) |
|
|
@@ -151,7 +153,7 @@ Even in development, the user may have:
|
|
|
151
153
|
|
|
152
154
|
## Update Notices
|
|
153
155
|
|
|
154
|
-
If a `[GSD-T UPDATE]` message appears in session startup context, show it to the user
|
|
156
|
+
If a `[GSD-T UPDATE]` message appears in session startup context, show it to the user at the **beginning AND end** of your first response. Format it as:
|
|
155
157
|
|
|
156
158
|
```
|
|
157
159
|
⬆️ GSD-T update available: {installed} → {latest}
|