From browsing-with-robot
Automates browser interactions for web browsing, scraping, form filling, screenshots, and UI interaction. Use when the user needs to visit a webpage, check a live site, scrape content, fill forms, take screenshots, or interact with a web UI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/browsing-with-robot:browsing-with-robotThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
robot# start headless browser
robot start
# navigate to a page
robot navigate "https://example.com"
# extract page text (prefer over screenshot — saves tokens)
robot text
# interact with elements using CSS selectors
robot click "#my-button"
robot type "#email" "user@test.com"
# screenshot only when you need to see visuals
robot screenshot
# always clean up when done
robot stop
robot start # headless default
robot start --headless=false # visible browser
robot stop # always stop when done
robot status # current URL, title, state
robot navigate <url> # navigate and wait for load
robot text # extract visible page text
robot screenshot # save PNG, returns file path
robot click <selector> # CSS selector (e.g. #btn, .link, button)
robot type <selector> <text> # type into input field
All responses are JSON. View screenshots with the Read tool.
{"ok": true, "url": "...", "title": "..."}
{"ok": true, "text": "..."}
{"ok": true, "path": "/tmp/robot/screenshot-1234.png"}
{"ok": false, "error": "...", "suggestion": "..."}
robot start
robot navigate "https://example.com"
robot text
robot stop
robot start
robot navigate "https://example.com/form"
robot type "#email" "user@test.com"
robot type "#password" "secret"
robot click "button[type='submit']"
robot text
robot stop
robot stop then robot start.text over screenshot — text is token-cheap. Screenshot only for visual layout.robot stop runs automatically when the session ends, but you can also run it manually between tasks.npx claudepluginhub tmdgusya/browsing-with-robot --plugin browsing-with-robotAutomates web browser interactions via CLI using natural language. Supports navigation, data extraction, screenshots, form filling, and click actions. Remote mode with Browserbase provides CAPTCHA solving, residential proxies, and anti-detection features.
Reference for agent-browser commands to navigate pages, snapshot elements, interact (click/fill/type), extract data. For web testing, form automation, screenshots.
Establishes skill invocation protocol: auto-activates at conversation start to ensure relevant skills are loaded before any response, including clarifying questions.