@tekyzinc/gsd-t 3.12.14 → 3.12.15

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,24 @@
2
2
 
3
3
  All notable changes to GSD-T are documented here. Updated with each release.
4
4
 
5
+ ## [3.12.15] - 2026-04-17
6
+
7
+ ### Fixed — Decision Log Trim — stop live progress.md bloat
8
+
9
+ `commands/gsd-t-complete-milestone.md` Step 7 previously instructed "Keep all prior decision log entries — they are valuable context". Because every prior milestone's full log is already frozen into its archive snapshot by Step 4, carrying the same entries forward on the live `.gsd-t/progress.md` produced unbounded file growth (GSD-T's live file had reached 168,921 bytes / 658 lines — 10× the size of a healthy project).
10
+
11
+ **Fix**: Step 7 now explicitly trims the live Decision Log to the just-completed milestone's entries after the archive snapshot is written. The instruction reads:
12
+
13
+ > Delete all decision-log entries older than the just-completed milestone's start date. Those entries are preserved in the milestone archive created in Step 4. Keep only the completion entry plus any entries logged on or after the cutoff — typically the live log is near-empty when the next milestone begins.
14
+
15
+ The archive at `.gsd-t/milestones/{name}-{date}/progress.md` remains the source-of-truth for the full history. A pointer line (`> Prior decision log entries preserved in .gsd-t/milestones/*/progress.md`) is added to the live file so future readers know where to look.
16
+
17
+ **One-time cleanup on the GSD-T repo**: live `.gsd-t/progress.md` trimmed from 168,921 B / 658 lines to 11,733 B / 67 lines (93% reduction), cut at M38 start (2026-04-16 14:25). Historical decision log preserved by copying the pre-trim file into `.gsd-t/milestones/M38-headless-by-default-2026-04-17/progress.md` (Step 4 missed that archive copy when M38 was completed earlier today; fix-forward).
18
+
19
+ **Users with bloated `.gsd-t/progress.md`** can run the same one-time cleanup manually: find the current milestone's `[milestone-defined]` start entry in the Decision Log, copy the pre-trim file to the milestone archive directory (if it's not already there), then delete all Decision Log entries older than that start date. Keep the pointer line at the top of the Decision Log section.
20
+
21
+ **Tests**: Unit 1186/1186 pass (no code paths changed — pure doc/template edits + one-time live file rewrite). E2E N/A.
22
+
5
23
  ## [3.12.14] - 2026-04-17
6
24
 
7
25
  ### Fixed — Telemetry Env-Propagation Regression (Tag All Worker Events)
@@ -351,6 +351,14 @@ Reset `.gsd-t/` for next milestone:
351
351
  4. Clear `.gsd-t/impact-report.md`, `.gsd-t/test-coverage.md`
352
352
  5. Update `.gsd-t/progress.md`:
353
353
 
354
+ **CRITICAL — Decision Log Trim**: This trim happens AFTER Step 4's archive copy of `.gsd-t/progress.md` is written. The archive snapshot at `.gsd-t/milestones/{name}-{date}/progress.md` is the source-of-truth for full history. The live Decision Log is reset to the just-completed milestone's entries only — everything dated before the milestone's start date is deleted from the live file (it remains in the archive). This prevents the live progress.md from growing without bound.
355
+
356
+ Steps to apply the trim:
357
+ - Identify the just-completed milestone's start date (typically the `[milestone-defined]` entry for this milestone)
358
+ - Delete all Decision Log entries dated BEFORE that start date from the live `.gsd-t/progress.md`
359
+ - Keep entries from the start date onward (they cover the milestone arc + the completion entry you're about to add)
360
+ - Prepend the pointer line shown below
361
+
354
362
  ```markdown
355
363
  # GSD-T Progress
356
364
 
@@ -365,8 +373,11 @@ None — ready for next milestone
365
373
  | {previous} | {version} | {date} | v{version} |
366
374
 
367
375
  ## Decision Log
376
+
377
+ > Prior decision log entries preserved in `.gsd-t/milestones/*/progress.md` — see archive snapshots for pre-{next-milestone-name} history.
378
+
368
379
  - {date}: [success] Milestone "{name}" completed — {summary of what was built}. v{version}
369
- {Keep all prior decision log entries they are valuable context}
380
+ {Trim: delete all decision-log entries older than the just-completed milestone's start date. Those entries are preserved in the milestone archive created in Step 4. Keep only the completion entry above plus any entries logged on or after the cutoff — typically the live log is near-empty when the next milestone begins.}
370
381
  ```
371
382
 
372
383
  ## Step 8: Update README.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekyzinc/gsd-t",
3
- "version": "3.12.14",
3
+ "version": "3.12.15",
4
4
  "description": "GSD-T: Contract-Driven Development for Claude Code — 54 slash commands with headless-by-default workflow spawning, unattended supervisor relay with event stream, graph-powered code analysis, real-time agent dashboard, task telemetry, doc-ripple enforcement, backlog management, impact analysis, test sync, milestone archival, and PRD generation",
5
5
  "author": "Tekyz, Inc.",
6
6
  "license": "MIT",