create-canary 0.4.2 → 0.4.3
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 +7 -8
- package/dist/cli.js +2 -4
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# create-canary
|
|
2
2
|
|
|
3
|
-
> The guided setup wizard for [Canary](https://github.com/
|
|
3
|
+
> The guided setup wizard for [Canary](https://github.com/wizenheimer/canary) — an AI-agent QA toolkit
|
|
4
4
|
> that drives real browsers, records QA sessions (Playwright trace, video, network HAR, console), and
|
|
5
5
|
> renders self-contained verification reports.
|
|
6
6
|
|
|
7
7
|
[](https://www.npmjs.com/package/create-canary)
|
|
8
|
-
[](https://github.com/
|
|
8
|
+
[](https://github.com/wizenheimer/canary)
|
|
9
9
|
|
|
10
10
|
One command to get Canary and its browser runtime set up — no flags to remember. Every step just
|
|
11
11
|
shells out to the same published commands you could run by hand, so there's no magic and nothing
|
|
@@ -29,9 +29,9 @@ You'll get a checklist (space toggles, enter confirms). Recommended items are pr
|
|
|
29
29
|
| Also install the `canary-viewer` viewer globally | — | `npm i -g @usecanary/ui` |
|
|
30
30
|
|
|
31
31
|
Installing the CLIs globally puts `canary`, `canary-browser`, and `canary-viewer` on your `PATH` so
|
|
32
|
-
day-to-day use drops the `npx` prefix. The wizard never installs
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
day-to-day use drops the `npx` prefix. The wizard never installs the plugins itself — once setup
|
|
33
|
+
completes it prints the commands (Claude Code `/plugin …`, Cursor / Codex marketplace) so each
|
|
34
|
+
agent's own mechanism does the work.
|
|
35
35
|
|
|
36
36
|
### Non-interactive
|
|
37
37
|
|
|
@@ -43,8 +43,7 @@ inspect before executing.
|
|
|
43
43
|
Add the agent integration yourself (one-time):
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
|
|
47
|
-
# Claude Code: /plugin marketplace add usecanary/canary then /plugin install canary@canary-marketplace
|
|
46
|
+
# Claude Code: /plugin marketplace add wizenheimer/canary then /plugin install canary@canary-marketplace
|
|
48
47
|
```
|
|
49
48
|
|
|
50
49
|
Then record a session:
|
|
@@ -65,4 +64,4 @@ flow) in Claude Code / Cursor / Codex. See `examples/` in the repo for runnable
|
|
|
65
64
|
- [`@usecanary/browser`](https://www.npmjs.com/package/@usecanary/browser) — one-off automation engine.
|
|
66
65
|
- [`@usecanary/ui`](https://www.npmjs.com/package/@usecanary/ui) — the `canary-viewer` session browser.
|
|
67
66
|
|
|
68
|
-
MIT · [source](https://github.com/
|
|
67
|
+
MIT · [source](https://github.com/wizenheimer/canary)
|
package/dist/cli.js
CHANGED
|
@@ -16616,7 +16616,6 @@ function printManual() {
|
|
|
16616
16616
|
"",
|
|
16617
16617
|
" npm i -g @usecanary/cli # adds the `canary` command",
|
|
16618
16618
|
" canary install # browser runtime (Chromium)",
|
|
16619
|
-
" npx skills add usecanary/canary # agent skills (any tool)",
|
|
16620
16619
|
"",
|
|
16621
16620
|
"Optional:",
|
|
16622
16621
|
" npm i -g @usecanary/browser # canary-browser (one-off automation)",
|
|
@@ -16627,7 +16626,7 @@ function printManual() {
|
|
|
16627
16626
|
" canary-viewer # browse recorded sessions",
|
|
16628
16627
|
"",
|
|
16629
16628
|
"Claude Code plugin:",
|
|
16630
|
-
" /plugin marketplace add
|
|
16629
|
+
" /plugin marketplace add wizenheimer/canary",
|
|
16631
16630
|
" /plugin install canary@canary-marketplace",
|
|
16632
16631
|
""
|
|
16633
16632
|
].join("\n")
|
|
@@ -16666,8 +16665,7 @@ async function runSelected(steps, selected) {
|
|
|
16666
16665
|
" Demos: see examples/ in the repo",
|
|
16667
16666
|
"",
|
|
16668
16667
|
"Add the agent integration yourself (one-time):",
|
|
16669
|
-
"
|
|
16670
|
-
" Claude Code plugin: /plugin marketplace add usecanary/canary",
|
|
16668
|
+
" Claude Code plugin: /plugin marketplace add wizenheimer/canary",
|
|
16671
16669
|
" /plugin install canary@canary-marketplace",
|
|
16672
16670
|
"",
|
|
16673
16671
|
""
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-canary",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Set up canary — browser automation + recorded QA sessions. Run `npm create canary`.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"browser-automation",
|
|
12
12
|
"qa"
|
|
13
13
|
],
|
|
14
|
-
"homepage": "https://github.com/
|
|
15
|
-
"bugs": "https://github.com/
|
|
14
|
+
"homepage": "https://github.com/wizenheimer/canary#readme",
|
|
15
|
+
"bugs": "https://github.com/wizenheimer/canary/issues",
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "git+https://github.com/
|
|
18
|
+
"url": "git+https://github.com/wizenheimer/canary.git",
|
|
19
19
|
"directory": "apps/create-canary"
|
|
20
20
|
},
|
|
21
21
|
"engines": {
|