@tekyzinc/gsd-t 3.25.10 → 3.25.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 +12 -0
- package/bin/gsd-t.js +13 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
+
## [3.25.11] - 2026-05-09
|
|
6
|
+
|
|
7
|
+
### Fixed — M55 propagation gaps + misleading update-all status
|
|
8
|
+
|
|
9
|
+
Three small fixes to `bin/gsd-t.js`, all caught immediately post-v3.25.10 ship by the user noticing "18 already current" couldn't possibly be right one minute after publish.
|
|
10
|
+
|
|
11
|
+
- **Patch 1**: Added `parallel-cli.cjs` to `GLOBAL_BIN_TOOLS`. M55 D5 wired 4 of 5 new substrate binaries into the global propagation list (`cli-preflight`, `gsd-t-context-brief`, `gsd-t-verify-gate`, `gsd-t-verify-gate-judge`) but missed `parallel-cli.cjs` — the substrate engine itself. Result: `~/.claude/bin/parallel-cli.cjs` was missing on every install. Now propagates.
|
|
12
|
+
- **Patch 2**: Added 6 M55 binaries to `PROJECT_BIN_TOOLS` (`cli-preflight.cjs`, `parallel-cli.cjs`, `parallel-cli-tee.cjs`, `gsd-t-context-brief.cjs`, `gsd-t-verify-gate.cjs`, `gsd-t-verify-gate-judge.cjs`). M55 D5 only added them to the global tier — projects had to reach for the global CLI for every M55 dispatch. Now they're available locally per-project too, enabling `node bin/cli-preflight.cjs` style invocations from project workflows. Each registered project gets these copied on the next `gsd-t update-all`.
|
|
13
|
+
- **Patch 3**: Replaced `"X — already up to date"` with `"X — no migrations needed (CLAUDE.md guard, CHANGELOG, bin tools, unattended config all current)"` in `updateSingleProject`. The previous string falsely implied the project was at the latest GSD-T version, but the function only checks 7 specific migration ops — a project showing "already up to date" was just one whose 7 migrations had already run, not one running v3.25.10. Honest message now explains what was actually checked.
|
|
14
|
+
- **Tests**: 2487 / 2487 pass clean (zero regressions).
|
|
15
|
+
- **Why a same-day patch and not a defer**: M55's whole point is making the new substrate available for M56 to wire into Quick + Debug + upper-stage commands. Shipping with the binaries half-propagated would force M56 to wait on a propagation fix anyway. Better to land the fix now and have a clean foundation.
|
|
16
|
+
|
|
5
17
|
## [3.25.10] - 2026-05-09
|
|
6
18
|
|
|
7
19
|
### Added — M55 CLI-Preflight Pattern + Parallel-CLI Substrate + Rate-Limit Map + Context Briefs + Verify-Gate (minor: new feature milestone)
|
package/bin/gsd-t.js
CHANGED
|
@@ -1183,6 +1183,8 @@ const GLOBAL_BIN_TOOLS = [
|
|
|
1183
1183
|
"gsd-t-context-brief.cjs",
|
|
1184
1184
|
"gsd-t-verify-gate.cjs",
|
|
1185
1185
|
"gsd-t-verify-gate-judge.cjs",
|
|
1186
|
+
// M55 D2 substrate — parallel-cli engine (added v3.25.11 patch — missed in initial M55 D5 wire-in).
|
|
1187
|
+
"parallel-cli.cjs",
|
|
1186
1188
|
];
|
|
1187
1189
|
|
|
1188
1190
|
function installGlobalBinTools() {
|
|
@@ -2456,7 +2458,11 @@ function updateSingleProject(projectDir, counts) {
|
|
|
2456
2458
|
if (guardAdded || changelogCreated || binToolsCopied || archiveRan || taskCounterRetired || unattendedConfigCreated || gitignoreUpdated) {
|
|
2457
2459
|
counts.updated++;
|
|
2458
2460
|
} else {
|
|
2459
|
-
|
|
2461
|
+
// The "no mutator ran" branch — distinct from "running latest GSD-T version".
|
|
2462
|
+
// Be explicit: this only means the 7 migration ops were no-ops. The slash
|
|
2463
|
+
// commands and global CLI come from the npm-global install, not from any
|
|
2464
|
+
// per-project artifact, so this status doesn't claim or imply a version.
|
|
2465
|
+
info(`${projectName} — no migrations needed (CLAUDE.md guard, CHANGELOG, bin tools, unattended config all current)`);
|
|
2460
2466
|
counts.skipped++;
|
|
2461
2467
|
}
|
|
2462
2468
|
}
|
|
@@ -2471,6 +2477,12 @@ const PROJECT_BIN_TOOLS = [
|
|
|
2471
2477
|
"gsd-t-unattended.cjs", "gsd-t-unattended-platform.cjs", "gsd-t-unattended-safety.cjs",
|
|
2472
2478
|
"handoff-lock.cjs", "headless-auto-spawn.cjs",
|
|
2473
2479
|
"headless-exit-codes.cjs",
|
|
2480
|
+
// M55 — preflight + parallel-cli + brief + verify-gate libraries copied to project bin/
|
|
2481
|
+
// so per-project workflows can `require('./bin/cli-preflight.cjs')` etc. without
|
|
2482
|
+
// depending on the globally-installed gsd-t CLI being on PATH.
|
|
2483
|
+
"cli-preflight.cjs", "parallel-cli.cjs", "parallel-cli-tee.cjs",
|
|
2484
|
+
"gsd-t-context-brief.cjs",
|
|
2485
|
+
"gsd-t-verify-gate.cjs", "gsd-t-verify-gate-judge.cjs",
|
|
2474
2486
|
];
|
|
2475
2487
|
|
|
2476
2488
|
// Files that older versions of this installer copied into project bin/ but
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "3.25.
|
|
3
|
+
"version": "3.25.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",
|