@tekyzinc/gsd-t 2.74.12 → 2.74.13

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,20 @@
2
2
 
3
3
  All notable changes to GSD-T are documented here. Updated with each release.
4
4
 
5
+ ## [2.74.13] - 2026-04-14
6
+
7
+ ### Fixed — v2.74.12 task-counter distribution gap (P0)
8
+
9
+ **Root cause**: v2.74.12 added `bin/task-counter.cjs` as the deterministic context-burn gate and wired every command file to call `node bin/task-counter.cjs …`, but the installer's `PROJECT_BIN_TOOLS` list (`bin/gsd-t.js:1562`) was never updated to include it. Every downstream project ran command files that referenced a file the installer never copied. In every GSD-T project, `node bin/task-counter.cjs status|should-stop|reset|increment` threw "Cannot find module" — swallowed by `2>/dev/null` — and the orchestrator silently continued with no gate. Confirmed in bee-poc: `reassign-display` 6/6 + `reassign-candidates` 2/9 executed across ~30 min while `task-counter status` stayed `{"count":0}` the entire run and `token-log.md` got zero new rows.
10
+
11
+ **Additionally**: `doInit()` (`bin/gsd-t.js:1095`) never called `copyBinToolsToProject` at all, so brand-new projects created with `gsd-t init` were born with no bin tools until the user manually ran `update`.
12
+
13
+ **Fix**:
14
+ - **`bin/gsd-t.js`** — `PROJECT_BIN_TOOLS` now includes `task-counter.cjs`. One-line change at `bin/gsd-t.js:1562`.
15
+ - **`bin/gsd-t.js`** — `doInit()` now calls `copyBinToolsToProject(projectDir, projectName)` after `initGsdtDir`, so newly-initialized projects ship bin tools immediately.
16
+
17
+ v2.74.12's entire two-layer fix (task-count gate + extracted prompts) is correct — it just needed one line to actually distribute the counter script. Running `/user:gsd-t-version-update-all` after publishing this version will propagate `task-counter.cjs` to every registered project.
18
+
5
19
  ## [2.74.12] - 2026-04-14
6
20
 
7
21
  ### Fixed — Context-Burn Regression (P0, affects every GSD-T project)
package/bin/gsd-t.js CHANGED
@@ -1110,6 +1110,7 @@ function doInit(projectName) {
1110
1110
  initClaudeMd(projectDir, projectName, today);
1111
1111
  initDocs(projectDir, projectName, today);
1112
1112
  initGsdtDir(projectDir, projectName, today);
1113
+ copyBinToolsToProject(projectDir, projectName);
1113
1114
 
1114
1115
  if (registerProject(projectDir)) success("Registered in ~/.claude/.gsd-t-projects");
1115
1116
 
@@ -1559,7 +1560,7 @@ function updateSingleProject(projectDir, counts) {
1559
1560
  // Bin tools that should ship with every registered project. Listed here so adding
1560
1561
  // a new tool only requires appending to this array. Use .cjs extension so they
1561
1562
  // always run as CommonJS regardless of the project's package.json "type" field.
1562
- const PROJECT_BIN_TOOLS = ["archive-progress.cjs", "log-tail.cjs", "context-budget-audit.cjs"];
1563
+ const PROJECT_BIN_TOOLS = ["archive-progress.cjs", "log-tail.cjs", "context-budget-audit.cjs", "task-counter.cjs"];
1563
1564
 
1564
1565
  function copyBinToolsToProject(projectDir, projectName) {
1565
1566
  const projectBinDir = path.join(projectDir, "bin");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekyzinc/gsd-t",
3
- "version": "2.74.12",
3
+ "version": "2.74.13",
4
4
  "description": "GSD-T: Contract-Driven Development for Claude Code — 56 slash commands with headless CI/CD mode, graph-powered code analysis, real-time agent dashboard, execution intelligence, 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",