@exodus/xqa 5.0.0 → 5.2.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/README.md +3 -0
- package/dist/skills/xqa-test-plan/SKILL.md +720 -53
- package/dist/skills/xqa-test-plan/SKILL.test.md +122 -0
- package/dist/xqa.cjs +1195 -770
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -113,6 +113,7 @@ Inspects the git diff between the current branch and its upstream, asks the plan
|
|
|
113
113
|
```bash
|
|
114
114
|
xqa plan # generate scenarios from current diff
|
|
115
115
|
xqa plan --intent "login changes" --out .xqa/test-plan/my-slug
|
|
116
|
+
xqa plan --base develop # diff against a branch other than origin/HEAD
|
|
116
117
|
xqa plan edit .xqa/test-plan/my-slug/scenario-1.test.md --feedback "rename step 2"
|
|
117
118
|
xqa plan extend # append scenarios for fresh commits
|
|
118
119
|
xqa plan report --findings .xqa/output/.../findings.json --specs .xqa/test-plan/my-slug
|
|
@@ -122,6 +123,8 @@ Flags:
|
|
|
122
123
|
|
|
123
124
|
- `--intent <text>` — Optional focus hint passed to the planner.
|
|
124
125
|
- `--out <dir>` — Output directory for the generated scenarios (default: `<xqa>/test-plan/default`).
|
|
126
|
+
- `--base <ref>` — Base git ref to diff against. When omitted, xqa auto-detects the base from an open PR via `gh pr view` and falls back to `origin/HEAD`. Pass explicitly to override.
|
|
127
|
+
- `--debug` — Log base/head refs, diff summary, existing specs count, classification, the full prompt sent to the model, and the raw AI response to stderr. Useful for investigating `model-abstained` empty results.
|
|
125
128
|
|
|
126
129
|
Subcommands:
|
|
127
130
|
|