@tekyzinc/gsd-t 5.12.10 → 5.12.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 +28 -0
- package/README.md +1 -1
- package/commands/gsd-t-architect.md +26 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,34 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
+
## [5.12.11] - 2026-08-22
|
|
6
|
+
|
|
7
|
+
### Fixed — the architect could finish its work and leave nothing, silently
|
|
8
|
+
|
|
9
|
+
Five consecutive architect runs looked like an idle session. The event log
|
|
10
|
+
showed the opposite of a crash: the architect subagents spawned, worked for
|
|
11
|
+
minutes, and logged `subagent_complete` every time — yet no artifact was
|
|
12
|
+
written, and the session then sat silent.
|
|
13
|
+
|
|
14
|
+
Nothing in the command ever asked whether the subagent had answered. Step 4
|
|
15
|
+
spawned it and Step 6 assumed output existed, so a subagent that returned only
|
|
16
|
+
chat text — or nothing at all — produced a silent session with no error. That
|
|
17
|
+
is the shape the No-Fallback-Ever doctrine exists to forbid: a failure that
|
|
18
|
+
continues instead of stopping loudly.
|
|
19
|
+
|
|
20
|
+
- `commands/gsd-t-architect.md`: new step 4a halts on an empty or partial
|
|
21
|
+
return, naming what is missing, and explicitly bars substituting a
|
|
22
|
+
self-authored summary (that is not the fresh-context assessment the user
|
|
23
|
+
asked for). Step 6 now requires the artifact write to be PROVEN on disk
|
|
24
|
+
before presenting, halting with the missing path if it is not there.
|
|
25
|
+
- `.gsd-t/pseudocode/PseudoCode-SharedLocalConfig.md`: behaviour map for one
|
|
26
|
+
shared local settings file per project, linked into every worktree; gloss
|
|
27
|
+
placement fixed to satisfy the style gate.
|
|
28
|
+
|
|
29
|
+
The root cause of the empty return is not yet known — it lives in the session
|
|
30
|
+
transcript. These halts make the next occurrence report itself instead of
|
|
31
|
+
going quiet.
|
|
32
|
+
|
|
5
33
|
## [5.12.10] - 2026-08-19
|
|
6
34
|
|
|
7
35
|
### Added — naming an existing worktree walks you into it
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# GSD-T: Contract-Driven Development for Claude Code
|
|
2
2
|
|
|
3
|
-
**v5.12.
|
|
3
|
+
**v5.12.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.
|
|
@@ -261,6 +261,26 @@ Graph note: if a code graph exists (`.gsd-t/graphDB/graph.db` — resolve via
|
|
|
261
261
|
reuse/caller queries (Stage 3 + Stage 5 duplication check). If absent, it greps/reads and says so
|
|
262
262
|
LOUDLY (reuse-detection is reduced — never a silent "nothing found").
|
|
263
263
|
|
|
264
|
+
### 4a — The subagent came back: CHECK IT, never assume
|
|
265
|
+
|
|
266
|
+
**A run that produces nothing must SAY SO. Ending the turn silently is the failure this step
|
|
267
|
+
exists to stop** — five consecutive architect runs once returned nothing, each looking like an
|
|
268
|
+
idle session, because no step ever asked whether the subagent had answered.
|
|
269
|
+
|
|
270
|
+
The moment the subagent returns, before any other work:
|
|
271
|
+
|
|
272
|
+
1. **Did it return anything at all?** An empty return, a return that is only a status line, or no
|
|
273
|
+
return (the subagent died on an API error) → **HALT**. Say plainly: the architect subagent
|
|
274
|
+
produced no assessment, name the target, and stop. Do NOT retry silently, do NOT write a
|
|
275
|
+
summary from your own reading of the code — a summary you wrote yourself is not the
|
|
276
|
+
fresh-context assessment the user asked for, and presenting it as one is worse than the
|
|
277
|
+
silence.
|
|
278
|
+
2. **Does it contain the required parts?** The Six-Stage answers and a `Simply Stated` lead. A
|
|
279
|
+
return that skips stages is a partial result → say which stages are missing, then HALT.
|
|
280
|
+
|
|
281
|
+
**Never end the turn without either an assessment or a stated reason there is none.** Silence is
|
|
282
|
+
indistinguishable from a hang, and the user cannot tell whether to wait or re-run.
|
|
283
|
+
|
|
264
284
|
---
|
|
265
285
|
|
|
266
286
|
## Step 5: The subagent runs the Six-Stage Pass (with EVIDENCE, never conviction)
|
|
@@ -366,6 +386,12 @@ the artifact to `.gsd-t/pseudocode/PseudoCode-<Target>.md`, then **self-check it
|
|
|
366
386
|
`gsd-t pseudocode-style --doc <the file>` — a non-zero exit means the style is wrong; fix it
|
|
367
387
|
before presenting. (The same gate is FAIL-blocking in verify.)
|
|
368
388
|
|
|
389
|
+
**Writing it is not optional, and the write must be PROVEN, not assumed.** Unless `--chat-only`,
|
|
390
|
+
confirm the file is on disk (`ls -la` it) before presenting anything. **A file that is not there
|
|
391
|
+
is a HALT** — say the assessment was produced but the artifact never landed, and name the path
|
|
392
|
+
that is missing. An assessment that exists only as chat text is lost the moment the session is
|
|
393
|
+
cleared, which is exactly how a run that did all its work still leaves nothing behind.
|
|
394
|
+
|
|
369
395
|
**B — Session summary** (always printed, even under `--build`):
|
|
370
396
|
- **Simply Stated** (REQUIRED FIRST LINE — the clarity gate) — the verdict + the single most
|
|
371
397
|
important finding in ONE clean, jargon-free, straight-line statement a smart non-specialist
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "5.12.
|
|
3
|
+
"version": "5.12.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",
|