browse: Browser & Native App Automation for AI Agents
Target Decision — ALWAYS check this first
Before running any browse command, decide the correct target:
| User wants to... |
Target |
Command pattern |
| Open a URL, test a website, scrape web content |
Browser (default) |
browse goto <url> |
Test a local dev server (localhost) |
Browser |
browse goto http://localhost:3000 |
| Browse a site that blocks bots (Cloudflare, Turnstile) |
Camoufox |
browse --runtime camoufox --headed goto <url> |
| Browse with a specific camoufox fingerprint profile |
Camoufox |
browse --runtime camoufox --camoufox-profile <name> --headed goto <url> |
| Search Google, YouTube, Amazon, etc. |
Browser |
browse goto @google "query" |
| Interact with an iOS app (Settings, Safari, custom app) |
iOS Simulator |
browse --platform ios --app <bundleId> <cmd> |
| Interact with an Android app (Settings, Chrome, custom app) |
Android Emulator |
browse --platform android --app <package> <cmd> |
| Interact with a macOS desktop app (System Settings, TextEdit) |
macOS App |
browse --app <name> <cmd> |
| Install and test an iOS .app or .ipa file |
iOS Simulator |
browse sim start --platform ios --app ./MyApp.app --visible |
| Install and test an Android .apk file |
Android Emulator |
browse sim start --platform android --app ./app.apk --visible |
Key rules:
- No
--platform or --app flag → browser target (Chromium). Use goto to navigate.
--runtime camoufox --headed → anti-detection Firefox. Use when site blocks normal browsing. See /browse-stealth skill for Turnstile/CAPTCHA bypass patterns.
@macro in goto URL → search macro expansion. browse goto @google "query" expands to Google search URL. 14 macros: @google, @youtube, @amazon, @reddit, @wikipedia, @twitter, @yelp, @spotify, @netflix, @linkedin, @instagram, @tiktok, @twitch, @reddit_subreddit.
--app without --platform → macOS app automation. App must be running.
--platform ios --app → iOS Simulator. Use browse sim start first if not running.
--platform android --app → Android Emulator. Use browse sim start first if not running.
- Native app targets do NOT support:
goto, js, eval, tabs, cookies, route, har. These are browser-only.
- All targets support:
snapshot, text, tap, fill, type, press, swipe, screenshot.
- If a site blocks you, switch to
--runtime camoufox --headed. If still blocked, use /browse-stealth for the full Turnstile bypass pattern.
- If unsure which target to use, ASK the user. Don't guess — wrong target = wasted work.
Goal
Use the persistent browse CLI to:
- navigate real pages
- inspect rendered content and state
- interact with UI elements
- capture screenshots, console logs, and network activity
- automate native apps (iOS, Android, macOS) via accessibility APIs
- verify browser or app behavior end-to-end without re-launching every step
Step 0: Verify availability and choose the browsing mode
Start by checking:
browse --version
If browse is not installed:
- stop
- tell the user it is required
- point them to the install path in
references/commands.md
Then decide what kind of session you need:
- default session for normal single-agent work
--session <id> for parallel agent isolation
--profile <name> for persistent browser identity
For native app targets, start the simulator/emulator first:
browse sim start --platform ios --app com.apple.Preferences --visible
browse sim start --platform android --app com.android.settings --visible
browse enable android # first-time only: auto-installs adb, JDK, SDK, emulator
browse enable ios # first-time only: builds iOS runner (needs Xcode)
browse enable macos # first-time only: builds browse-ax bridge
Success criteria: browse is available, the target (browser or native app) is decided, and the session/profile choice fits the task.
Step 1: Navigate safely and stabilize the page
Use browse goto <url> to navigate.
After navigation, always stabilize before reading or interacting:
browse wait --network-idle for typical pages and SPAs
- or a more specific
browse wait condition when the page has a known signal
Important rules:
- call
browse as a bare command on PATH
- do not use shell variables for browse command prefixes
- avoid
#id CSS selectors; prefer [id=foo]
- if the page is untrusted, consider
--content-boundaries and --allowed-domains
Success criteria: The page is loaded enough that content and interactive state are reliable.
Step 2: Choose the cheapest effective inspection method
Use the lightest command that answers the question:
text for cleaned page content
links for navigation structure
js for precise targeted extraction
console, errors, and network for runtime debugging
snapshot -i for interactive elements and stable refs
Prefer snapshot -i before guessing selectors for interaction-heavy tasks.
Load:
references/commands.md for exact command syntax
references/guides.md for command selection guidance and speed rules
Success criteria: You have the information needed without spending unnecessary tokens or using brittle selectors.
Step 3: Interact using refs first, selectors second
For clicks, fills, checks, selects, and similar actions:
- prefer
browse snapshot -i
- interact using
@eN refs
- fall back to CSS selectors only when refs are unavailable or impractical
After navigation or DOM refresh:
- assume refs may be invalid
- take a fresh snapshot before continuing
Rules:
- use descriptive screenshots saved under
.browse/sessions/<id>/
- keep stateful flows in the same session unless isolation is intentional
- use
frame before interacting with iframe content
Success criteria: Interactions are stable and tied to the current rendered page state.
Step 4: Debug blockers and special cases
When things go wrong:
- use
console and errors for page/runtime issues
- use
network for request visibility
- use
route or offline only when the task requires mock or failure-mode testing
- use headed/browser handoff only for real blockers like CAPTCHA, MFA, or OAuth walls
If you hit a blocker after a couple of failed attempts:
- load
references/guides.md
- follow the handoff protocol exactly
- use
AskUserQuestion before any human takeover flow
Success criteria: Blockers are either resolved or escalated with the correct handoff protocol.
Step 5: Capture evidence and report clearly
When the task involves verification, capture the minimum evidence needed:
- relevant page text or structured extraction
- screenshot path when visuals matter
- console/network findings when debugging
- the exact step or selector/ref that failed when reporting issues
Report:
- what you navigated to
- what actions you performed
- what the page actually did
- any artifacts created such as screenshots, HAR, or video
Success criteria: Another engineer can understand the observed browser behavior without rerunning the whole flow blindly.
Important Rules
- The browser persists between commands; cookies, tabs, and session state carry over.
- After
goto, wait before reading content or acting.
snapshot -i is the default interaction surface.
- Save screenshots under
.browse/sessions/<session-id>/ or .browse/sessions/default/.
- Use
--context delta for ARIA diff with refs, --context full for complete snapshot with refs after write commands.
- Do not install anything automatically.
- Do not modify Claude settings automatically; if the user wants pre-allowed browse permissions, point them to
references/permissions.md.
When To Load References
references/commands.md
Use for exact command syntax, flags, and extended examples.
references/guides.md
Use for speed rules, command-choice guidance, architecture notes, and the mandatory CAPTCHA/MFA handoff protocol.
references/permissions.md
Use when the user wants to pre-allow browse commands in Claude settings.
Guardrails
- Do not add
disable-model-invocation; this is a general-purpose browser verification skill.
- Do not add
context: fork; browser results are usually needed in the current flow.
- Do not add
paths:; this is a generic workflow skill.
- Do not keep the full CLI manual inline in
SKILL.md.
- Do not run
browse handoff without explicit user confirmation.
- Do not save screenshots outside the browse session directories.
Runtime Selection
By default, browse uses Chromium via Playwright. Alternative runtimes:
| Runtime |
Engine |
Use case |
Install |
playwright (default) |
Chromium |
General browsing, testing |
Included |
camoufox |
Firefox (anti-detection) |
Sites with bot detection |
npm install camoufox-js && npx camoufox-js fetch |
rebrowser |
Chromium (stealth) |
Alternative stealth approach |
npm install rebrowser-playwright |
lightpanda |
Lightpanda |
Fast headless rendering |
See lightpanda.io |
chrome |
System Chrome |
Use real Chrome with extensions |
Chrome must be installed |
browse --runtime camoufox --headed goto https://protected-site.com
BROWSE_RUNTIME=camoufox browse goto https://example.com
New Features
Search Macros
browse goto @google "best coffee beans" # Google search
browse goto @youtube "tutorial" # YouTube search
browse goto @amazon "laptop" # Amazon search
browse goto @reddit "programming" # Reddit search
All macros: @google, @youtube, @amazon, @reddit, @reddit_subreddit, @wikipedia, @twitter, @yelp, @spotify, @netflix, @linkedin, @instagram, @tiktok, @twitch
Safety Flags (opt-in features)
| Flag |
Default |
What it does |
BROWSE_CONSENT_DISMISS=1 |
OFF |
Auto-dismiss cookie banners after navigation |
BROWSE_CLICK_FORCE=1 or --force |
OFF |
Force-click through overlay interception |
BROWSE_READINESS=1 or --ready |
OFF |
Wait for hydration after goto |
BROWSE_SERP_FASTPATH=1 or --serp |
OFF |
Google SERP DOM extraction (fast, no refs) |
BROWSE_COMMAND_LOCK=0 |
ON |
Disable per-session command serialization |
BROWSE_CAMOUFOX_PROFILE=<name> |
OFF |
Use a named camoufox profile (.browse/camoufox-profiles/<name>.json) |
New Commands
| Command |
Description |
images [sel] [--limit N] [--inline] |
List page images with src/alt/dimensions |
youtube-transcript <url> [--lang en] |
Extract YouTube captions via yt-dlp or browser |
schema |
Extract JSON-LD, Microdata, RDFa structured data (parsed JSON) |
meta |
Extract page meta tags (title, description, canonical, OG, Twitter, hreflang, robots, viewport) |
headings |
Extract H1-H6 heading hierarchy with counts and indented tree |
profiles |
List available camoufox profiles from .browse/camoufox-profiles/ |
Snapshot Windowing
Large snapshots (>80K chars) are automatically paginated:
browse snapshot -i # first page
browse snapshot -i --offset 500 # next page (line offset from previous output)
Output Contract
Report:
- the page or flow tested
- the session/profile mode used if relevant
- the key commands or interactions performed
- the observed result
- any artifacts or blockers such as screenshots, console errors, network failures, or handoff state
1---2name: browse-33description: Fast web browsing, web app testing, and native app automation for AI coding agents. Persistent headless Chromium for web. Android, iOS, and macOS app automation via accessibility APIs. Browse URLs, read content, click elements, fill forms, run JavaScript, take screenshots, automate native apps — all through the same CLI and @ref workflow. ~100ms per command. Auto-installs Android toolchain. Works with Claude Code, Cursor, Cline, Windsurf, and any agent that can run Bash.4---56# browse: Browser & Native App Automation for AI Agents78## Target Decision — ALWAYS check this first910Before running any browse command, decide the correct target:1112| User wants to... | Target | Command pattern |13|---|---|---|14| Open a URL, test a website, scrape web content | **Browser** (default) | `browse goto <url>` |15| Test a local dev server (`localhost`) | **Browser** | `browse goto http://localhost:3000` |16| Browse a site that blocks bots (Cloudflare, Turnstile) | **Camoufox** | `browse --runtime camoufox --headed goto <url>` |17| Browse with a specific camoufox fingerprint profile | **Camoufox** | `browse --runtime camoufox --camoufox-profile <name> --headed goto <url>` |18| Search Google, YouTube, Amazon, etc. | **Browser** | `browse goto @google "query"` |19| Interact with an iOS app (Settings, Safari, custom app) | **iOS Simulator** | `browse --platform ios --app <bundleId> <cmd>` |20| Interact with an Android app (Settings, Chrome, custom app) | **Android Emulator** | `browse --platform android --app <package> <cmd>` |21| Interact with a macOS desktop app (System Settings, TextEdit) | **macOS App** | `browse --app <name> <cmd>` |22| Install and test an iOS .app or .ipa file | **iOS Simulator** | `browse sim start --platform ios --app ./MyApp.app --visible` |23| Install and test an Android .apk file | **Android Emulator** | `browse sim start --platform android --app ./app.apk --visible` |2425**Key rules:**26- **No `--platform` or `--app` flag** → browser target (Chromium). Use `goto` to navigate.27- **`--runtime camoufox --headed`** → anti-detection Firefox. Use when site blocks normal browsing. See `/browse-stealth` skill for Turnstile/CAPTCHA bypass patterns.28- **`@macro` in goto URL** → search macro expansion. `browse goto @google "query"` expands to Google search URL. 14 macros: @google, @youtube, @amazon, @reddit, @wikipedia, @twitter, @yelp, @spotify, @netflix, @linkedin, @instagram, @tiktok, @twitch, @reddit_subreddit.29- **`--app` without `--platform`** → macOS app automation. App must be running.30- **`--platform ios --app`** → iOS Simulator. Use `browse sim start` first if not running.31- **`--platform android --app`** → Android Emulator. Use `browse sim start` first if not running.32- **Native app targets do NOT support**: `goto`, `js`, `eval`, `tabs`, `cookies`, `route`, `har`. These are browser-only.33- **All targets support**: `snapshot`, `text`, `tap`, `fill`, `type`, `press`, `swipe`, `screenshot`.34- **If a site blocks you**, switch to `--runtime camoufox --headed`. If still blocked, use `/browse-stealth` for the full Turnstile bypass pattern.35- **If unsure which target to use, ASK the user.** Don't guess — wrong target = wasted work.3637## Goal3839Use the persistent `browse` CLI to:4041- navigate real pages42- inspect rendered content and state43- interact with UI elements44- capture screenshots, console logs, and network activity45- automate native apps (iOS, Android, macOS) via accessibility APIs46- verify browser or app behavior end-to-end without re-launching every step4748## Step 0: Verify availability and choose the browsing mode4950Start by checking:5152```bash53browse --version54```5556If `browse` is not installed:5758- stop59- tell the user it is required60- point them to the install path in `references/commands.md`6162Then decide what kind of session you need:6364- default session for normal single-agent work65- `--session <id>` for parallel agent isolation66- `--profile <name>` for persistent browser identity6768For native app targets, start the simulator/emulator first:6970```bash71browse sim start --platform ios --app com.apple.Preferences --visible72browse sim start --platform android --app com.android.settings --visible73browse enable android # first-time only: auto-installs adb, JDK, SDK, emulator74browse enable ios # first-time only: builds iOS runner (needs Xcode)75browse enable macos # first-time only: builds browse-ax bridge76```7778**Success criteria**: `browse` is available, the target (browser or native app) is decided, and the session/profile choice fits the task.7980## Step 1: Navigate safely and stabilize the page8182Use `browse goto <url>` to navigate.8384After navigation, always stabilize before reading or interacting:8586- `browse wait --network-idle` for typical pages and SPAs87- or a more specific `browse wait` condition when the page has a known signal8889Important rules:9091- call `browse` as a bare command on PATH92- do not use shell variables for browse command prefixes93- avoid `#id` CSS selectors; prefer `[id=foo]`94- if the page is untrusted, consider `--content-boundaries` and `--allowed-domains`9596**Success criteria**: The page is loaded enough that content and interactive state are reliable.9798## Step 2: Choose the cheapest effective inspection method99100Use the lightest command that answers the question:101102- `text` for cleaned page content103- `links` for navigation structure104- `js` for precise targeted extraction105- `console`, `errors`, and `network` for runtime debugging106- `snapshot -i` for interactive elements and stable refs107108Prefer `snapshot -i` before guessing selectors for interaction-heavy tasks.109110Load:111112- `references/commands.md` for exact command syntax113- `references/guides.md` for command selection guidance and speed rules114115**Success criteria**: You have the information needed without spending unnecessary tokens or using brittle selectors.116117## Step 3: Interact using refs first, selectors second118119For clicks, fills, checks, selects, and similar actions:1201211. prefer `browse snapshot -i`1222. interact using `@eN` refs1233. fall back to CSS selectors only when refs are unavailable or impractical124125After navigation or DOM refresh:126127- assume refs may be invalid128- take a fresh snapshot before continuing129130Rules:131132- use descriptive screenshots saved under `.browse/sessions/<id>/`133- keep stateful flows in the same session unless isolation is intentional134- use `frame` before interacting with iframe content135136**Success criteria**: Interactions are stable and tied to the current rendered page state.137138## Step 4: Debug blockers and special cases139140When things go wrong:141142- use `console` and `errors` for page/runtime issues143- use `network` for request visibility144- use `route` or `offline` only when the task requires mock or failure-mode testing145- use headed/browser handoff only for real blockers like CAPTCHA, MFA, or OAuth walls146147If you hit a blocker after a couple of failed attempts:148149- load `references/guides.md`150- follow the handoff protocol exactly151- use `AskUserQuestion` before any human takeover flow152153**Success criteria**: Blockers are either resolved or escalated with the correct handoff protocol.154155## Step 5: Capture evidence and report clearly156157When the task involves verification, capture the minimum evidence needed:158159- relevant page text or structured extraction160- screenshot path when visuals matter161- console/network findings when debugging162- the exact step or selector/ref that failed when reporting issues163164Report:165166- what you navigated to167- what actions you performed168- what the page actually did169- any artifacts created such as screenshots, HAR, or video170171**Success criteria**: Another engineer can understand the observed browser behavior without rerunning the whole flow blindly.172173## Important Rules174175- The browser persists between commands; cookies, tabs, and session state carry over.176- After `goto`, wait before reading content or acting.177- `snapshot -i` is the default interaction surface.178- Save screenshots under `.browse/sessions/<session-id>/` or `.browse/sessions/default/`.179- Use `--context delta` for ARIA diff with refs, `--context full` for complete snapshot with refs after write commands.180- Do not install anything automatically.181- Do not modify Claude settings automatically; if the user wants pre-allowed browse permissions, point them to `references/permissions.md`.182183## When To Load References184185- `references/commands.md`186 Use for exact command syntax, flags, and extended examples.187188- `references/guides.md`189 Use for speed rules, command-choice guidance, architecture notes, and the mandatory CAPTCHA/MFA handoff protocol.190191- `references/permissions.md`192 Use when the user wants to pre-allow browse commands in Claude settings.193194## Guardrails195196- Do not add `disable-model-invocation`; this is a general-purpose browser verification skill.197- Do not add `context: fork`; browser results are usually needed in the current flow.198- Do not add `paths:`; this is a generic workflow skill.199- Do not keep the full CLI manual inline in `SKILL.md`.200- Do not run `browse handoff` without explicit user confirmation.201- Do not save screenshots outside the browse session directories.202203## Runtime Selection204205By default, browse uses Chromium via Playwright. Alternative runtimes:206207| Runtime | Engine | Use case | Install |208|---------|--------|----------|---------|209| `playwright` (default) | Chromium | General browsing, testing | Included |210| `camoufox` | Firefox (anti-detection) | Sites with bot detection | `npm install camoufox-js && npx camoufox-js fetch` |211| `rebrowser` | Chromium (stealth) | Alternative stealth approach | `npm install rebrowser-playwright` |212| `lightpanda` | Lightpanda | Fast headless rendering | See lightpanda.io |213| `chrome` | System Chrome | Use real Chrome with extensions | Chrome must be installed |214215```bash216browse --runtime camoufox --headed goto https://protected-site.com217BROWSE_RUNTIME=camoufox browse goto https://example.com218```219220## New Features221222### Search Macros223```bash224browse goto @google "best coffee beans" # Google search225browse goto @youtube "tutorial" # YouTube search226browse goto @amazon "laptop" # Amazon search227browse goto @reddit "programming" # Reddit search228```229230All macros: @google, @youtube, @amazon, @reddit, @reddit_subreddit, @wikipedia, @twitter, @yelp, @spotify, @netflix, @linkedin, @instagram, @tiktok, @twitch231232### Safety Flags (opt-in features)233| Flag | Default | What it does |234|------|---------|-------------|235| `BROWSE_CONSENT_DISMISS=1` | OFF | Auto-dismiss cookie banners after navigation |236| `BROWSE_CLICK_FORCE=1` or `--force` | OFF | Force-click through overlay interception |237| `BROWSE_READINESS=1` or `--ready` | OFF | Wait for hydration after goto |238| `BROWSE_SERP_FASTPATH=1` or `--serp` | OFF | Google SERP DOM extraction (fast, no refs) |239| `BROWSE_COMMAND_LOCK=0` | ON | Disable per-session command serialization |240| `BROWSE_CAMOUFOX_PROFILE=<name>` | OFF | Use a named camoufox profile (`.browse/camoufox-profiles/<name>.json`) |241242### New Commands243| Command | Description |244|---------|------------|245| `images [sel] [--limit N] [--inline]` | List page images with src/alt/dimensions |246| `youtube-transcript <url> [--lang en]` | Extract YouTube captions via yt-dlp or browser |247| `schema` | Extract JSON-LD, Microdata, RDFa structured data (parsed JSON) |248| `meta` | Extract page meta tags (title, description, canonical, OG, Twitter, hreflang, robots, viewport) |249| `headings` | Extract H1-H6 heading hierarchy with counts and indented tree |250| `profiles` | List available camoufox profiles from `.browse/camoufox-profiles/` |251252### Snapshot Windowing253Large snapshots (>80K chars) are automatically paginated:254```bash255browse snapshot -i # first page256browse snapshot -i --offset 500 # next page (line offset from previous output)257```258259## Output Contract260261Report:2622631. the page or flow tested2642. the session/profile mode used if relevant2653. the key commands or interactions performed2664. the observed result2675. any artifacts or blockers such as screenshots, console errors, network failures, or handoff state