# Browser Use

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

- **Type:** Skill
- **Install:** `agentstack add skill-marchatton-agent-skills-browser-use`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [marchatton](https://agentstack.voostack.com/s/marchatton)
- **Installs:** 0
- **Category:** [Web & Browser](https://agentstack.voostack.com/c/web-and-browser)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [marchatton](https://github.com/marchatton)
- **Source:** https://github.com/marchatton/agent-skills/tree/main/.agents/skills/00-utilities/browser-use
- **Website:** https://www.marchatton.com

## Install

```sh
agentstack add skill-marchatton-agent-skills-browser-use
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## 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
```bash
# 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
```bash
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
```bash
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
```bash
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
```bash
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.

- **Author:** [marchatton](https://github.com/marchatton)
- **Source:** [marchatton/agent-skills](https://github.com/marchatton/agent-skills)
- **License:** MIT
- **Homepage:** https://www.marchatton.com

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

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-marchatton-agent-skills-browser-use
- Seller: https://agentstack.voostack.com/s/marchatton
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
