Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

browser-automation浏览器自动化

Agent Skill

browser-automation 用于处理浏览器自动化、网页检查和页面信息提取,适合在 Codex、Claude、Cursor、Gemini CLI 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

27,886

周安装

752

GitHub Stars

公开资料未说明

下载量

8,622
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:browser-automation(浏览器自动化)
来源仓库:https://github.com/browserbase/agent-browse
仓库路径:skills/browser-automation
安装命令:
npx skills add browserbase/agent-browse --skill "browser-automation"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add browserbase/agent-browse --skill "browser-automation"

简介

browser-automation 实现基于 Browserbase 的无头浏览器自动化。

  • 适用于 Codex、Claude 等平台中需要稳定浏览器环境的抓取任务。
  • 支持页面导航、表单填写与内容提取等操作。
  • 需配置 Browserbase API 密钥以启用远程浏览器服务。
  • 按使用量计费,注意控制请求频率以降低成本。

SKILL.md

Browser Automation

Automate browser interactions using Stagehand CLI with Claude. This skill provides natural language control over a Chrome browser through command-line tools for navigation, interaction, data extraction, and screenshots.

Overview

This skill uses a CLI-based approach where Claude Code calls browser automation commands via bash. The browser stays open between commands for faster sequential operations and preserves browser state (cookies, sessions, etc.).

Setup Verification

IMPORTANT: Before using any browser commands, you MUST check setup.json in this directory.

First-Time Setup Check

  1. Read setup.json (located in .claude/skills/browser-automation/setup.json)
  2. Check setupComplete field:

- If true: All prerequisites are met, proceed with browser commands - If false: Setup required - follow the steps below

If Setup is Required (setupComplete: false)

Run these commands in the plugin directory:

# 1. Install dependencies and build (REQUIRED)
# This automatically builds TypeScript
npm install
# or: pnpm install
# or: bun install

# 2. Link the browser command globally (REQUIRED)
npm link

# 3. Configure API key (REQUIRED)
# Option 1 (RECOMMENDED): Export in your terminal
export ANTHROPIC_API_KEY="your-api-key-here"

# Option 2: Or use .env file
cp .env.example .env
# Then edit .env and add: ANTHROPIC_API_KEY="your-api-key-here"

# 4. Verify Chrome is installed
# Chrome should be at standard location for your OS

# 5. Test the installation
browser navigate https://example.com

# 6. If test succeeds, update setup.json
# Set all "installed"/"configured" fields to true
# Set "setupComplete" to true

Prerequisites Summary

  • ✅ Google Chrome installed on your system
  • ✅ Node.js dependencies installed and TypeScript built (npm install runs build automatically)
  • ✅ Browser command globally available (npm link creates the global symlink)
  • ✅ Anthropic API key configured (exported as ANTHROPIC_API_KEY environment variable or in .env file)

DO NOT attempt to use browser commands if setupComplete: false in setup.json. Guide the user through setup first.

Available Commands

Navigate to URLs

browser navigate <url>

When to use: Opening any website, loading a specific URL, going to a web page.

Example usage:

  • browser navigate https://example.com
  • browser navigate https://news.ycombinator.com

Output: JSON with success status, message, and screenshot path

Interact with Pages

browser act "<action>"

When to use: Clicking buttons, filling forms, scrolling, selecting options, typing text.

Example usage:

  • browser act "click the Sign In button"
  • browser act "fill in the email field with test@example.com"
  • browser act "scroll down to the footer"
  • browser act "type 'laptop' in the search box and press enter"

Important: Be as specific as possible - details make a world of difference. When filling fields, you don't need to combine 'click and type'; the tool will perform a fill similar to Playwright's fill function.

Output: JSON with success status, message, and screenshot path

Extract Data

browser extract "<instruction>" ['{"field": "type"}']

When to use: Scraping data, getting specific information, collecting structured content.

Schema format (optional): JSON object where keys are field names and values are types:

  • "string" for text
  • "number" for numeric values
  • "boolean" for true/false values

