@tekyzinc/gsd-t 2.71.18 → 2.71.19

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.
@@ -569,6 +569,14 @@ ${BOLD}Phases:${RESET} ${this.wf.phases.join(" → ")}
569
569
  warn(`Claude exited with code ${buildResult.exitCode} after ${buildResult.duration}s`);
570
570
  }
571
571
 
572
+ // Log build output for debugging
573
+ const buildLogDir = path.join(this.getReviewDir(projectDir), "build-logs");
574
+ ensureDir(buildLogDir);
575
+ fs.writeFileSync(
576
+ path.join(buildLogDir, `${phase}-build.log`),
577
+ `Exit code: ${buildResult.exitCode}\nDuration: ${buildResult.duration}s\nPrompt length: ${prompt.length}\n\n--- OUTPUT ---\n${buildResult.output.slice(0, 20000)}`
578
+ );
579
+
572
580
  // 6c. Collect built paths
573
581
  const builtPaths = items.map(item =>
574
582
  item.sourcePath || (this.wf.guessPaths ? this.wf.guessPaths(phase, item) : "")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekyzinc/gsd-t",
3
- "version": "2.71.18",
3
+ "version": "2.71.19",
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",