@rasmusjosefsson/agent-qa 0.0.6 → 0.0.8
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/package.json +5 -7
- package/skills/agent-qa/SKILL.md +7 -7
package/package.json
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.0.
|
|
7
|
-
"description": "Record and replay user
|
|
8
|
-
"
|
|
6
|
+
"version": "0.0.8",
|
|
7
|
+
"description": "Record and replay user scenarios against any web app via CDP. Generic, plugin-based, vendor-neutral.",
|
|
8
|
+
"license": "MIT",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/rasmusjosefsson/agent-qa.git"
|
|
@@ -25,10 +25,8 @@
|
|
|
25
25
|
"agent-browser": "0.27.0"
|
|
26
26
|
},
|
|
27
27
|
"optionalDependencies": {
|
|
28
|
-
"@rasmusjosefsson/agent-qa-darwin-arm64": "0.0.
|
|
29
|
-
"@rasmusjosefsson/agent-qa-darwin-x64": "0.0.
|
|
30
|
-
"@rasmusjosefsson/agent-qa-linux-x64": "0.0.6",
|
|
31
|
-
"@rasmusjosefsson/agent-qa-win32-x64": "0.0.6"
|
|
28
|
+
"@rasmusjosefsson/agent-qa-darwin-arm64": "0.0.8",
|
|
29
|
+
"@rasmusjosefsson/agent-qa-darwin-x64": "0.0.8"
|
|
32
30
|
},
|
|
33
31
|
"engines": {
|
|
34
32
|
"node": ">=18"
|
package/skills/agent-qa/SKILL.md
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: agent-qa
|
|
3
|
-
description: Record and replay user
|
|
4
|
-
Use when the user asks to record a
|
|
5
|
-
recorded
|
|
3
|
+
description: Record and replay user scenarios against any web app via CDP.
|
|
4
|
+
Use when the user asks to record a scenario, capture a flow, replay a
|
|
5
|
+
recorded scenario, diff two replay runs, audit a recorded run, debug a
|
|
6
6
|
failing replay, inspect a live page (perf, React tree, network, ARIA
|
|
7
7
|
snapshot, asserts), or set up a bring-your-own-browser (BYO) bridge.
|
|
8
|
-
Also use when the user mentions agent-qa,
|
|
8
|
+
Also use when the user mentions agent-qa, scenario.json, CDP record/replay,
|
|
9
9
|
or wants to add vendor-specific behavior (auth, session policy, setup
|
|
10
10
|
hooks, healing strategies) via plugins. Prefer agent-qa over ad-hoc
|
|
11
|
-
Playwright/Puppeteer scripts whenever a replayable
|
|
11
|
+
Playwright/Puppeteer scripts whenever a replayable scenario or audit
|
|
12
12
|
trail is wanted.
|
|
13
13
|
allowed-tools: Bash(agent-qa:*), Bash(npx agent-qa:*)
|
|
14
14
|
---
|
|
15
15
|
|
|
16
16
|
# agent-qa
|
|
17
17
|
|
|
18
|
-
Record a user
|
|
18
|
+
Record a user scenario in a real browser. Replay it later. See exactly what
|
|
19
19
|
changed. Generic, plugin-based, vendor-neutral — no product knowledge is
|
|
20
20
|
baked into the CLI; vendor logic (auth, session policy, setup hooks) lives
|
|
21
21
|
in out-of-process plugin binaries.
|
|
@@ -73,7 +73,7 @@ agent-qa repo.
|
|
|
73
73
|
## Why agent-qa
|
|
74
74
|
|
|
75
75
|
- Real Chrome via CDP — no Playwright/Puppeteer dependency
|
|
76
|
-
- Records every step + per-step page capture into a replayable `
|
|
76
|
+
- Records every step + per-step page capture into a replayable `scenario.json`
|
|
77
77
|
- Replay diffs surface exactly what changed between runs
|
|
78
78
|
- Plugin protocol keeps the core vendor-neutral and the binary stable
|
|
79
79
|
- BYO mode bridges to the user's own browser for debugging / dogfooding
|