bundles/ai-agents/skills/agent-browser/SKILL.md
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
npx skillsauth add shipshitdev/library agent-browserInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Inputs:
Outputs:
Creates/Modifies:
External Side Effects:
Confirmation Required:
Delegates To:
critique for design reviewaudit for technical quality checksqa-reviewer for final verification of generated workagent-browser open <url> # Navigate to page
agent-browser snapshot -i # Get interactive elements with refs
agent-browser click @e1 # Click element by ref
agent-browser fill @e2 "text" # Fill input by ref
agent-browser close # Close browser
agent-browser open <url>agent-browser snapshot -i (returns elements with refs like @e1, @e2)| Category | Example | Also in this category |
|---|---|---|
| Navigation | agent-browser open <url> | back, forward, reload, close |
| Snapshot | agent-browser snapshot -i | -c compact, -d <n> depth, -s <selector> scope |
| Interactions (@refs) | agent-browser click @e1 | fill, type, press, hover, check/uncheck, select, scroll, drag, upload |
| Get info | agent-browser get text @e1 | html, value, attr, title, url, count, box |
| State checks | agent-browser is visible @e1 | enabled, checked |
| Screenshots & media | agent-browser screenshot page.png --full | pdf, record start/stop |
| Wait | agent-browser wait --url "**/dashboard" | element, time, --text, --load, --fn |
| Mouse | agent-browser mouse move 100 200 | down, up, wheel |
| Semantic locators | agent-browser find role button click --name "Submit" | text, label, first/nth (alternative to @refs) |
| Sessions | agent-browser --session test1 open site-a.com | run parallel browsers; session list |
| Browser settings | agent-browser set viewport 1920 1080 | device, geo, offline, headers, credentials, media |
| Cookies & storage | agent-browser cookies set test_mode true | storage local/session, state save/load |
| Network | agent-browser network route <url> --abort | unroute, requests |
| Tabs, windows, frames | agent-browser tab new [url] | window new, frame "#iframe" |
| Dialogs | agent-browser dialog accept [text] | dismiss |
| JavaScript | agent-browser eval "document.title" | arbitrary JS in page context |
| Debugging | agent-browser console | errors, highlight, trace start/stop, --headed, --cdp <port> |
Add --json to any command for machine-readable output.
See references/commands.md for the full command reference (every flag and variant).
See references/commands.md (§ Common Patterns) for full worked examples: login with saved auth state, form validation testing, visual regression testing, multi-step checkout testing, and API response mocking.
development
Coordinates a weekly engineering review of board accuracy, recent code changes, operational health, and scoped cleanup. Use for a recurring repository health review or a review of the last several days.
testing
Audits project board configuration and prepares explicitly requested setup, copy, or normalization changes while preserving the existing workflow and provider boundaries. Use when inspecting a board's fields, columns, scope, or configuration.
testing
Reconciles a project board with current work and delivery evidence, reports incomplete coverage and metadata gaps, and applies only approved provider-supported field changes. Use when auditing board drift, reviewing blocked work, or assessing upcoming delivery.
development
Walk through how a subsystem works. Use for "how does X work", code walkthroughs before changing something, and placement or ownership questions. Explains architecture, runtime flow, and onboarding mental models. Can critique architecture. Use why for motivation.