@usecanary/cli 0.4.2 → 0.4.4
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 +5 -6
- package/dist/cli.cjs +59 -79
- package/dist/cli.js +33 -53
- package/dist/cli.js.map +3 -3
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# @usecanary/cli
|
|
2
2
|
|
|
3
|
-
> `canary` — the session orchestrator for [Canary](https://github.com/
|
|
3
|
+
> `canary` — the session orchestrator for [Canary](https://github.com/wizenheimer/canary). Drive a real
|
|
4
4
|
> browser, record capture-enabled QA sessions (Playwright trace, video, network HAR, console, per-step
|
|
5
5
|
> screenshots), and render a self-contained `report.html` you can open, commit, or browse in a local UI.
|
|
6
6
|
|
|
7
7
|
[](https://www.npmjs.com/package/@usecanary/cli)
|
|
8
|
-
[](https://github.com/
|
|
8
|
+
[](https://github.com/wizenheimer/canary)
|
|
9
9
|
|
|
10
10
|
Canary is built for **AI agents and developers who need verifiable, reproducible browser QA**. Every
|
|
11
11
|
run captures a trace, a video, a network log, console output, and per-step screenshots — and decodes
|
|
@@ -110,7 +110,7 @@ await saveScreenshot(await page.screenshot(), "signed-in.png"); // saveScreens
|
|
|
110
110
|
|
|
111
111
|
The full reference is built into this CLI — run `canary --help` or `canary run --help`
|
|
112
112
|
(the engine's `canary-browser --help` documents the same API), or read the
|
|
113
|
-
[canary-scripting reference](https://github.com/
|
|
113
|
+
[canary-scripting reference](https://github.com/wizenheimer/canary/blob/main/skills/canary-scripting/references/REFERENCE.md).
|
|
114
114
|
|
|
115
115
|
## Artifacts
|
|
116
116
|
|
|
@@ -131,8 +131,7 @@ Canary ships skills, subagents, and `/canary:*` slash commands for Claude Code,
|
|
|
131
131
|
an agent can plan and record QA for you:
|
|
132
132
|
|
|
133
133
|
```bash
|
|
134
|
-
|
|
135
|
-
# Claude Code: /plugin marketplace add usecanary/canary then /plugin install canary@canary-marketplace
|
|
134
|
+
# Claude Code: /plugin marketplace add wizenheimer/canary then /plugin install canary@canary-marketplace
|
|
136
135
|
```
|
|
137
136
|
|
|
138
137
|
## Related packages
|
|
@@ -142,4 +141,4 @@ npx skills add usecanary/canary # any Agent Skills tool
|
|
|
142
141
|
- [`@usecanary/ui`](https://www.npmjs.com/package/@usecanary/ui) — the `canary-viewer` session browser.
|
|
143
142
|
- [`create-canary`](https://www.npmjs.com/package/create-canary) — `npm create canary` guided setup.
|
|
144
143
|
|
|
145
|
-
MIT · [source](https://github.com/
|
|
144
|
+
MIT · [source](https://github.com/wizenheimer/canary)
|