Skip to main content

Browser Automation CLI

If you are an LLM using this tool, read SKILL.md — or run browser install skill to add it to Claude Code / Codex / OpenCode. (AGENTS.md is for agents developing this repo.)

A lightweight, self-hosted browser automation tool with a background daemon and CLI client. Enables authenticated web automation, screenshots, compact page snapshots, and page interactions via simple CLI commands. Share the SKILL.md file with your coding agent harness for seamless integration.

Why This Exists

Coding agents need to interact with authenticated web apps. Existing solutions all have tradeoffs:

  • Chrome DevTools MCP — requires Node.js, per-agent MCP server configuration, Google telemetry by default, and complex setup for each coding agent
  • BrowserMCP and similar tools — require installing Chrome extensions, tie into specific ecosystems, and use MCP which bloats the agent's context window with tool definitions and protocol overhead
  • Playwright/Puppeteer scripts — require writing code for every interaction, no persistent auth state
  • AI browser frameworks — heavy, opinionated, and framework-locked

Browser CLI solves this with a persistent daemon that any agent can call via subprocess. No extensions, no MCP config, no SDKs, no ecosystem lock-in. Sessions persist across agent calls (and daemon restarts) so you only log in once.

Install

uv tool install browser-automation-cli
browser install

If commands are not found after install, add ~/.local/bin to your PATH:

export PATH="$HOME/.local/bin:$PATH"

Quick Start

1. Create a session (the daemon auto-starts)

browser create   # first command starts the daemon in the background (0.5.0+)

Nothing visible opens: the daemon runs Chromium headless. Manage it yourself with browser daemon (or the legacy browser-daemon alias) if you prefer; BROWSER_NO_AUTOSTART=1 disables auto-start.

2. Log in when a site needs it

browser create --show     # opens a window so you can log in; `browser <id> hide` afterwards

A session is an isolated browser profile (cookies, storage). Log into any sites you need while the window is shown; the agent drives it hidden afterwards. Sessions survive daemon restarts.

3. Run browser actions

browser <id> navigate https://github.com
browser <id> snapshot                      # interactive elements, one line each, with @refs
browser <id> click @e7                     # click by ref from the snapshot
browser <id> click --text "Sign in"        # or by visible text / role / label
browser <id> type --label "Username" octocat
browser <id> screenshot                    # JPEG saved under ~/.browser-daemon/shots/

A snapshot looks like this (Cloudflare login, 245 tokens):

url: https://dash.cloudflare.com/login
title: Cloudflare Dashboard | Manage Your Account
@e2 link "Sign up" href="/sign-up"
h1 "Sign in to Cloudflare"
@e3 button "Continue with Google"
@e7 textbox "Email"
@e8 textbox "Password" type="password"
@e10 checkbox "Save email and login method on this device"
@e11 button "Sign in" [disabled]

4. Manage sessions

browser list                  # JSON (--table for humans)
browser <id> show | hide      # move between a visible window and headless
browser <id> delete
browser shutdown              # stop the daemon; sessions are saved and restored next start

Commands Reference

Standalone (no daemon)

browser capture <url> [-f] [-o <path>]     # headless viewport screenshot (-f = full page)
browser install [--all]                    # download headless Chromium (Chrome for Testing, ~196 MB);
                                           # the headed build (~356 MB) downloads on first `show`, or now with --all
browser engine [auto|managed|system|<path>]  # use your installed Chrome/Edge/Brave instead (zero download);
                                           # auto = managed build if downloaded, else the system browser
browser profile [status]                   # by DEFAULT sessions use a persistent "default" profile:
                                           # the first session opens a window to sign in, every later
                                           # session reuses that login. Manage it with:
browser profile <name> | new <name>        #   switch to / create a named persistent profile
browser profile delete <name>              #   delete a profile + its logins (each is a full Chrome
                                           #   profile, ~100 MB+; delete ones you no longer need)
browser profile ephemeral                  #   make throwaway the default for new sessions
browser create --profile <name>            #   per-session: this session uses its own persistent login
browser create --ephemeral                 #   per-session: throwaway, isolated
browser <id> show | hide                   #   flip a profile visible<->headless seamlessly (sessions kept)
                                           #   (different --profile = concurrent & isolated; same = shared tabs)
browser cleanup                            # kill Chromium processes launched from Playwright's cache
browser install skill                      # install the agent skill into Claude Code / Codex / OpenCode

Sessions

Command Description
browser create [--show] New session; --show opens a window (for manual login)
browser list [--table] Sessions with state (active / frozen / hibernated) and visible
browser <id> show / hide Move the session to a visible window / back to headless (auth kept)
browser <id> delete Close session and forget its cookies
browser shutdown Stop the daemon gracefully
browser --version / browser update Show version; upgrade to the latest PyPI release. The daemon checks PyPI once a day and the CLI prints a one-line hint on stderr when a newer version exists (BROWSER_NO_UPDATE_CHECK=1 disables)

