@exodus/xqa 1.8.0 → 1.9.0
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/dist/xqa.cjs +2 -5
- package/package.json +1 -1
package/dist/xqa.cjs
CHANGED
|
@@ -52765,7 +52765,6 @@ var findingSchema = external_exports.object({
|
|
|
52765
52765
|
"motion-regression",
|
|
52766
52766
|
"interaction-regression",
|
|
52767
52767
|
"continuity-regression",
|
|
52768
|
-
"hint-drift",
|
|
52769
52768
|
"step-skipped"
|
|
52770
52769
|
]),
|
|
52771
52770
|
flow: external_exports.string(),
|
|
@@ -62952,9 +62951,7 @@ Each step has this shape:
|
|
|
62952
62951
|
- If an outcome state is present, it is your verification target. After acting, call \`view_ui\` and confirm the outcome is met before marking the step complete. If no outcome is given, proceed when the action succeeds.
|
|
62953
62952
|
- A hint is advisory only. Prefer an element matching the hint, but if no literal match exists, use intent and visual context to select the best candidate. Never fail a step solely because a hint label is absent.
|
|
62954
62953
|
- Infer element role (primary action, secondary action, dismissal) from visual hierarchy, position, and hint text. Authors do not specify role.
|
|
62955
|
-
- If
|
|
62956
|
-
- If no element satisfies the intent after exhausting visible UI, emit a \`spec-deviation\` finding and halt that step.
|
|
62957
|
-
- If \`hint-drift\` is emitted AND the outcome state fails to verify on the same step, escalate to \`spec-deviation\`. Drift plus outcome failure means a structural change, not cosmetic drift.`;
|
|
62954
|
+
- If no element satisfies the intent after exhausting visible UI, emit a \`spec-deviation\` finding and halt that step.`;
|
|
62958
62955
|
var SPEC_OPTIONAL_STEPS_SECTION = `## Optional Steps
|
|
62959
62956
|
|
|
62960
62957
|
Before executing a step, call \`view_ui\` to observe current screen state.
|
|
@@ -75774,7 +75771,7 @@ function resolveXqaDirectory() {
|
|
|
75774
75771
|
return result.value;
|
|
75775
75772
|
}
|
|
75776
75773
|
var program2 = new Command();
|
|
75777
|
-
program2.name("xqa").description("AI-powered QA agent CLI").version(`${"1.
|
|
75774
|
+
program2.name("xqa").description("AI-powered QA agent CLI").version(`${"1.9.0"}${false ? ` (dev build +${"0938687"})` : ""}`);
|
|
75778
75775
|
program2.command("init").description("Initialize a new xqa project in the current directory").action(() => {
|
|
75779
75776
|
runInitCommand();
|
|
75780
75777
|
});
|