@tekyzinc/gsd-t 3.20.10 → 3.20.11

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,18 @@
2
2
 
3
3
  All notable changes to GSD-T are documented here. Updated with each release.
4
4
 
5
+ ## [3.20.11] - 2026-05-05
6
+
7
+ ### Fixed — install: ship `gsd-t-token-capture.cjs` to every project
8
+
9
+ `bin/gsd-t.js::PROJECT_BIN_TOOLS` was missing `gsd-t-token-capture.cjs` — the wrapper that the **Token Capture Rule (MANDATORY)** in `CLAUDE.md` requires every Task spawn to flow through. Result: `gsd-t init` and `gsd-t update-all` shipped 11 other `bin/*.cjs` runtime files but silently skipped this one. Discovered when an audit of 18 registered projects found 15 of them missing the wrapper at `bin/gsd-t-token-capture.cjs` — the contract was effectively advisory in installed projects.
10
+
11
+ **Changes:**
12
+ - `bin/gsd-t.js`: `PROJECT_BIN_TOOLS` now includes `gsd-t-token-capture.cjs`.
13
+ - `test/m41-canonical-block-drift.test.js`: new regression test asserts the wrapper is in `PROJECT_BIN_TOOLS`. Catches the same bug if it ever re-emerges (e.g., array reformat clobbers an entry).
14
+
15
+ **Migration:** existing projects fix automatically on next `gsd-t update-all` run — the wrapper gets copied alongside the other bin tools. Test suite 2042/2042 pass.
16
+
5
17
  ## [3.20.10] - 2026-05-03
6
18
 
7
19
  ### Added — Live-clock dated banner + PreToolUse date guard
package/bin/gsd-t.js CHANGED
@@ -2178,6 +2178,7 @@ function updateSingleProject(projectDir, counts) {
2178
2178
  const PROJECT_BIN_TOOLS = [
2179
2179
  "archive-progress.cjs", "log-tail.cjs", "context-budget-audit.cjs",
2180
2180
  "context-meter-config.cjs", "token-budget.cjs",
2181
+ "gsd-t-token-capture.cjs",
2181
2182
  "gsd-t-unattended.cjs", "gsd-t-unattended-platform.cjs", "gsd-t-unattended-safety.cjs",
2182
2183
  "handoff-lock.cjs", "headless-auto-spawn.cjs",
2183
2184
  "headless-exit-codes.cjs",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekyzinc/gsd-t",
3
- "version": "3.20.10",
3
+ "version": "3.20.11",
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",