Page commands

All print JSON (snapshot prints text). Add -s / --snapshot to any action to get a fresh snapshot in the same call.

Command Description
navigate <url> [--wait load|domcontentloaded|networkidle] Returns as soon as the page is usable; never fails on a slow networkidle
snapshot [scope] [--all] [--max N] [--json] Visible interactive elements + headings. --all adds text blocks, --json gives boxes and unique selectors
click <target> [--double] Also click --at X,Y to click raw viewport pixels (canvas / vision — no DOM target; screenshot first, pixels map 1:1)
type <target> <text> [--sequential] [--submit] fill() by default; --sequential sends key events (autocomplete); --submit presses Enter
press <key> [target] Enter, Tab, Control+a, …
hover <target>
select <target> <value-or-label>
scroll [up|down] [px] / scroll <target>
text [selector] Readable text of the page or an element (cheap extraction)
wait [--text T | --selector S] [--gone] [--timeout ms]
screenshot [target] [-o path] [-f] [-q 70] JPEG; element screenshots via any target
eval <js> Evaluate an expression in the page
console [--clear] Buffered console messages
back / forward
batch JSON lines on stdin, run in one round-trip, stop at first failure

Targets: @e12 (ref from snapshot — preferred) · CSS selector · text=Create · role=button[name=Create] · label=Email · placeholder=Search · or flags --text / --role [--name] / --label / --placeholder. Ambiguous CSS selectors are refused (strict mode) instead of clicking the first match. For canvas / vision cases with no DOM target, click --at X,Y clicks raw viewport pixels (take a screenshot first; its pixels map 1:1 to click coordinates).


Architecture

  • Daemon (browser-daemon): Unix socket server (~/.browser-daemon/socket, mode 600) owning a headless Chromium, plus a headed one that exists only while some session is shown.
  • CLI (browser): ~40 ms per call, no Playwright import on the daemon path.
  • Sessions: one isolated browser context each. Hidden sessions are frozen after 10 s idle (script execution paused, ~3% CPU on animated dashboards; callbacks that fire while frozen are dropped, so BROWSER_FREEZE_AFTER=0 disables it) and hibernated to ~/.browser-daemon/sessions/<id>.json (cookies + storage + URL) after 10 min idle or on shutdown; they are rehydrated transparently on the next command. Tune with BROWSER_FREEZE_AFTER / BROWSER_HIBERNATE_AFTER (seconds).
  • Resource profile (M4, Cloudflare dashboard parked in a session): 2% CPU / 1.1 GB vs 264% CPU / 2.1 GB for v0.2. See AGENTBENCH.md for the measurements.

Anti-Detection

  • navigator.webdriver hidden via add_init_script
  • Desktop Chrome user agent derived from the actual Chromium version
  • 1280x800 viewport (desktop layouts; same size Anthropic/OpenAI computer-use tooling targets)

Output Format

Action responses:

{"success": true, "url": "https://github.com", "title": "GitHub"}

Errors (exit code 1):

{"success": false, "error": "ref @e9 is unknown or stale (page changed); run snapshot again"}

snapshot --json:

{"success": true, "url": "...", "title": "...", "scrollY": 0, "viewportHeight": 800, "viewportWidth": 1280, "documentHeight": 2400,
 "elements": [{"ref": "e3", "role": "button", "name": "Create", "pos": "", "box": [912, 640, 88, 36]}]}

Using with Coding Agents

Run browser install skill to install SKILL.md into Claude Code / Codex / OpenCode, or share the file with any other harness.

Rust implementation (preview)

rust/ contains a Rust client and daemon with the same CLI and socket protocol — no Python, Playwright or Node at all: browser install downloads the same Chrome-for-Testing build Playwright pins (into the same cache, so both implementations share it), and capture is native too. Per-call overhead 40 ms → 2 ms, daemon RSS −90 MB, frame- and shadow-DOM-aware snapshots. See AGENTBENCH.md. Published to PyPI as 0.4.0 under the same name (wheels for Linux x86_64/aarch64, macOS arm64/x86_64).

cd rust && cargo build --release
./target/release/browser list          # the daemon auto-starts (`browser daemon` runs it in the foreground)

Development

uv sync
.venv/bin/python -m unittest -v tests/test_cli.py          # end-to-end tests against scratch/bench/site
.venv/bin/python scratch/bench/run.py <label>              # benchmark (latency, tokens, idle CPU/RSS)
.venv/bin/python scratch/bench/compare.py baseline <label>

