@tekyzinc/gsd-t 2.16.3 → 2.16.5
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 -2
- package/commands/gsd-t-populate.md +30 -0
- package/commands/{gsd-t.md → gsd.md} +6 -6
- package/package.json +1 -1
- package/templates/CLAUDE-global.md +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,13 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
-
## [2.16.
|
|
5
|
+
## [2.16.5] - 2026-02-16
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- `gsd-t-populate` now reconstructs Decision Log from git history — parses all commits, generates timestamped entries, merges with existing log
|
|
9
|
+
- Pre-Commit Gate explicitly lists all 30 file-modifying commands that must log to progress.md
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Rebuilt GSD-T project Decision Log with full `YYYY-MM-DD HH:MM` timestamps from 54 git commits
|
|
13
|
+
|
|
14
|
+
## [2.16.4] - 2026-02-16
|
|
6
15
|
|
|
7
16
|
### Changed
|
|
17
|
+
- Smart router renamed from `/user:gsd-t` to `/user:gsd` — sorts first in autocomplete, shorter to type
|
|
8
18
|
- Pre-Commit Gate now requires timestamped progress.md entry (`YYYY-MM-DD HH:MM`) after every completed task, not just architectural decisions
|
|
9
19
|
|
|
20
|
+
## [2.16.3] - 2026-02-16
|
|
21
|
+
|
|
10
22
|
### Fixed
|
|
11
|
-
- Reverted smart router rename (`/gsd` back to `/gsd-t`) —
|
|
23
|
+
- Reverted smart router rename (`/gsd` back to `/gsd-t`) — superseded by 2.16.4 which re-applies the rename
|
|
12
24
|
|
|
13
25
|
## [2.16.2] - 2026-02-16
|
|
14
26
|
|
|
@@ -35,6 +35,36 @@ Scan this codebase and populate the GSD-T documentation. Analyze the actual code
|
|
|
35
35
|
- Set status: VERIFIED
|
|
36
36
|
- Log today session: "GSD-T documentation populated from existing codebase"
|
|
37
37
|
|
|
38
|
+
## Reconstruct Decision Log from Git History
|
|
39
|
+
|
|
40
|
+
Rebuild the progress.md Decision Log from the project's commit history:
|
|
41
|
+
|
|
42
|
+
1. **Read existing Decision Log entries** — note what's already recorded to avoid duplicates
|
|
43
|
+
2. **Run `git log --reverse --format="%ai|%s"`** — get all commits with timestamps and messages
|
|
44
|
+
3. **Filter meaningful commits** — skip merge commits, trivial whitespace/formatting-only commits
|
|
45
|
+
4. **Generate entries** in the standard format:
|
|
46
|
+
```
|
|
47
|
+
- YYYY-MM-DD HH:MM: {commit summary} — {brief context from commit message}
|
|
48
|
+
```
|
|
49
|
+
5. **Group by date** — if multiple commits on the same day cover the same logical change, combine them into one entry rather than listing each commit separately
|
|
50
|
+
6. **Merge with existing entries** — insert reconstructed entries chronologically, keeping any hand-written entries that already exist (they may have richer context than commit messages)
|
|
51
|
+
7. **Mark the reconstruction** — add a note at the top of the reconstructed section:
|
|
52
|
+
```
|
|
53
|
+
(Entries before {date} reconstructed from git history)
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### What to include:
|
|
57
|
+
- Feature additions, bug fixes, refactors
|
|
58
|
+
- Config/dependency changes
|
|
59
|
+
- Documentation updates
|
|
60
|
+
- Version bumps and releases
|
|
61
|
+
- Any commit that modified documents, scripts, or code
|
|
62
|
+
|
|
63
|
+
### What to exclude:
|
|
64
|
+
- Pure merge commits with no additional context
|
|
65
|
+
- Commits that only change whitespace or formatting
|
|
66
|
+
- Duplicate entries already in the Decision Log
|
|
67
|
+
|
|
38
68
|
---
|
|
39
69
|
|
|
40
70
|
## Document Ripple
|
|
@@ -58,14 +58,14 @@ This MUST be the very first line of your response so the user sees which command
|
|
|
58
58
|
If called with no arguments, show:
|
|
59
59
|
|
|
60
60
|
```
|
|
61
|
-
Usage: /user:gsd
|
|
61
|
+
Usage: /user:gsd {describe what you want}
|
|
62
62
|
|
|
63
63
|
Examples:
|
|
64
|
-
/user:gsd
|
|
65
|
-
/user:gsd
|
|
66
|
-
/user:gsd
|
|
67
|
-
/user:gsd
|
|
68
|
-
/user:gsd
|
|
64
|
+
/user:gsd Fix the login timeout bug
|
|
65
|
+
/user:gsd Add dark mode support
|
|
66
|
+
/user:gsd Scan the codebase for tech debt
|
|
67
|
+
/user:gsd What's the current progress?
|
|
68
|
+
/user:gsd Compare this spec against our code
|
|
69
69
|
|
|
70
70
|
I'll route to the right GSD-T command automatically.
|
|
71
71
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.16.
|
|
3
|
+
"version": "2.16.5",
|
|
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",
|
|
@@ -27,7 +27,7 @@ PROJECT or FEATURE or SCAN
|
|
|
27
27
|
|
|
28
28
|
| Command | Purpose |
|
|
29
29
|
|---------|---------|
|
|
30
|
-
| `/user:gsd
|
|
30
|
+
| `/user:gsd` | Smart router — describe what you need, auto-routes to the right command |
|
|
31
31
|
| `/user:gsd-t-help` | List all commands or get detailed help |
|
|
32
32
|
| `/user:gsd-t-prompt` | Help formulate your idea before committing |
|
|
33
33
|
| `/user:gsd-t-brainstorm` | Creative exploration and idea generation |
|
|
@@ -205,11 +205,16 @@ BEFORE EVERY COMMIT:
|
|
|
205
205
|
│ YES → Update docs/requirements.md (mark complete or revise)
|
|
206
206
|
├── Did I add/change/remove a component or change data flow?
|
|
207
207
|
│ YES → Update docs/architecture.md
|
|
208
|
-
├── Did I
|
|
208
|
+
├── Did I modify any document, script, or code file?
|
|
209
209
|
│ YES → Add timestamped entry to .gsd-t/progress.md Decision Log
|
|
210
210
|
│ Format: `- YYYY-MM-DD HH:MM: {what was done} — {brief context or result}`
|
|
211
|
+
│ This includes ALL file-modifying activities:
|
|
212
|
+
│ project, feature, scan, gap-analysis, milestone, partition, discuss,
|
|
213
|
+
│ plan, impact, execute, test-sync, integrate, verify, complete-milestone,
|
|
214
|
+
│ wave, quick, debug, promote-debt, populate, setup, init, init-scan-setup,
|
|
215
|
+
│ backlog-add/edit/move/remove/promote/settings, and any manual code changes
|
|
211
216
|
├── Did I make an architectural or design decision?
|
|
212
|
-
│ YES →
|
|
217
|
+
│ YES → Also include decision rationale in the progress.md entry
|
|
213
218
|
├── Did I discover or fix tech debt?
|
|
214
219
|
│ YES → Update .gsd-t/techdebt.md
|
|
215
220
|
├── Did I establish a pattern future work should follow?
|