Install
$ agentstack add skill-barkleesanders-claude-code-starter-browse ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Browse CLI
Use browse as the primary Browserbase command-line interface.
It can:
- drive a local or Browserbase-hosted browser session
- inspect pages through accessibility snapshots, screenshots, DOM/text reads, and network capture
- interact with pages by refs, selectors, XPath, keyboard, mouse, files, and viewport controls
- manage Browserbase projects, sessions, contexts, extensions, fetch, and search APIs
- develop, publish, and invoke Browserbase Functions
- browse and scaffold Browserbase templates
- diagnose local or remote browser setup issues
- discover and install Browse.sh catalog skills
- install or refresh this Browse CLI skill
Setup Check
Verify the CLI exists before relying on it:
which browse || npm install -g browse
browse --help
Install or refresh this skill with:
browse skills install
Use browse --help for exact flags before running unfamiliar commands.
Browser Target Selection
Browser driver commands auto-start the browse daemon when needed. Choose the browser target per command with flags:
browse open https://example.com --local
browse open https://example.com --local --headed
browse open https://example.com --remote
browse open https://example.com --auto-connect
browse open https://example.com --cdp 9222
browse open https://example.com --cdp ws://127.0.0.1:9222/devtools/browser/
Use local mode for development, localhost, trusted sites, and fast iteration. Use --auto-connect only when the user explicitly wants to attach to an already-running debuggable Chrome session with existing cookies or login state; use --local when no debuggable Chrome is available. Use remote mode when Browserbase credentials are available and the site needs hosted browser infrastructure, Verified browser mode, CAPTCHA solving, proxies, or session persistence.
Remote browser and cloud API commands require:
export BROWSERBASE_API_KEY=...
Browser Automation Workflow
Start by opening the page, then inspect state, act, and verify.
browse open https://example.com --local
browse snapshot
browse click @0-5
browse type "hello"
browse snapshot
browse stop
Prefer browse snapshot over screenshots for most browser work. It is structured, fast, and returns refs like @0-5 for reliable element interaction. Use screenshots when visual layout, images, or pixel-level state matter.
Core Browser Commands
Navigation:
browse open
browse reload
browse back
browse forward
browse wait load
browse wait selector "#result"
Page state:
browse snapshot
browse snapshot --compact
browse refs
browse get url
browse get title
browse get text body
browse get html "#main"
browse get value "#email"
browse screenshot # print base64 JSON
browse screenshot --path page.png
Interaction:
browse click @0-5
browse fill @0-8 "search query"
browse type "text for the focused element"
browse press Enter
browse select "select[name=country]" "United States"
browse upload @0-12 ./file.pdf
browse highlight @0-5
browse is visible "#modal"
Mouse and viewport:
browse mouse click 240 320
browse mouse hover 240 320
browse mouse drag 80 80 310 100
browse mouse scroll 500 300 0 600
browse viewport 1280 720
Tabs, network, and CDP:
browse tab list
browse tab new https://example.com
browse tab switch
browse tab close # refuses to close the last tab
browse network on
browse network path
browse network clear
browse cdp 9222 --pretty
Session management:
browse doctor
browse doctor --json
browse status
browse stop
browse stop --force
Use browse doctor before debugging a broken browser session. Use browse doctor --json when another agent or CI needs structured diagnostics.
Cloud APIs
Use browse cloud for Browserbase platform APIs:
browse cloud projects list
browse cloud projects get
browse cloud projects usage
browse cloud sessions create
browse cloud sessions create --proxies --verified
browse cloud sessions list
browse cloud sessions get
browse cloud sessions update
browse cloud sessions debug
browse cloud sessions logs
browse cloud sessions downloads get
browse cloud sessions uploads create ./file.pdf
browse cloud contexts create
browse cloud contexts get
browse cloud contexts update
browse cloud contexts delete
browse cloud extensions upload ./extension.zip
browse cloud extensions get
browse cloud extensions delete
browse cloud fetch https://example.com
browse cloud search "browser automation"
For remote sessions with context persistence:
browse cloud sessions create --context-id --persist
Use --verified when the task needs Browserbase Verified browser mode.
Use browse cloud fetch when the user needs a simple HTTP fetch without browser interaction. Use browse cloud search when the user asks for web search results.
Browserbase Functions
Use browse functions to create, develop, publish, and invoke Browserbase Functions:
browse functions init my-function
browse functions dev index.ts
browse functions publish index.ts
browse functions publish index.ts --dry-run
browse functions invoke --params '{"url":"https://example.com"}'
browse functions invoke --check-status
Functions commands use BROWSERBASE_API_KEY. Generated projects import defineFn from @browserbasehq/sdk-functions.
Templates
Use browse templates to discover and scaffold Browserbase starter templates:
browse templates list
browse templates list --tag Python --source Browserbase
browse templates find google-trends-keywords
browse templates find amazon --json
browse templates clone google-trends-keywords
browse templates clone amazon-product-scraping --language python ./my-scraper
browse templates clone dynamic-form-filling ./form-bot --language typescript
Use browse templates find before cloning when the exact slug is uncertain. Use --language typescript or --language python to choose the generated project runtime when a template supports both.
Skills
Install or refresh this bundled CLI skill:
browse skills install
Discover and install site-specific Browse.sh skills:
browse skills list
browse skills list --json
browse skills find reviews
browse skills find yelp.com/extract-reviews
browse skills find "restaurant reviews" --json
browse skills add yelp.com/extract-reviews
Use browse skills find when the exact skill slug is uncertain. Use browse skills add / only after choosing an exact slug from list or find.
Best Practices
- Run the real command and inspect its output instead of guessing.
- Use
browse snapshotbefore interacting so you have current refs. - Re-run
browse snapshotafter navigation or DOM-changing actions because refs can change. - Prefer refs from snapshots for clicks and uploads; use selectors or XPath when refs are unavailable.
- Use
--localfor localhost and repeatable development; use--remotefor protected sites or Browserbase-specific behavior. - Use
--auto-connectonly when attaching to an existing debuggable local Chrome session is intended. - Use
browse doctorwhen session startup, browser discovery, CDP attach, or Browserbase auth looks wrong. - Use
browse stopwhen finished to clean up daemon state. - For unfamiliar command details, run
browse --helpand follow the exact dash-case flags.
Troubleshooting
- "No active page": run
browse status, thenbrowse openorbrowse stop --forceif the daemon is stale. - Chrome not found: use
--remotewith Browserbase credentials, install Chrome, or attach with--cdp. - Action fails: run
browse snapshotand use a visible ref from the current page state. - Remote command fails: verify
BROWSERBASE_API_KEYand inspectbrowse cloud projects list. - Session setup is unclear: run
browse doctororbrowse doctor --json. - Protected site blocks local mode: retry with
--remote.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: barkleesanders
- Source: barkleesanders/claude-code-starter
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.