agent-browser
Installation
SKILL.md
Browser Automation with agent-browser
Use agent-browser as an interactive browser REPL: open a page, inspect it with snapshot -i, interact using refs, then re-snapshot whenever the DOM changes.
Quick Start
agent-browser open https://example.com/login
agent-browser snapshot -i
# Output: @e1 [input type="email"], @e2 [input type="password"], @e3 [button] "Sign in"
agent-browser fill @e1 "user@example.com"
agent-browser fill @e2 "password123"
agent-browser click @e3
agent-browser wait --url "**/dashboard"
agent-browser snapshot -i