Help us improve
Share bugs, ideas, or general feedback.
From stagehand
Browserbase CLI skill for Browserbase Functions workflows, platform API operations (sessions, projects, contexts, extensions), Fetch API calls, and Search API queries. Activates when users mention `browse` commands or Browserbase platform workflows.
npx claudepluginhub browserbase/skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/stagehand:browserbase-cliThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use the official `browse` CLI for Browserbase platform operations, Functions workflows, and Fetch API calls.
Deploys serverless browser automation as cloud functions using Browserbase and Playwright. Use for scheduling browser tasks, creating webhook endpoints, or running automation in the cloud.
Automates Browserbase Tool operations via Composio's Browserbase Tool toolkit using Rube MCP. Always searches for current tool schemas before executing.
Automates real browser tasks: viewing pages, login-gated sites, UI operations, social media scraping (Xiaohongshu/Weibo/X), JS-rendered pages, bot bypass, form filling, e2e checks via CLI/Python SDK.
Share bugs, ideas, or general feedback.
Use the official browse CLI for Browserbase platform operations, Functions workflows, and Fetch API calls.
Before using the CLI, verify it is installed:
which browse || npm install -g browse
browse --help
For authenticated commands, set the API key:
export BROWSERBASE_API_KEY="your_api_key"
Use this skill when the user wants to:
browsebrowse templatesbrowser skill.fetch skill is often a better fit.browse open, browse get, browse click, …) only when the user explicitly wants the CLI path or is already working in a browse-centric workflow.browse functions for local dev, packaging, publishing, and invocationbrowse cloud sessions, browse cloud projects, browse cloud contexts, browse cloud extensions for Browserbase platform resourcesbrowse cloud fetch <url> for Fetch API requestsbrowse cloud search "<query>" for Search API requestsbrowse templates to browse and scaffold starter templatesbrowse open, browse get, browse click, etc. for direct local/remote browser drivingbrowse skills install to install Browserbase agent skills for Claude CodeFor local browser work, browse open <url> --local starts a clean isolated browser. Use browse open <url> --auto-connect only when you need to attach to an existing debuggable Chrome session.
browse functions init my-function
cd my-function
browse functions dev index.ts
browse functions publish index.ts
browse functions invoke <function_id> --params '{"url":"https://example.com"}'
Use browse functions invoke --check-status <invocation_id> to poll an existing invocation instead of creating a new one.
browse cloud projects list
browse cloud sessions create --proxies --verified --region us-east-1
browse cloud sessions create --solve-captchas --context-id ctx_abc --persist
browse cloud sessions get <session_id>
browse cloud sessions downloads get <session_id> --output session-artifacts.zip
browse cloud contexts create --body '{"region":"us-west-2"}'
browse cloud extensions upload ./my-extension.zip
browse cloud fetch https://example.com
browse cloud fetch https://example.com --allow-redirects --output page.html
browse cloud search "browser automation"
browse cloud search "web scraping" --num-results 5
browse cloud search "AI agents" --output results.json
browse templates list
browse templates list --tag Python --source Browserbase
browse templates clone form-filling --language typescript
browse templates clone amazon-product-scraping --language python ./my-scraper
browse --help and subgroup --help before guessing flags.--output <file> on browse cloud fetch and browse cloud search to save results to a file.--body or --params.browse functions ... and browse cloud ... use --base-url for API base URL overrides.BROWSERBASE_API_KEY or pass --api-key--help and use the exact dash-case formnpm install -g browse and verify with which browseFor command-by-command reference and more examples, see REFERENCE.md.