@tekyzinc/gsd-t 5.0.11 → 5.0.12

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,16 @@
2
2
 
3
3
  All notable changes to GSD-T are documented here. Updated with each release.
4
4
 
5
+ ## [5.0.12] - 2026-07-12
6
+
7
+ ### Fixed — graph require-chain shipped incomplete → every project's graph silently dead
8
+
9
+ `bin/gsd-t-graph-query-cli.cjs` `require()`s `gsd-t-graph-store-resolver.cjs` at load, but that file (added to source in M99, 2026-06-30) was never added to `PROJECT_BIN_TOOLS` — so `update-all` copied the query CLI and 6 of its 7 dependencies and silently omitted the 7th. In every registered project the CLI threw on load → the graph was unqueryable → all graph consumers (execute/wave/debug/quick/impact/plan/scan **and `/gsd-t-architect`**) silently fell back to grep. Found by the Binvoice architect run reporting its own reuse-check was disabled. Same class as the M96 / global-bin propagation gaps.
10
+
11
+ - `bin/gsd-t.js`: added `gsd-t-graph-store-resolver.cjs` to `PROJECT_BIN_TOOLS`; exported `PROJECT_BIN_TOOLS`.
12
+ - `test/graph-require-chain-propagation.test.js` (NEW): statically walks the transitive `require("./…")` chain from the graph entry points and FAILS if any reachable `bin/` file is missing from `PROJECT_BIN_TOOLS` — the mechanical guard that turns this whole drift class into a red test instead of a silent grep-fallback. Proven to fail when the resolver is removed.
13
+ - `.gsd-t/contracts/graph-metrics-contract.md`: refreshed two `bin/gsd-t.js` line citations shifted by the fix.
14
+
5
15
  ## [5.0.11] - 2026-07-12
6
16
 
7
17
  ### Fixed — architect hook now ships + installs; de-flaked its test
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # GSD-T: Contract-Driven Development for Claude Code
2
2
 
3
- **v5.0.11** - A methodology for reliable, parallelizable development using Claude Code with optional Agent Teams support.
3
+ **v5.0.12** - 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
@@ -2982,6 +2982,13 @@ const PROJECT_BIN_TOOLS = [
2982
2982
  // [[project_code_graph_universal_consumer]] [[feedback_graph_is_architectural_anchor]]
2983
2983
  "gsd-t-graph-query-cli.cjs", "gsd-t-graph-index.cjs", "gsd-t-graph-freshness.cjs",
2984
2984
  "gsd-t-graph-edge-extract.cjs", "gsd-t-graph-scip-upgrade.cjs", "gsd-t-scip-reader.cjs",
2985
+ // M99 (added 2026-06-30, resolver added to the copy list 2026-07-12) — the query
2986
+ // CLI `require`s gsd-t-graph-store-resolver.cjs at load time (line ~76). It was
2987
+ // added to the source in M99 but NEVER added here, so update-all copied the CLI
2988
+ // and 6 of its 7 deps and silently omitted this one → the CLI threw on require →
2989
+ // graph dead → grep fallback (found by the Binvoice architect run 2026-07-12).
2990
+ // Same class as [[project_global_bin_propagation_gap]] / [[project_m96_graph_runs_in_projects]].
2991
+ "gsd-t-graph-store-resolver.cjs",
2985
2992
  // M96 — multi-location resolver for the store engine (better-sqlite3), so a
2986
2993
  // copied tool finds the engine from the GSD-T global package, not the project's
2987
2994
  // own (usually absent) node_modules. Fail-loud with remediation if all miss.
@@ -4912,6 +4919,7 @@ module.exports = {
4912
4919
  ensureDir,
4913
4920
  copyFile,
4914
4921
  copyBinToolsToProject,
4922
+ PROJECT_BIN_TOOLS,
4915
4923
  hasPlaywright,
4916
4924
  hasSwagger,
4917
4925
  hasApi,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekyzinc/gsd-t",
3
- "version": "5.0.11",
3
+ "version": "5.0.12",
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",