Skill · em Automatizar e estender

browser-use

Direct browser control via CDP for web interaction: automation, scraping, testing, screenshots, and site/app work.

Procedência

Antes de instalar

1 arquivo · 10,3 KB · só texto, nenhum script

Instalar na sua CLI

O comando baixa a versão fixada (commit d8110c5) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.

Claude Code

Neste projeto: instala em .claude/skills/browser-use/.

d=".claude/skills/browser-use"
u="https://raw.githubusercontent.com/browser-use/browser-use/d8110c5ff87ccba887aaa726cdb780f2f84bef8d/skills/browser-use"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE" "https://raw.githubusercontent.com/browser-use/browser-use/d8110c5ff87ccba887aaa726cdb780f2f84bef8d/LICENSE"

Global: instala em ~/.claude/skills/browser-use/.

d="$HOME/.claude/skills/browser-use"
u="https://raw.githubusercontent.com/browser-use/browser-use/d8110c5ff87ccba887aaa726cdb780f2f84bef8d/skills/browser-use"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE" "https://raw.githubusercontent.com/browser-use/browser-use/d8110c5ff87ccba887aaa726cdb780f2f84bef8d/LICENSE"

Codex

Neste projeto: instala em .agents/skills/browser-use/.

d=".agents/skills/browser-use"
u="https://raw.githubusercontent.com/browser-use/browser-use/d8110c5ff87ccba887aaa726cdb780f2f84bef8d/skills/browser-use"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE" "https://raw.githubusercontent.com/browser-use/browser-use/d8110c5ff87ccba887aaa726cdb780f2f84bef8d/LICENSE"

Global: instala em ~/.agents/skills/browser-use/.

d="$HOME/.agents/skills/browser-use"
u="https://raw.githubusercontent.com/browser-use/browser-use/d8110c5ff87ccba887aaa726cdb780f2f84bef8d/skills/browser-use"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE" "https://raw.githubusercontent.com/browser-use/browser-use/d8110c5ff87ccba887aaa726cdb780f2f84bef8d/LICENSE"

Antigravity

Neste projeto: instala em .agents/skills/browser-use/.

d=".agents/skills/browser-use"
u="https://raw.githubusercontent.com/browser-use/browser-use/d8110c5ff87ccba887aaa726cdb780f2f84bef8d/skills/browser-use"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE" "https://raw.githubusercontent.com/browser-use/browser-use/d8110c5ff87ccba887aaa726cdb780f2f84bef8d/LICENSE"

Global: instala em ~/.gemini/antigravity-cli/skills/browser-use/.

d="$HOME/.gemini/antigravity-cli/skills/browser-use"
u="https://raw.githubusercontent.com/browser-use/browser-use/d8110c5ff87ccba887aaa726cdb780f2f84bef8d/skills/browser-use"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md" \
  -o "$d/LICENSE" "https://raw.githubusercontent.com/browser-use/browser-use/d8110c5ff87ccba887aaa726cdb780f2f84bef8d/LICENSE"

Peça ao Rook

Já usa o Rook Labs? Cole no chat do Rook: instale a skill https://rooklabs.sh/marketplace/browser-use.browser-use.browser-use

Prévia do SKILL.md

---
name: browser-use
description: "Direct browser control via CDP for web interaction: automation, scraping, testing, screenshots, and site/app work."
homepage: https://browser-use.com
metadata:
  {
    "openclaw":
      {
        "requires": { "bins": ["browser-use"] },
        "install":
          [
            {
              "id": "uv",
              "kind": "uv",
              "package": "browser-use",
              "bins": ["browser-use"],
              "label": "Install Browser Use CLI (uv)",
            },
          ],
      },
  }
---

# Browser Use

Direct browser control via CDP. For task-specific edits, use `agent-workspace/agent_helpers.py`. For setup, install, or connection problems, read https://github.com/browser-use/browser-harness/blob/main/install.md.

## When Not to Use

A basic fetch of public information needs no browser. If a plain HTTP request can read it — a public page, an API, docs — use `curl` or your fetch tool, and leave the browser alone. Use browser-use when the task needs interaction (click, type, navigate), the user's logged-in session, JS rendering, or a bot-protected pa…

Domain skills are off by default. Set `BH_DOMAIN_SKILLS=1` to enable them; see the bottom section.

**If `BH_DOMAIN_SKILLS=1` and the task is site-specific, read every file in the matching `$BH_AGENT_WORKSPACE/domain-skills/<site>/` directory before inventing an approach.**

## Usage

```bash
browser-use <<'PY'
print(page_info())
…

Ver todo o marketplace