gsd-pi 2.39.0-dev.64cd3ed → 2.39.0-dev.d6a1625

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.
@@ -630,8 +630,8 @@ export async function checkNeedsRunUat(base, mid, state, prefs) {
630
630
  if (hasResult)
631
631
  return null;
632
632
  }
633
- // Classify UAT type; unknown type treat as human-experience (human review)
634
- const uatType = extractUatType(uatContent) ?? "human-experience";
633
+ // Classify UAT type; default to artifact-driven (LLM-executed UATs are always artifact-driven)
634
+ const uatType = extractUatType(uatContent) ?? "artifact-driven";
635
635
  return { sliceId: sid, uatType };
636
636
  }
637
637
  // ─── Prompt Builders ──────────────────────────────────────────────────────
@@ -1210,7 +1210,7 @@ export async function buildRunUatPrompt(mid, sliceId, uatPath, uatContent, base)
1210
1210
  inlined.push(projectInline);
1211
1211
  const inlinedContext = capPreamble(`## Inlined Context (preloaded — do not re-read these files)\n\n${inlined.join("\n\n---\n\n")}`);
1212
1212
  const uatResultPath = join(base, relSliceFile(base, mid, sliceId, "UAT-RESULT"));
1213
- const uatType = extractUatType(uatContent) ?? "human-experience";
1213
+ const uatType = extractUatType(uatContent) ?? "artifact-driven";
1214
1214
  return loadPrompt("run-uat", {
1215
1215
  workingDirectory: base,
1216
1216
  milestoneId: mid,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsd-pi",
3
- "version": "2.39.0-dev.64cd3ed",
3
+ "version": "2.39.0-dev.d6a1625",
4
4
  "description": "GSD — Get Shit Done coding agent",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -759,8 +759,8 @@ export async function checkNeedsRunUat(
759
759
  if (hasResult) return null;
760
760
  }
761
761
 
762
- // Classify UAT type; unknown type treat as human-experience (human review)
763
- const uatType = extractUatType(uatContent) ?? "human-experience";
762
+ // Classify UAT type; default to artifact-driven (LLM-executed UATs are always artifact-driven)
763
+ const uatType = extractUatType(uatContent) ?? "artifact-driven";
764
764
 
765
765
  return { sliceId: sid, uatType };
766
766
  }
@@ -1403,7 +1403,7 @@ export async function buildRunUatPrompt(
1403
1403
  const inlinedContext = capPreamble(`## Inlined Context (preloaded — do not re-read these files)\n\n${inlined.join("\n\n---\n\n")}`);
1404
1404
 
1405
1405
  const uatResultPath = join(base, relSliceFile(base, mid, sliceId, "UAT-RESULT"));
1406
- const uatType = extractUatType(uatContent) ?? "human-experience";
1406
+ const uatType = extractUatType(uatContent) ?? "artifact-driven";
1407
1407
 
1408
1408
  return loadPrompt("run-uat", {
1409
1409
  workingDirectory: base,