remote-browser
Installation
Summary
Cloud browser automation for sandboxed agents without local GUI access.
- Supports navigation, page inspection, interactions, JavaScript execution, and cookie management via 30+ CLI commands
- Includes cloud session management for running autonomous browser agents in parallel, with task monitoring and structured output options
- Provides local dev server tunneling via Cloudflare to expose ports from the remote machine to the cloud browser
- Maintains session state across commands, enabling sequential workflows like login-then-export or form-fill patterns
- Integrates Python execution for variable management and direct browser object access within automation scripts
SKILL.md
Browser Automation for Sandboxed Agents
This skill is for agents running on sandboxed remote machines (cloud VMs, CI, coding agents) that need to control a headless browser.
Prerequisites
browser-use doctor # Verify installation
For setup details, see https://github.com/browser-use/browser-use/blob/main/browser_use/skill_cli/README.md
Core Workflow
- Navigate:
browser-use open <url>— starts headless browser if needed - Inspect:
browser-use state— returns clickable elements with indices - Interact: use indices from state (
browser-use click 5,browser-use input 3 "text") - Verify:
browser-use stateorbrowser-use screenshotto confirm - Repeat: browser stays open between commands
Related skills