@tekyzinc/gsd-t 5.10.11 → 5.10.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/README.md +1 -1
- package/package.json +1 -1
- package/scripts/gsd-t-heartbeat.js +4 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# GSD-T: Contract-Driven Development for Claude Code
|
|
2
2
|
|
|
3
|
-
**v5.10.
|
|
3
|
+
**v5.10.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "5.10.
|
|
3
|
+
"version": "5.10.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",
|
|
@@ -46,7 +46,10 @@ process.stdin.on("end", () => {
|
|
|
46
46
|
const gsdtDir = path.join(dir, ".gsd-t");
|
|
47
47
|
if (!fs.existsSync(gsdtDir)) return;
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
// Use the ROOT session id for all agents in the tree — subagents pass
|
|
50
|
+
// parent_session_id, so we prefer that to avoid N heartbeat files per
|
|
51
|
+
// session (which trips the worktree guard as N "separate" sessions).
|
|
52
|
+
const sid = hook.parent_session_id || hook.session_id || "unknown";
|
|
50
53
|
|
|
51
54
|
// Validate session_id — block path traversal (e.g., "../../etc/evil")
|
|
52
55
|
if (!SAFE_SID.test(sid)) return;
|