/install browser-use-1-0-0
Browser Use
Browser Use provides cloud browsers and autonomous browser automation via API.
Docs:
- Open source library: https://docs.browser-use.com
- Cloud API: https://docs.cloud.browser-use.com
Setup
API Key is read from clawdbot config at skills.entries.browser-use.apiKey.
If not configured, tell the user:
To use Browser Use, you need an API key. Get one at https://cloud.browser-use.com (new signups get $10 free credit). Then configure it:
clawdbot config set skills.entries.browser-use.apiKey "bu_your_key_here"
Base URL: https://api.browser-use.com/api/v2
All requests need header: X-Browser-Use-API-Key: \x3CapiKey>
1. Browser Sessions (Primary)
Spin up cloud browsers for Clawdbot to control directly. Use profiles to persist logins and cookies.
Create browser session
# With profile (recommended - keeps you logged in)
curl -X POST "https://api.browser-use.com/api/v2/browsers" \
-H "X-Browser-Use-API-Key: $API_KEY" \
-H "Content-Type: application/json" \
-d '{"profileId": "\x3Cprofile-uuid>", "timeout": 60}'
# Without profile (fresh browser)
curl -X POST "https://api.browser-use.com/api/v2/browsers" \
-H "X-Browser-Use-API-Key: $API_KEY" \
-H "Content-Type: application/json" \
-d '{"timeout": 60}'
Response:
{
"id": "session-uuid",
"cdpUrl": "https://\x3Cid>.cdp2.browser-use.com",
"liveUrl": "https://...",
"status": "active"
}
Connect Clawdbot to the browser
gateway config.patch '{"browser":{"profiles":{"browseruse":{"cdpUrl":"\x3CcdpUrl-from-response>"}}}}'
Now use the browser tool with profile=browseruse to control it.
List/stop browser sessions
# List active sessions
curl "https://api.browser-use.com/api/v2/browsers" -H "X-Browser-Use-API-Key: $API_KEY"
# Get session status
curl "https://api.browser-use.com/api/v2/browsers/\x3Csession-id>" -H "X-Browser-Use-API-Key: $API_KEY"
# Stop session (unused time is refunded)
curl -X PATCH "https://api.browser-use.com/api/v2/browsers/\x3Csession-id>" \
-H "X-Browser-Use-API-Key: $API_KEY" \
-H "Content-Type: application/json" \
-d '{"status": "stopped"}'
Pricing: $0.06/hour (Pay As You Go) or $0.03/hour (Business). Max 4 hours per session. Billed per minute, refunded for unused time.
2. Profiles
Profiles persist cookies and login state across browser sessions. Create one, log into your accounts in the browser, and reuse it.
# List profiles
curl "https://api.browser-use.com/api/v2/profiles" -H "X-Browser-Use-API-Key: $API_KEY"
# Create profile
curl -X POST "https://api.browser-use.com/api/v2/profiles" \
-H "X-Browser-Use-API-Key: $API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "My Profile"}'
# Delete profile
curl -X DELETE "https://api.browser-use.com/api/v2/profiles/\x3Cprofile-id>" \
-H "X-Browser-Use-API-Key: $API_KEY"
Tip: You can also sync cookies from your local Chrome using the Browser Use Chrome extension.
3. Tasks (Subagent)
Run autonomous browser tasks - like a subagent that handles browser interactions for you. Give it a prompt and it completes the task.
Always use browser-use-llm - optimized for browser tasks, 3-5x faster than other models.
curl -X POST "https://api.browser-use.com/api/v2/tasks" \
-H "X-Browser-Use-API-Key: $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"task": "Go to amazon.com and find the price of the MacBook Air M3",
"llm": "browser-use-llm"
}'
Poll for completion
curl "https://api.browser-use.com/api/v2/tasks/\x3Ctask-id>" -H "X-Browser-Use-API-Key: $API_KEY"
Response:
{
"status": "finished",
"output": "The MacBook Air M3 is priced at $1,099",
"isSuccess": true,
"cost": "0.02"
}
Status values: pending, running, finished, failed, stopped
Task options
| Option | Description |
|---|---|
task |
Your prompt (required) |
llm |
Always use browser-use-llm |
startUrl |
Starting page |
maxSteps |
Max actions (default 100) |
sessionId |
Reuse existing session |
profileId |
Use a profile for auth |
flashMode |
Even faster execution |
vision |
Visual understanding |
Full API Reference
See references/api.md for all endpoints including Sessions, Files, Skills, and Skills Marketplace.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install browser-use-1-0-0 - After installation, invoke the skill by name or use
/browser-use-1-0-0 - Provide required inputs per the skill's parameter spec and get structured output
What is Browser Use 1.0.0?
Use Browser Use cloud API to spin up cloud browsers for Clawdbot and run autonomous browser tasks. Primary use is creating browser sessions with profiles (pe... It is an AI Agent Skill for Claude Code / OpenClaw, with 810 downloads so far.
How do I install Browser Use 1.0.0?
Run "/install browser-use-1-0-0" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Browser Use 1.0.0 free?
Yes, Browser Use 1.0.0 is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Browser Use 1.0.0 support?
Browser Use 1.0.0 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Browser Use 1.0.0?
It is built and maintained by Makforce (@makforce); the current version is v1.0.0.