@tekyzinc/gsd-t 2.71.16 → 2.71.17
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 +5 -0
- package/bin/design-orchestrator.js +1 -1
- package/bin/orchestrator.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
+
## [2.71.17] - 2026-04-08
|
|
6
|
+
|
|
7
|
+
### Fixed (orchestrator — auto-review cycle limit)
|
|
8
|
+
- **Bumped maxAutoReviewCycles from 2 to 4** — 2 cycles was too conservative for complex components (e.g., charts with multiple contract properties). 4 cycles gives the reviewer/fixer loop enough iterations to converge.
|
|
9
|
+
|
|
5
10
|
## [2.71.16] - 2026-04-08
|
|
6
11
|
|
|
7
12
|
### Added (orchestrator — automated AI review loop)
|
|
@@ -438,7 +438,7 @@ const designBuildWorkflow = {
|
|
|
438
438
|
timeout: 600_000,
|
|
439
439
|
devServerTimeout: 30_000,
|
|
440
440
|
maxReviewCycles: 3,
|
|
441
|
-
maxAutoReviewCycles:
|
|
441
|
+
maxAutoReviewCycles: 4,
|
|
442
442
|
reviewTimeout: 300_000,
|
|
443
443
|
},
|
|
444
444
|
completionMessage: "All done. Run your app to verify: npm run dev",
|
package/bin/orchestrator.js
CHANGED
|
@@ -579,7 +579,7 @@ ${BOLD}Phases:${RESET} ${this.wf.phases.join(" → ")}
|
|
|
579
579
|
// 6d.5. Automated AI review loop (Term 2 equivalent)
|
|
580
580
|
// Spawns an independent reviewer Claude that compares built output against contracts.
|
|
581
581
|
// If issues found → spawn fixer Claude → re-measure → re-review until clean.
|
|
582
|
-
const maxAutoReviewCycles = this.wf.defaults?.maxAutoReviewCycles ||
|
|
582
|
+
const maxAutoReviewCycles = this.wf.defaults?.maxAutoReviewCycles || 4;
|
|
583
583
|
if (this.wf.buildReviewPrompt) {
|
|
584
584
|
let autoReviewCycle = 0;
|
|
585
585
|
let autoReviewClean = false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.71.
|
|
3
|
+
"version": "2.71.17",
|
|
4
4
|
"description": "GSD-T: Contract-Driven Development for Claude Code — 56 slash commands with headless CI/CD mode, graph-powered code analysis, real-time agent dashboard, execution intelligence, 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",
|