| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 0.11.4 - CLI source code.tar.gz | 2026-01-22 | 4.9 MB | |
| 0.11.4 - CLI source code.zip | 2026-01-22 | 5.1 MB | |
| README.md | 2026-01-22 | 2.3 kB | |
| Totals: 3 Items | 10.0 MB | 9 | |
Browser Use CLI + skill
Give your Claude Code/Codex agent access to local and remote browsers. Really helpful for local dev.
:::bash
browser-use open https://example.com # Navigate
browser-use state # Returns clickable elements: [0] button "Submit", [1] input "Email"...
browser-use click 0 # Click by index
browser-use type "hello@example.com" # Type text
browser-use screenshot page.png # See the page
browser-use close # Done
Just install the skill and ask Claude to browse:
:::bash
mkdir -p ~/.claude/skills/browser-use
curl -o ~/.claude/skills/browser-use/SKILL.md \
https://raw.githubusercontent.com/browser-use/browser-use/main/skills/browser-use/SKILL.md
đĽď¸ Browser Modes
| Mode | Command | Description |
|---|---|---|
| Headless | browser-use open <url> |
Default, fast |
| Headed | browser-use open --headed <url> |
Visible window |
| Real Chrome | browser-use --browser real open <url> |
Your Chrome with existing logins |
| âď¸ Cloud | browser-use --browser remote open <url> |
Stealth browser + proxies included |
Cloud browser requires
BROWSER_USE_API_KEYfrom cloud.browser-use.com. Proxies and anti-detection are automatic - just use--browser remote. Returns a live preview URL.
đ Multiple Sessions
:::bash
browser-use -s work open https://work.example.com
browser-use -s personal open https://gmail.com
browser-use sessions # List all
browser-use close --all # Close all
What's Changed
- Improve placeholder handling for 2FA secrets in registry service by @LarsenCundric in https://github.com/browser-use/browser-use/pull/3902
- Custom tool registry documentation by @mertunsall in https://github.com/browser-use/browser-use/pull/3904
- Browser Use CLI (+ skill) by @gregpr07 in https://github.com/browser-use/browser-use/pull/3911
Full Changelog: https://github.com/browser-use/browser-use/compare/0.11.3...0.11.4