@agents-forge/aiqa 1.0.0 → 1.0.1

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/README.md +20 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -177,14 +177,14 @@ import { runAIQA } from "@agents-forge/aiqa";
177
177
  const result = await runAIQA({
178
178
  target: "https://my-app.com",
179
179
  grep: "@smoke",
180
- skip: ["qa-reviewer"], // skip any subagent by name
180
+ skip: ["qa-reviewer"],
181
181
  cwd: "./aiqa-output",
182
182
  resume: false,
183
- force: false, // true = skip the playwright.config.ts overwrite prompt
184
- open: false, // true = open the docs in VS Code Markdown preview
185
- existingRequirements: ".aiqa/requirements/my-reqs.md", // optional — analyst merges it in
186
- model: "claude-sonnet-4-6", // optional — Claude model id
187
- paths: { reports: "reports" }, // optional — override .aiqa folder names
183
+ force: false,
184
+ open: false,
185
+ existingRequirements: ".aiqa/requirements/my-reqs.md",
186
+ model: "claude-sonnet-4-6",
187
+ paths: { reports: "reports" },
188
188
  verbose: false,
189
189
  });
190
190
 
@@ -192,6 +192,20 @@ console.log(`Passed: ${result.passed}`);
192
192
  console.log(`Session: ${result.sessionFile}`);
193
193
  ```
194
194
 
195
+ | Option | Meaning |
196
+ |---|---|
197
+ | `target` | URL to analyse (required) |
198
+ | `grep` | Run only tests matching a tag, e.g. `@smoke` |
199
+ | `skip` | Subagents to skip, by name |
200
+ | `cwd` | Output directory (where `.aiqa/` is created) |
201
+ | `resume` | Resume a previous run |
202
+ | `force` | Skip the `playwright.config.ts` overwrite prompt |
203
+ | `open` | Open the generated docs in VS Code Markdown preview |
204
+ | `existingRequirements` | Path to an existing requirements `.md` to merge in |
205
+ | `model` | Claude model id |
206
+ | `paths` | Override the `.aiqa` base + subfolder names |
207
+ | `verbose` | Show tool-call details |
208
+
195
209
  ---
196
210
 
197
211
  ## Configuration — `aiqa.config.ts`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agents-forge/aiqa",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "AI Assisted Quality Engineering — single unified agent with playwright-cli snapshot-aware testing. analyst → qa-planner → qa-engineer → qa-reviewer → qa-reporter",
5
5
  "keywords": [
6
6
  "ai",