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;
|
|
634
|
-
const uatType = extractUatType(uatContent) ?? "
|
|
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) ?? "
|
|
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
|
@@ -759,8 +759,8 @@ export async function checkNeedsRunUat(
|
|
|
759
759
|
if (hasResult) return null;
|
|
760
760
|
}
|
|
761
761
|
|
|
762
|
-
// Classify UAT type;
|
|
763
|
-
const uatType = extractUatType(uatContent) ?? "
|
|
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) ?? "
|
|
1406
|
+
const uatType = extractUatType(uatContent) ?? "artifact-driven";
|
|
1407
1407
|
|
|
1408
1408
|
return loadPrompt("run-uat", {
|
|
1409
1409
|
workingDirectory: base,
|