canary-review
Open and triage recorded Canary sessions in the local viewer. Use when the user wants to look at, replay, compare, or triage a recorded session — or asks what…
Drive a real browser for a one-off task with Canary — navigate, click, fill, scrape, screenshot — and return the result. Nothing is recorded. Use when the user asks to automate a browser task, scrape a page, fill a form, or check something on a site without needing a report.
$ npx -y skills add 0xnyn/canary --skill canary-automate --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/canary-automateContext preview
The summary Claude sees to decide when to auto-load this skill.
Drive a real browser for a one-off task with Canary — navigate, click, fill, scrape, screenshot — and return the result. Nothing is recorded. Use when the user asks to automate a browser task, scrape a page, fill a form, or check something on a site without needing a report.
name: canary-automate
description: Drive a real browser for a one-off task with Canary — navigate, click, fill, scrape, screenshot — and return the result. Nothing is recorded. Use when the user asks to automate a browser task, scrape a page, fill a form, or check something on a site without needing a report. Trigger phrases — "go to X and get Y", "scrape this page", "automate this browser task", "log in and check", "take a screenshot of".
license: MIT
metadata:
author: usecanary
version: 0.4.4
category: workflow
tags:
- canary
- browser-automation
- scrapingRun a script against a real browser and return the result — ephemeral, nothing recorded. Use the **canary-scripting** skill for the API.
User says: "get the top 10 Hacker News titles" or "scrape the headlines" Write a script that opens the page and `evaluate`s the data, run it, return the JSON it logs.
User says: "is the pricing page up and what's the headline?" or "screenshot the homepage" `goto`, read the element (or `screenshot`), report.
1. If the runtime isn't installed: `npx @usecanary/cli install` (one-time; downloads Chromium). 2. Write a short, focused script with the canary-scripting API (`browser.getPage`, `page.goto`, `locator`/`evaluate`, `console.log` the result), observing first on unknown pages (see *Hard rules*). 3. Run it: `npx @usecanary/browser run ./script.js` (or pipe the script via stdin). 4. If the result is empty or a selector missed, **observe and retry**: run a second short script that logs `page.url()`, `page.title()`, and `(await page.snapshotForAI()).full` (or a targeted `locator(...).count()`), pick a better selector, re-run. Named pages persist between runs, so state carries over. 5. Report the script's stdout. On optional extractions, degrade gracefully (log a `WARN`, don't crash) — but don't paper over a miss you can fix by observing. 6. Cleanup (optional): the run leaves a shared background daemon up for reuse. To shut it (and any browser) down, run `npx @usecanary/browser stop` (alias of `canary stop` / `canary daemon stop`).
<!-- canary:snippet rule-observe-first -->
is there, pick a semantic selector from it (`getByRole`, `getByText`), then interact. Never guess selectors blind.
<!-- canary:end rule-observe-first -->
QA harness built for Claude Code | E2E testing with screen recordings, console logs, network HARs, and Playwright traces
Repo: 0xnyn/canary
Open and triage recorded Canary sessions in the local viewer. Use when the user wants to look at, replay, compare, or triage a recorded session — or asks what…
The Canary sandbox scripting API for browser automation. Use when writing or debugging a Canary script — looking up how to open a page, click, fill, extract…
Record a verifiable QA session with Canary — explore a flow step by step against one persistent browser, each script a recorded step that captures a Playwright…
Turn a code change into a prioritized browser-QA plan with Canary — read the git diff, infer which user-facing workflows it touches, suggest the concrete flows…