Install
$ agentstack add skill-marchatton-agent-skills-browser-use ✓ 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
browser-use
Purpose
- Persistent browser session across commands.
- Element index workflow:
state-> act by index.
When
- Need quick multi-step browser automation without writing Playwright.
- Need reuse logged-in Chrome session (real browser mode).
- Need parallel sessions (
--session).
Install
# one-off
uvx "browser-use[cli]" open https://example.com
# permanent
uv pip install "browser-use[cli]"
browser-use install # downloads Chromium/deps
Core Loop
browser-use open https://example.com
browser-use state # list elements w/ indices
browser-use click 5
browser-use input 3 "hello"
browser-use screenshot
browser-use state # verify + get next indices
browser-use close
Modes
browser-use --browser chromium open # default (headless)
browser-use --browser chromium --headed open # visible window
browser-use --browser real open # your Chrome (cookies/login)
browser-use --browser remote open # cloud browser (API key)
Common Commands
browser-use open
browser-use state [--json]
browser-use click | dblclick | rightclick | hover
browser-use input "text" | type "text"
browser-use scroll up|down [n]
browser-use screenshot
browser-use get # read page/element info
browser-use back | switch | close-tab
browser-use cookies export | cookies import
browser-use profile list|create|update|delete
browser-use sessions
browser-use server status|logs|stop
browser-use close [--all]
Sessions
browser-use --session work open https://work.example.com
browser-use --session personal open https://personal.example.com
browser-use --session work state
browser-use close --all
Rules (agent-friendly)
- Always run
browser-use statebefore acting; indices change after navigation. - After each navigation/submit: re-run
state(don’t reuse stale indices). - Prefer
--headedwhile debugging. - Cleanup:
browser-use close(orclose --all) when done.
Remote Mode
- Env:
BROWSER_USE_API_KEY(or--api-key).
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: marchatton
- Source: marchatton/agent-skills
- License: MIT
- Homepage: https://www.marchatton.com
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.