Download Latest Version 0.11.5 source code.tar.gz (4.9 MB)
Email in envelope

Get an email when there's a new version of Browser Use

Home / 0.11.4
Name Modified Size InfoDownloads / 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.

local-qa


:::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_KEY from 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

Full Changelog: https://github.com/browser-use/browser-use/compare/0.11.3...0.11.4

Source: README.md, updated 2026-01-22