@tekyzinc/gsd-t 2.20.5 → 2.20.6
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 +14 -0
- package/bin/gsd-t.js +1309 -1163
- package/commands/Claude-md.md +2 -0
- package/commands/gsd-t-execute.md +15 -2
- package/commands/gsd-t-scan.md +16 -0
- package/commands/gsd-t-test-sync.md +11 -0
- package/commands/gsd-t-verify.md +11 -0
- package/package.json +39 -35
- package/scripts/gsd-t-heartbeat.js +198 -156
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
+
## [2.20.6] - 2026-02-16
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- Stale command/template counts in project CLAUDE.md (25→41 commands, 7→9 templates, v2.0.0→v2.20.x)
|
|
9
|
+
- Duplicate step numbering in `gsd-t-execute.md` (two step 10s)
|
|
10
|
+
- Windows CRLF/LF comparison causing false "changed" detection in CLI update
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Document Ripple sections to `gsd-t-execute`, `gsd-t-scan`, `gsd-t-test-sync`, `gsd-t-verify`
|
|
14
|
+
- Heartbeat auto-cleanup: files older than 7 days are automatically removed
|
|
15
|
+
- Error handling wrapping around file operations in CLI (copy, unlink, write)
|
|
16
|
+
- `applyTokens()` and `normalizeEol()` helpers to reduce duplication
|
|
17
|
+
- Extracted `updateProjectClaudeMd()`, `createProjectChangelog()`, `checkProjectHealth()` from `doUpdateAll()`
|
|
18
|
+
|
|
5
19
|
## [2.20.5] - 2026-02-16
|
|
6
20
|
|
|
7
21
|
### Added
|