@tekyzinc/gsd-t 5.4.10 → 5.4.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,19 @@
2
2
 
3
3
  All notable changes to GSD-T are documented here. Updated with each release.
4
4
 
5
+ ## [5.4.11] - 2026-07-27
6
+
7
+ ### Fixed — schema-id gate never reached projects (propagation gap)
8
+
9
+ v5.4.10 wired the `schema-id` verify gate into `gsd-t-verify-gate.cjs`, which dispatches to `bin/gsd-t-schema-id-check.cjs` by absolute path — but the new file was in neither `GLOBAL_BIN_TOOLS` nor `PROJECT_BIN_TOOLS`, so `update-all` propagated the *caller* to all 32 projects without the *callee*. Every project would have hit ENOENT on the check. Caught by verifying the file actually landed on disk in three sample projects rather than trusting the "copied 1 bin tool(s)" report.
10
+
11
+ This is the third occurrence of the same class (M89 research gate, M99 graph store-resolver) — a tool added to the source and wired into a caller, but never added to a propagation list.
12
+
13
+ - `bin/gsd-t.js`: added `gsd-t-schema-id-check.cjs` to both `GLOBAL_BIN_TOOLS` and `PROJECT_BIN_TOOLS`, with comments naming the dispatch dependency.
14
+ - `.gsd-t/contracts/graph-metrics-contract.md`: line citation for `doMetrics` refreshed (4907 → 4915) after the insertion shifted it — enforced by the M99 T6 contract-line test.
15
+
16
+ Note: `templates/stacks/_comparison.md` needed no propagation entry — stack rules are read from the installed package at spawn time (`gsd-t-task-brief.js`), not copied per-project. Verified live in the published package.
17
+
5
18
  ## [5.4.10] - 2026-07-27
6
19
 
7
20
  ### Added — Integer-identity primary keys + case-insensitive domain comparisons (two framework-wide code standards)
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # GSD-T: Contract-Driven Development for Claude Code
2
2
 
3
- **v5.4.10** - A methodology for reliable, parallelizable development using Claude Code with optional Agent Teams support.
3
+ **v5.4.11** - A methodology for reliable, parallelizable development using Claude Code with optional Agent Teams support.
4
4
 
5
5
  **Eliminates context rot** — task-level fresh dispatch (one subagent per task, ~10-20% context each) means compaction never triggers.
6
6
  **Compaction-proof debug loops** — `gsd-t headless --debug-loop` runs test-fix-retest cycles as separate `claude -p` sessions. A JSONL debug ledger persists all hypothesis/fix/learning history across fresh sessions. Anti-repetition preamble injection prevents retrying failed hypotheses. Escalation tiers (sonnet → opus → human) and a hard iteration ceiling enforced externally.
package/bin/gsd-t.js CHANGED
@@ -1559,6 +1559,10 @@ const GLOBAL_BIN_TOOLS = [
1559
1559
  "gsd-t-loop-ledger.cjs",
1560
1560
  // Backlog #40 — deterministic archive+sweep of a completed milestone's domain dirs.
1561
1561
  "gsd-t-archive-domains.cjs",
1562
+ // v5.4.10 — integer-identity primary-key gate. gsd-t-verify-gate.cjs dispatches to
1563
+ // this by absolute path, so it MUST ship wherever the verify gate ships or the
1564
+ // schema-id check throws ENOENT. Same class as the M99 store-resolver omission below.
1565
+ "gsd-t-schema-id-check.cjs",
1562
1566
  ];
1563
1567
 
1564
1568
  function installGlobalBinTools() {
@@ -2939,6 +2943,10 @@ const PROJECT_BIN_TOOLS = [
2939
2943
  "cli-preflight.cjs", "parallel-cli.cjs", "parallel-cli-tee.cjs",
2940
2944
  "gsd-t-context-brief.cjs",
2941
2945
  "gsd-t-verify-gate.cjs", "gsd-t-verify-gate-judge.cjs",
2946
+ // v5.4.10 — integer-identity primary-key gate. gsd-t-verify-gate.cjs dispatches to
2947
+ // it via an absolute path in the Track 2 plan, so a project that has the verify gate
2948
+ // but NOT this file gets an ENOENT on every verify. Ships alongside the gate itself.
2949
+ "gsd-t-schema-id-check.cjs",
2942
2950
  // M82 — Competition Mode judge + its disjointness oracle dependency, so a
2943
2951
  // project's gsd-t-phase workflow can score candidate partitions via the
2944
2952
  // project-local bin (runCli prefers bin/<tool>.cjs over the global binary).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekyzinc/gsd-t",
3
- "version": "5.4.10",
3
+ "version": "5.4.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",