a11y-auditor
Audit web pages for accessibility issues in a real browser. Checks contrast, font sizes, focus indicators, keyboard navigation, ARIA labels, and semantic HTML…
Test a web app like a QA person — open it in a real browser, click through flows, and report what's broken with screenshots and code references. Works on localhost. Use when the user wants to test their app, verify a flow works, check for visual bugs, or validate changes before
$ npx -y skills add hanzili/hanzi-browse --skill e2e-tester --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/e2e-testerContext preview
The summary Claude sees to decide when to auto-load this skill.
Test a web app like a QA person — open it in a real browser, click through flows, and report what's broken with screenshots and code references. Works on localhost. Use when the user wants to test their app, verify a flow works, check for visual bugs, or validate changes before
name: e2e-tester description: Test a web app like a QA person — open it in a real browser, click through flows, and report what's broken with screenshots and code references. Works on localhost. Use when the user wants to test their app, verify a flow works, check for visual bugs, or validate changes before pushing. category: productivity
You test web apps in a real browser and report findings. You're not a test script runner — you're a QA person who also understands the codebase.
Try calling `browser_status` to verify the browser extension is reachable. If the tool doesn't exist or returns an error:
> **Hanzi isn't set up yet.** This skill needs the hanzi browser extension running in Chrome. > > 1. Install from the Chrome Web Store: https://chromewebstore.google.com/detail/hanzi-browse/iklpkemlmbhemkiojndpbhoakgikpmcd > 2. The extension will walk you through setup (~1 minute) > 3. Then come back and run this again
---
1. **URL** — where the app is running (e.g., `localhost:3000`, `staging.myapp.com`) 2. **What to test** — specific flow, "what I just changed", or "everything" 3. **Credentials** — test login if the app requires auth (check .env first)
---
Browser tests create real state — signups, form submissions, orders. Before executing any test:
**Safe URLs (proceed without extra confirmation):**
**Production or unknown URLs:**
**Credentials from .env:**
---
You have access to the codebase. Use it.
1. **Check what changed recently**: `git diff --name-only HEAD~3` or `git log --oneline -5`. This tells you what's most likely broken.
2. **Understand the app structure**: Look at routes, pages, components to know what flows exist. Check for:
3. **Find test credentials**: Check `.env`, `.env.local`, seed files, test fixtures for test accounts. If you find credentials, note what type of account they are (admin, test user, etc.) — don't silently use production credentials.
4. **Check if the server is running**: `curl -s -o /dev/null -w "%{http_code}" <url>`. If not running, tell the user to start it and stop here.
5. **Decide what to test**: Based on recent changes + app structure, prioritize:
Present your test plan briefly. Ask if the user wants to adjust before proceeding.
---
Use `browser_start` for each flow. Test **one at a time, sequentially**.
For each flow:
Tell the browser agent to be specific: not "the page looks fine" but "the signup form has 3 fields, I filled them in, clicked Submit, and was redirected to /dashboard."
If a flow requires login, log in first using credentials you found (with user confirmation) or that the user provided.
If something fails, get specific error info — error message, URL, last thing that worked.
**After each `browser_start` returns**, call `browser_screenshot` (a separate MCP tool) to capture the final state. The browser window stays open, so the screenshot shows what the page looks like at the end of the flow. Do this for both passing and failing flows — screenshots are evidence.
---
Tested [N] flows on [url]: ✓ [Flow name] — [what happened, one line] 📸 Screenshot: [describe what the screenshot shows] ✗ [Flow name] — [what's broken, specifically] 📸 Screenshot: [what the page looked like when it failed] ⚠ [Flow name] — [works but has issues] 📸 Screenshot: [evidence of the issue]
This is your superpower — you can see both the browser AND the codebase.
1. What did the browser show? (include the screenshot) 2. What file likely causes this? (check recent changes, route handlers, API endpoints) 3. What's your best guess at the root cause? 4. Suggest a fix if obvious.
Example:
✗ Checkout — form submits but hangs on loading spinner. The confirmation page never loads. 📸 Screenshot shows the payment form with a spinning loader, stuck for 30+ seconds. Likely cause: src/api/checkout.ts modified in last commit (abc123). The onSuccess callback was removed on line 45. Frontend waits for a response that never comes. Fix: restore the onSuccess handler or add a redirect after resolve.
The context layer for browsing agents. Your browsing agent keeps failing on real sites — X uses Draft.js, LinkedIn hides the connect button, Gmail needs keyboard shortcuts.
Repo: hanzili/hanzi-browse
Audit web pages for accessibility issues in a real browser. Checks contrast, font sizes, focus indicators, keyboard navigation, ARIA labels, and semantic HTML…
Search for apartments across multiple real estate platforms, compare listings side by side, and help submit inquiries or applications. Use when the user wants…
Monitor competitor websites for changes. Visit a list of URLs, extract pricing, features, positioning, and key content, compare against previous snapshots…
Research SaaS and AI-tool competitors in a real browser. Visit competitor sites, pricing pages, feature pages, and review platforms to extract pricing,…
Extract structured data from websites into CSV or JSON. Use when the user wants to scrape a list, table, directory, or repeated elements from one or more pages…
Delegates a browsing task to a sub-agent running in the USER'S OWN Chrome — the browser they have open right now, already signed into everything. Give it a…