@tekyzinc/gsd-t 4.13.10 → 4.13.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 +11 -0
- package/README.md +1 -1
- package/bin/gsd-t.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
+
## [4.13.11] - 2026-06-29
|
|
6
|
+
|
|
7
|
+
### Fixed — `gsd-t graph body` reachable from the front door (M98 follow-up)
|
|
8
|
+
|
|
9
|
+
M98 shipped the `body` slice logic in the query CLI and wired the Read-intercept hook, but the top-level `gsd-t graph` router in `bin/gsd-t.js` had no `case "body"` — so `gsd-t graph body <fn>` fell through to "Unknown graph subcommand". The headline M98 feature worked via the internal CLI and the hook, but was unreachable from the user-facing `gsd-t graph` command (the M98 test exercised the CLI directly, never the front door).
|
|
10
|
+
|
|
11
|
+
- **`bin/gsd-t.js`** — added `case "body"` to the graph subcommand router (delegates to the D5 query CLI, mirrors `who-calls`/`blast-radius`); added `body` to the usage string.
|
|
12
|
+
- **`test/m94-d5-graph-dispatch.test.js`** — new front-door regression test: `gsd-t graph body` must route to the CLI and emit a `{ ok, verb:"body" }` envelope, never "Unknown graph subcommand".
|
|
13
|
+
|
|
14
|
+
Verified on real binvoice: `gsd-t graph body selectCommentId` now returns the live 43-line slice (compiler-accurate, imports + callers) through the front door. Suite: 2541/2545 pass.
|
|
15
|
+
|
|
5
16
|
## [4.13.10] - 2026-06-29
|
|
6
17
|
|
|
7
18
|
### Added — The graph serves code (function-level slices) + Read-intercept (M98)
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# GSD-T: Contract-Driven Development for Claude Code
|
|
2
2
|
|
|
3
|
-
**v4.13.
|
|
3
|
+
**v4.13.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
|
@@ -3880,10 +3880,11 @@ function doGraph(args) {
|
|
|
3880
3880
|
case "who-imports": { const e = _graphQueryCli(["who-imports", args[1] || ""]); log(JSON.stringify(e, null, 2)); break; }
|
|
3881
3881
|
case "who-calls": { const e = _graphQueryCli(["who-calls", args[1] || ""]); log(JSON.stringify(e, null, 2)); break; }
|
|
3882
3882
|
case "blast-radius": { const e = _graphQueryCli(["blast-radius", args[1] || ""]); log(JSON.stringify(e, null, 2)); break; }
|
|
3883
|
+
case "body": { const e = _graphQueryCli(["body", args[1] || ""]); log(JSON.stringify(e, null, 2)); break; }
|
|
3883
3884
|
case "tasks": doGraphTaskOutput(args[1] || "table"); break;
|
|
3884
3885
|
default:
|
|
3885
3886
|
error(`Unknown graph subcommand: ${sub}`);
|
|
3886
|
-
info("Usage: gsd-t graph [index|status|query|who-imports|who-calls|blast-radius|tasks]");
|
|
3887
|
+
info("Usage: gsd-t graph [index|status|query|who-imports|who-calls|blast-radius|body|tasks]");
|
|
3887
3888
|
info(" gsd-t graph --output json|table (task DAG)");
|
|
3888
3889
|
}
|
|
3889
3890
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "4.13.
|
|
3
|
+
"version": "4.13.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",
|