@exodus/xqa 1.7.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.
Files changed (2) hide show
  1. package/dist/xqa.cjs +2 -7
  2. 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 you act without a hint match, emit a \`hint-drift\` finding with the expected hint text and the actual label you acted on. This is non-blocking. Continue execution.
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.
@@ -62963,8 +62960,6 @@ A step MAY be skipped if and only if:
62963
62960
  - The action's direct target (element, modal, screen) is not present, AND
62964
62961
  - The current screen state already satisfies the expected postcondition of this step (i.e. the step's effect has already occurred or was never needed).
62965
62962
 
62966
- When skipping, emit a \`step-skipped\` finding with a one-sentence reason explaining what was absent and what already-satisfied condition justified the skip.
62967
-
62968
62963
  Do NOT skip if:
62969
62964
  - The target is absent but the screen is in an unexpected or intermediate state.
62970
62965
  - You are uncertain whether the postcondition is satisfied.
@@ -75776,7 +75771,7 @@ function resolveXqaDirectory() {
75776
75771
  return result.value;
75777
75772
  }
75778
75773
  var program2 = new Command();
75779
- program2.name("xqa").description("AI-powered QA agent CLI").version(`${"1.7.0"}${false ? ` (dev build +${"a108066"})` : ""}`);
75774
+ program2.name("xqa").description("AI-powered QA agent CLI").version(`${"1.9.0"}${false ? ` (dev build +${"0938687"})` : ""}`);
75780
75775
  program2.command("init").description("Initialize a new xqa project in the current directory").action(() => {
75781
75776
  runInitCommand();
75782
75777
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/xqa",
3
- "version": "1.7.0",
3
+ "version": "1.9.0",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=22"