@tekyzinc/gsd-t 2.16.4 → 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 CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to GSD-T are documented here. Updated with each release.
4
4
 
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
+
5
14
  ## [2.16.4] - 2026-02-16
6
15
 
7
16
  ### Changed
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekyzinc/gsd-t",
3
- "version": "2.16.4",
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",
@@ -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 complete a task or make a meaningful change?
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 → Add to .gsd-t/progress.md Decision Log (with decision rationale)
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?