Note: The schema parameter is optional. If omitted or if schema validation fails, extraction will proceed without type validation.

Example usage:

  • browser extract "get the product title and price" '{"title": "string", "price": "number"}'
  • browser extract "get all article headlines" '{"headlines": "string"}'
  • browser extract "get the page title" (no schema)

Output: JSON with success status, extracted data, and screenshot path

Discover Elements

browser observe "<query>"

When to use: Understanding page structure, finding what's clickable, discovering form fields.

Example usage:

  • browser observe "find all clickable buttons"
  • browser observe "find all form fields"
  • browser observe "find all navigation links"

Output: JSON with success status, discovered elements, and screenshot path

Take Screenshots

browser screenshot

When to use: Visual verification, documenting page state, debugging, creating records.

Notes:

  • Screenshots are saved to the plugin directory's agent/browser_screenshots/ folder
  • Images larger than 2000x2000 pixels are automatically resized
  • Filename includes timestamp for uniqueness

Output: JSON with success status and screenshot path

Clean Up

browser close

When to use: After completing all browser interactions, to free up resources.

Output: JSON with success status and message

Browser Behavior

Persistent Browser: The browser stays open between commands for faster sequential operations and to preserve browser state (cookies, sessions, etc.).

Reuse Existing: If Chrome is already running on port 9222, it will reuse that instance.

Minimized Launch: Chrome opens off-screen (position -9999,-9999) to avoid disrupting workflow.

Safe Cleanup: The browser only closes when you explicitly call the close command.

Best Practices

  1. Always navigate first: Before interacting with a page, navigate to the URL
  2. 📸 Always view screenshots: After each command (navigate, act, extract, observe), use the Read tool to view the screenshot and verify the command worked correctly
  3. Use natural language: Describe actions as you would instruct a human
  4. Extract with clear schemas: Define field names and types explicitly in JSON
  5. Handle errors gracefully: Check the success field in JSON output; if an action fails, view the screenshot and try using observe to understand the page better
  6. Close when done: Always clean up browser resources after completing tasks
  7. Be specific: Use precise selectors in natural language ("the blue Submit button" vs "the button")
  8. Chain commands: Run multiple commands sequentially without reopening the browser

Common Patterns

Simple browsing task

browser navigate https://example.com
browser act "click the login button"
browser screenshot
browser close

Data extraction task

browser navigate https://example.com/products
browser act "wait for page to load"
browser extract "get all products" '{"name": "string", "price": "number"}'
# Or without schema:
# browser extract "get the page content"
browser close

Multi-step interaction

browser navigate https://example.com/login
browser act "fill in email with user@example.com"
browser act "fill in password with mypassword"
browser act "click the submit button"
browser screenshot
browser close

Debugging workflow

browser navigate https://example.com
browser screenshot
browser observe "find all buttons"
browser act "click the specific button"
browser screenshot
browser close

Troubleshooting

Page not loading: Wait a few seconds after navigation before acting. You can explicitly: browser act "wait for the page to fully load"

Element not found: Use observe to discover what elements are actually available on the page

Action fails: Be more specific in natural language description. Instead of "click the button", try "click the blue Submit button in the form"

Screenshots missing: Check the plugin directory's agent/browser_screenshots/ folder for saved files

Chrome not found: Install Google Chrome or the CLI will show an error with installation instructions

Port 9222 in use: Another Chrome debugging session is running. Close it or wait for timeout

For detailed examples, see EXAMPLES.md. For API reference and technical details, see REFERENCE.md.

Dependencies

To use this skill, install these dependencies only if they aren't already present:

npm install
# or
pnpm install
# or
bun install

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.21%
按下载量换算2,432

Cursor

25.32%
按下载量换算2,183

OpenCode

20.01%
按下载量换算1,725

Gemini CLI

11.78%
按下载量换算1,016

Codex

7.98%
按下载量换算688

Antigravity

3.44%
按下载量换算297

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills