AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Browser Use

skill-marchatton-agent-skills-browser-use · by marchatton

Fast, persistent browser automation via `browser-use` CLI (sessions persist across commands). Use for multi-step web workflows (open -> state -> click/input -> verify -> repeat). Supports chromium/headed, real Chrome (logged-in), and remote browser.

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-marchatton-agent-skills-browser-use

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-marchatton-agent-skills-browser-use)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Browser Use? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 state before acting; indices change after navigation.
  • After each navigation/submit: re-run state (don’t reuse stale indices).
  • Prefer --headed while debugging.
  • Cleanup: browser-use close (or close --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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.