@tekyzinc/gsd-t 4.11.10 → 4.11.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 +10 -0
- package/README.md +1 -1
- package/bin/gsd-t-graph-scip-upgrade.cjs +5 -2
- package/package.json +1 -1
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
|
+
## [4.11.11] - 2026-06-27
|
|
6
|
+
|
|
7
|
+
### Fixed — SCIP resolution missed nested/monorepo tsconfig (call-graph empty on subdir-tsconfig projects)
|
|
8
|
+
|
|
9
|
+
`runScipTypescript` ran scip-typescript without `--infer-tsconfig`, so projects whose `tsconfig.json` lives in a subdirectory (`web/tsconfig.json`, monorepo packages) produced 0 resolved call edges — scip-typescript found no root tsconfig and skipped resolution.
|
|
10
|
+
|
|
11
|
+
- `bin/gsd-t-graph-scip-upgrade.cjs`: add `--infer-tsconfig` so scip-typescript discovers a nested tsconfig; bumped the timeout to 180s for larger inferred projects.
|
|
12
|
+
|
|
13
|
+
Proven on ClaudeWebCLI (tsconfig at `web/tsconfig.json`): 0 → 1,149 resolved call edges. Suite: 2519/2519 pass.
|
|
14
|
+
|
|
5
15
|
## [4.11.10] - 2026-06-27
|
|
6
16
|
|
|
7
17
|
### Added — M97: the code graph is the default for ambient code-reading (grep-intercept), + 3 call-resolution fixes
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# GSD-T: Contract-Driven Development for Claude Code
|
|
2
2
|
|
|
3
|
-
**v4.11.
|
|
3
|
+
**v4.11.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.
|
|
@@ -134,10 +134,13 @@ function runScipTypescript(projectRoot, outPath) {
|
|
|
134
134
|
// M95: emit to a REAL file (outPath) so the index can be READ and call edges
|
|
135
135
|
// resolved — not /dev/null. The old /dev/null path only proved invocability.
|
|
136
136
|
const out = outPath || path.join(projectRoot, '.gsd-t', 'index.scip');
|
|
137
|
-
|
|
137
|
+
// --infer-tsconfig: resolve a tsconfig even when one isn't at the repo root
|
|
138
|
+
// (monorepos / nested layouts — e.g. web/tsconfig.json). Without it, projects
|
|
139
|
+
// whose tsconfig lives in a subdir got 0 resolved call edges. [RULE] scip-infer-nested-tsconfig
|
|
140
|
+
const scip = spawnSync('scip-typescript', ['index', '--infer-tsconfig', '--output', out, '.'], {
|
|
138
141
|
cwd: projectRoot,
|
|
139
142
|
encoding: 'utf8',
|
|
140
|
-
timeout:
|
|
143
|
+
timeout: 180_000,
|
|
141
144
|
});
|
|
142
145
|
if (scip.status === 0) return { ok: true, scipPath: out };
|
|
143
146
|
return { ok: false, error: scip.stderr || `exit code ${scip.status}` };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "4.11.
|
|
3
|
+
"version": "4.11.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",
|