Troubleshooting

Symptom Fix
Command not found: browser export PATH="$HOME/.local/bin:$PATH"
Daemon not running Auto-start was disabled or failed — browser daemon &, check ~/.browser-daemon/daemon.log
Browser doesn't launch browser install
Session not found browser list
ref @eN is unknown or stale Page changed; run snapshot again
strict mode violation Selector matched several elements; use an @ref, --text, or a tighter selector
Stale Chromium processes browser cleanup

Installing the Rust binaries

curl -fsSL https://raw.githubusercontent.com/jshan9078/browser-automation-cli/main/rust/install.sh | sh

or simply uv tool install browser-automation-cli (0.4.0+ wheels are the Rust binaries). The script installs browser and browser-daemon into ~/.local/bin (set BROWSER_CLI_BIN to change); other platforms: cd rust && cargo build --release.

Wheel (same PyPI project name, so download stats carry over): cd rust && uvx maturin build --releaseuv tool install rust/target/wheels/browser_automation_cli-*.whl. From 0.4.0 the PyPI package ships the Rust binaries; the Python implementation remains in cli/ and daemon/ for reference and for python -m daemon.server.

CI (.github/workflows/rust-wheels.yml) builds wheels for Linux x86_64/aarch64 and macOS arm64/x86_64 on every push touching rust/, runs the end-to-end suite against the Rust daemon on Linux, attaches wheels to the release on v* tags, and publishes to PyPI when a PYPI_API_TOKEN repository secret exists. Windows is not a target: the daemon speaks over a Unix socket.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

browser_automation_cli-0.8.0.tar.gz (63.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

browser_automation_cli-0.8.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

browser_automation_cli-0.8.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

browser_automation_cli-0.8.0-py3-none-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

browser_automation_cli-0.8.0-py3-none-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

File details

Details for the file browser_automation_cli-0.8.0.tar.gz.

File metadata

  • Download URL: browser_automation_cli-0.8.0.tar.gz
  • Upload date:
  • Size: 63.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for browser_automation_cli-0.8.0.tar.gz
Algorithm Hash digest
SHA256 1d81f8cb79a0587c0f16598e63fb4595bcc323f55c83ac0086ee048254af7b18
MD5 5a2c10315c892cc1243d28ec1ded9c4a
BLAKE2b-256 863a129b91feaa03b44d6d0fa4fa317cc8052e0b67e3b05918e948c1065d9f95

See more details on using hashes here.

File details

Details for the file browser_automation_cli-0.8.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: browser_automation_cli-0.8.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for browser_automation_cli-0.8.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35acfaf8c971e2b0ec91bcb9bab4c311e58364e7aed0157d37aecef8dde74d12
MD5 2f827cdee60785baa0c305becd0a015d
BLAKE2b-256 86e6b3b0c6960d29b2bb7b3fb7e6258126d7ce84e48bd087c90a33ddbbbdcd9d

See more details on using hashes here.

File details

Details for the file browser_automation_cli-0.8.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: browser_automation_cli-0.8.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for browser_automation_cli-0.8.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 470a999996790a867b63f142407180ddbbdea7a8284bf1c37843c7290c43571b
MD5 ecce60a7b9478bee68df3e0c60cbb4be
BLAKE2b-256 3c2dd6521e34994d1c60a3458857504beb2220c7ea28d3fe4144e90485a7c629

See more details on using hashes here.

File details

Details for the file browser_automation_cli-0.8.0-py3-none-macosx_11_0_arm64.whl.

File metadata

  • Download URL: browser_automation_cli-0.8.0-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for browser_automation_cli-0.8.0-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6957bcfa69801ee4ece70a6de146e269de392f33538e17c7f998e20fa787e23c
MD5 d6501a45d765b7eacd51e4c089cf2f03
BLAKE2b-256 09ef36467ecb10ada3196dbc239157537cf2c34ee679e1fd1125a2bf22601355

See more details on using hashes here.

File details

Details for the file browser_automation_cli-0.8.0-py3-none-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: browser_automation_cli-0.8.0-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for browser_automation_cli-0.8.0-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 625818e60d365f372bbb50f005024801aaf9805ce8fa185f6bab32ee3fef1ab6
MD5 ef087f0e7cd113308dd15545d8dd39bd
BLAKE2b-256 65a3b68116945567940f7d5fa2bc30085b3fe3ed141c8c7e99f333db18e9f2f0

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.8.0 This release

5 files

0.7.2

5 files

0.7.1

5 files

0.7.0

5 files

0.6.0

5 files

0.5.1

5 files

0.5.0

5 files

0.4.1

5 files

0.4.0

5 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

3 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page