@tekyzinc/gsd-t 2.10.1 → 2.10.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 +8 -0
- package/commands/gsd-t-status.md +16 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
+
## [2.10.2] - 2026-02-11
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Version update check in `gsd-t-status` slash command — works inside Claude Code and ClaudeWebCLI sessions, not just the CLI binary
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Normalized `repository.url` in package.json (`git+https://` prefix)
|
|
12
|
+
|
|
5
13
|
## [2.10.1] - 2026-02-10
|
|
6
14
|
|
|
7
15
|
### Added
|
package/commands/gsd-t-status.md
CHANGED
|
@@ -40,4 +40,20 @@ If `.gsd-t/backlog.md` exists, read and parse it. Show total count and top 3 ite
|
|
|
40
40
|
If there are blockers or issues, highlight them.
|
|
41
41
|
If the user provides $ARGUMENTS, focus the status on that specific domain or aspect.
|
|
42
42
|
|
|
43
|
+
## Version Check
|
|
44
|
+
|
|
45
|
+
After displaying the project status, check for GSD-T updates:
|
|
46
|
+
|
|
47
|
+
1. Read `~/.claude/.gsd-t-version` to get the installed version
|
|
48
|
+
2. Read `~/.claude/.gsd-t-update-check` (JSON with `latest` and `timestamp` fields) to get the latest known version
|
|
49
|
+
3. If the file doesn't exist or is unreadable, run `gsd-t status` (CLI) in the background to trigger a cache refresh, and skip the notice
|
|
50
|
+
4. If `latest` is newer than the installed version, append to the report:
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
⬆️ GSD-T update available: {installed} → {latest}
|
|
54
|
+
Run: npm update -g @tekyzinc/gsd-t && gsd-t update-all
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
5. If versions match, skip — don't show anything
|
|
58
|
+
|
|
43
59
|
$ARGUMENTS
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.2",
|
|
4
4
|
"description": "GSD-T: Contract-Driven Development for Claude Code — 35 slash commands with backlog management, impact analysis, test sync, and milestone archival",
|
|
5
5
|
"author": "Tekyz, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/Tekyz-Inc/get-stuff-done-teams.git"
|
|
9
|
+
"url": "git+https://github.com/Tekyz-Inc/get-stuff-done-teams.git"
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://github.com/Tekyz-Inc/get-stuff-done-teams#readme",
|
|
12
12
|
"keywords": [
|