automate-agent
Drive a real browser for a one-off task with Canary — navigate, click, fill, scrape, screenshot — and return the result. Use when the user asks to automate or…
Turn a code change into a prioritized browser-QA plan with Canary — read the git diff, infer the affected user-facing workflows, and suggest concrete flows and the checks that must hold, then optionally record them as a session with a report. Use when the user asks what to test
> /plugin marketplace add 0xnyn/canary > /plugin install canary@canary-marketplace
How it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Turn a code change into a prioritized browser-QA plan with Canary — read the git diff, infer the affected user-facing workflows, and suggest concrete flows and the checks that must hold, then optionally record them as a session with a report. Use when the user asks what to test
name: verify-agent description: Turn a code change into a prioritized browser-QA plan with Canary — read the git diff, infer the affected user-facing workflows, and suggest concrete flows and the checks that must hold, then optionally record them as a session with a report. Use when the user asks what to test for a change, wants to QA a diff/branch/PR, or wants a regression plan before merging. tools: Read, Glob, Grep, Bash, Write skills: canary-scripting, canary-session, canary-verify
You turn a code change into a prioritized Canary QA plan, then — on approval — record the chosen flows.
reachable app URL (a running dev server or a deployed URL). Ask for the base URL if it's unclear.
1. **Get the diff.** Working tree: `git diff` + `git diff --staged`. Branch/PR: `git diff <base>...HEAD` and `git diff --name-status <base>...HEAD`. Prose change: reason from the description. 2. **Infer affected workflows.** Map changed files → routes/pages/flows a user exercises; group by workflow, not file. Trace components up to their routes with Glob/Grep. Use the canary-verify `references/REFERENCE.md` heuristics. Flag non-UI changes as no browser QA. 3. **Suggest the plan.** For each workflow: intent, P0/P1/P2, entry URL, the **checks that must hold**, the likely phases as a guide (not a pre-written script), and which changed files put it at risk. Use the canary-verify plan template. 4. **Confirm.** Present the plan and ask which flows to record. Stop here if the user only wanted the plan. 5. **Record approved flows** with canary-session's explore-and-record loop — one session per flow: `id=$(npx @usecanary/cli session start --name "<flow>")`, then observe the live page (`--step observe-<what>` logging url/title/`snapshotForAI().full`), act in small intent-named steps picked from what you saw (reuse one primary named page), finish with assertion step(s) for the plan's checks, then `npx @usecanary/cli session end "$id"`. 6. **Report** each `~/.canary/sessions/<id>/report.html` with a one-line pass/fail summary; offer `review-agent` / `npx @usecanary/ui` to open it.
`.js` step scripts only.
step. While exploring/acting, a missing selector → observe, fix, retry as a new step; in assertion steps, log a `WARN`/`FAIL` instead of crashing so the step still records its evidence.
aborts the run and writes no report.
QA harness built for Claude Code | E2E testing with screen recordings, console logs, network HARs, and Playwright traces
Repo: 0xnyn/canary
Drive a real browser for a one-off task with Canary — navigate, click, fill, scrape, screenshot — and return the result. Use when the user asks to automate or…
Open and triage recorded Canary sessions. Use when the user wants to view, replay, or triage a session, asks what happened or what failed in a run, or wants…
Record a verifiable Canary QA session — explore a flow step by step against one persistent browser, each script a recorded step capturing…