| name | browser |
| description | AI-native browser. Explore websites, discover page structure, take screenshots, and automate interactions via the `browser` CLI. |
Browser
browser <noun> <verb> [flags] — control a headless or headed Chrome session.
Discover commands
browser --help
browser <noun> --help
Quick-start examples
browser session start --json
browser page goto --url https://example.com --json
browser page discover --json
browser click text --text "Sign in" --json
browser tab list --json
When stdout is not a TTY, --json mode is auto-enabled so output is always pipe-safe.
Every CLI command has an identical Python function in ai_dev_browser.core — explore interactively with CLI, then script with the same functions:
from ai_dev_browser.core import page_goto, click_by_text, page_discover