Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

browserwing-executorbrowserwing 执行器

Agent Skill

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

总安装

2,352

周安装

99

GitHub Stars

8,783

下载量

824
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/memtensor/memos --skill browserwing-executor

简介

browserwing-executor 用于处理浏览器自动化、网页检查和页面信息提取,适合在 Codex、Claude、Cursor、Gemini CLI 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。

  • 适用于网页内容抓取、前端流程测试和页面结构分析等研究检索任务。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

BrowserWing Executor API

Overview

BrowserWing Executor provides comprehensive browser automation capabilities through HTTP APIs. You can control browser navigation, interact with page elements, extract data, and analyze page structure.

API Base URL: http://localhost:8080/api/v1/executor

Authentication: Use X-BrowserWing-Key: <api-key> header or Authorization: Bearer <token>

Core Capabilities

  • Page Navigation: Navigate to URLs, go back/forward, reload
  • Element Interaction: Click, type, select, hover on page elements
  • Data Extraction: Extract text, attributes, values from elements
  • Accessibility Analysis: Get accessibility snapshot to understand page structure
  • Advanced Operations: Screenshot, JavaScript execution, keyboard input
  • Batch Processing: Execute multiple operations in sequence

API Endpoints

1. Discover Available Commands

IMPORTANT: Always call this endpoint first to see all available commands and their parameters.

curl -X GET 'http://localhost:8080/api/v1/executor/help'

Response: Returns complete list of all commands with parameters, examples, and usage guidelines.

Query specific command:

curl -X GET 'http://localhost:8080/api/v1/executor/help?command=extract'

2. Get Accessibility Snapshot

CRITICAL: Always call this after navigation to understand page structure and get element RefIDs.

curl -X GET 'http://localhost:8080/api/v1/executor/snapshot'

Response Example:

{
  "success": true,
  "snapshot_text": "Clickable Elements:\n  @e1 Login (role: button)\n  @e2 Sign Up (role: link)\n\nInput Elements:\n  @e3 Email (role: textbox) [placeholder: your@email.com]\n  @e4 Password (role: textbox)"
}

Use Cases:

  • Understand what interactive elements are on the page
  • Get element RefIDs (@e1, @e2, etc.) for precise identification
  • See element labels, roles, and attributes
  • The accessibility tree is cleaner than raw DOM and better for LLMs
  • RefIDs are stable references that work reliably across page changes

3. Common Operations

Navigate to URL

curl -X POST 'http://localhost:8080/api/v1/executor/navigate' \
  -H 'Content-Type: application/json' \
  -d '{"url": "https://example.com"}'

Click Element

curl -X POST 'http://localhost:8080/api/v1/executor/click' \
  -H 'Content-Type: application/json' \
  -d '{"identifier": "@e1"}'

Identifier formats:

  • RefID (Recommended): @e1, @e2 (from snapshot)
  • CSS Selector: #button-id, .class-name
  • XPath: //button[@type='submit']
  • Text: Login (text content)

Type Text

curl -X POST 'http://localhost:8080/api/v1/executor/type' \
  -H 'Content-Type: application/json' \
  -d '{"identifier": "@e3", "text": "user@example.com"}'

Extract Data

curl -X POST 'http://localhost:8080/api/v1/executor/extract' \
  -H 'Content-Type: application/json' \
  -d '{
    "selector": ".product-item",
    "fields": ["text", "href"],
    "multiple": true
  }'

Wait for Element

curl -X POST 'http://localhost:8080/api/v1/executor/wait' \
  -H 'Content-Type: application/json' \
  -d '{"identifier": ".loading", "state": "hidden", "timeout": 10}'

Batch Operations

curl -X POST 'http://localhost:8080/api/v1/executor/batch' \
  -H 'Content-Type: application/json' \
  -d '{
    "operations": [
      {"type": "navigate", "params": {"url": "https://example.com"}, "stop_on_error": true},
      {"type": "click", "params": {"identifier": "@e1"}, "stop_on_error": true},
      {"type": "type", "params": {"identifier": "@e3", "text": "query"}, "stop_on_error": true}
    ]
  }'

Instructions

Step-by-step workflow:

  1. Discover commands: Call GET /help to see all available operations and their parameters (do this first if unsure).
  2. Navigate: Use POST /navigate to open the target webpage.
  3. Analyze page: Call GET /snapshot to understand page structure and get element RefIDs.
  4. Interact: Use element RefIDs (like @e1, @e2) or CSS selectors to:

- Click elements: POST /click - Input text: POST /type - Select options: POST /select - Wait for elements: POST /wait

  1. Extract data: Use POST /extract to get information from the page.
  2. Present results: Format and show extracted data to the user.

Complete Example

User Request: "Search for 'laptop' on example.com and get the first 5 results"

Your Actions:

  1. Navigate to search page:
curl -X POST 'http://localhost:8080/api/v1/executor/navigate' \
  -H 'Content-Type: application/json' \
  -d '{"url": "https://example.com/search"}'
  1. Get page structure to find search input:
curl -X GET 'http://localhost:8080/api/v1/executor/snapshot'

Response shows: @e3 Search (role: textbox) [placeholder: Search...]

  1. Type search query:
curl -X POST 'http://localhost:8080/api/v1/executor/type' \
  -H 'Content-Type: application/json' \
  -d '{"identifier": "@e3", "text": "laptop"}'
  1. Press Enter to submit:
curl -X POST 'http://localhost:8080/api/v1/executor/press-key' \
  -H 'Content-Type: application/json' \
  -d '{"key": "Enter"}'
  1. Wait for results to load:
curl -X POST 'http://localhost:8080/api/v1/executor/wait' \
  -H 'Content-Type: application/json' \
  -d '{"identifier": ".search-results", "state": "visible", "timeout": 10}'
  1. Extract search results:
curl -X POST 'http://localhost:8080/api/v1/executor/extract' \
  -H 'Content-Type: application/json' \
  -d '{
    "selector": ".result-item",
    "fields": ["text", "href"],
    "multiple": true
  }'
  1. Present the extracted data:
Found 15 results for 'laptop':
1. Gaming Laptop - $1299 (https://...)
2. Business Laptop - $899 (https://...)
...

Key Commands Reference

Navigation

  • POST /navigate - Navigate to URL
  • POST /go-back - Go back in history
  • POST /go-forward - Go forward in history
  • POST /reload - Reload current page

Element Interaction

  • POST /click - Click element (supports: RefID @e1, CSS selector, XPath, text content)
  • POST /type - Type text into input (supports: RefID @e3, CSS selector, XPath)
  • POST /select - Select dropdown option
  • POST /hover - Hover over element
  • POST /wait - Wait for element state (visible, hidden, enabled)
  • POST /press-key - Press keyboard key (Enter, Tab, Ctrl+S, etc.)

Data Extraction

  • POST /extract - Extract data from elements (supports multiple elements, custom fields)
  • POST /get-text - Get element text content
  • POST /get-value - Get input element value
  • GET /page-info - Get page URL and title
  • GET /page-text - Get all page text
  • GET /page-content - Get full HTML

Page Analysis

  • GET /snapshot - Get accessibility snapshot (⭐ ALWAYS call after navigation)
  • GET /clickable-elements - Get all clickable elements
  • GET /input-elements - Get all input elements

Advanced

  • POST /screenshot - Take page screenshot (base64 encoded)
  • POST /evaluate - Execute JavaScript code
  • POST /batch - Execute multiple operations in sequence
  • POST /scroll-to-bottom - Scroll to page bottom
  • POST /resize - Resize browser window
  • POST /tabs - Manage browser tabs (list, new, switch, close)
  • POST /fill-form - Intelligently fill multiple form fields at once

Debug & Monitoring

  • GET /console-messages - Get browser console messages (logs, warnings, errors)
  • GET /network-requests - Get network requests made by the page
  • POST /handle-dialog - Configure JavaScript dialog (alert, confirm, prompt) handling
  • POST /file-upload - Upload files to input elements
  • POST /drag - Drag and drop elements
  • POST /close-page - Close the current page/tab

Element Identification

You can identify elements using:

  1. RefID (Recommended): @e1, @e2, @e3

- Most reliable method - stable across page changes - Get RefIDs from /snapshot endpoint - Valid for 5 minutes after snapshot - Example: "identifier": "@e1" - Works with multi-strategy fallback for robustness

  1. CSS Selector: #id, .class, button[type="submit"]

- Standard CSS selectors - Example: "identifier": "#login-button"

  1. XPath: //button[@id='login'], //a[contains(text(), 'Submit')]

- XPath expressions for complex queries - Example: "identifier": "//button[@id='login']"

  1. Text Content: Login, Sign Up, Submit

- Searches buttons and links with matching text - Example: "identifier": "Login"

  1. ARIA Label: Elements with aria-label attribute

- Automatically searched

Guidelines

Before starting:

  • Call GET /help if you're unsure about available commands or their parameters
  • Ensure browser is started (if not, it will auto-start on first operation)

During automation:

  • Always call /snapshot after navigation to get page structure and RefIDs
  • Prefer RefIDs (like @e1) over CSS selectors for reliability and stability
  • Re-snapshot after page changes to get updated RefIDs
  • Use /wait for dynamic content that loads asynchronously
  • Check element states before interaction (visible, enabled)
  • Use /batch for multiple sequential operations to improve efficiency

Error handling:

  • If operation fails, check element identifier and try different format
  • For timeout errors, increase timeout value
  • If element not found, call /snapshot again to refresh page structure
  • Explain errors clearly to user with suggested solutions

Data extraction:

  • Use fields parameter to specify what to extract: ["text", "href", "src"]
  • Set multiple: true to extract from multiple elements
  • Format extracted data in a readable way for user

Complete Workflow Example

Scenario: User wants to login to a website

User: "Please log in to example.com with username 'john' and password 'secret123'"

Your Actions:

Step 1: Navigate to login page

POST http://localhost:8080/api/v1/executor/navigate
{"url": "https://example.com/login"}

Step 2: Get page structure

GET http://localhost:8080/api/v1/executor/snapshot

Response:

Clickable Elements:
  @e1 Login (role: button)

Input Elements:
  @e2 Username (role: textbox)
  @e3 Password (role: textbox)

Step 3: Enter username

POST http://localhost:8080/api/v1/executor/type
{"identifier": "@e2", "text": "john"}

Step 4: Enter password

POST http://localhost:8080/api/v1/executor/type
{"identifier": "@e3", "text": "secret123"}

Step 5: Click login button

POST http://localhost:8080/api/v1/executor/click
{"identifier": "@e1"}

Step 6: Wait for login success (optional)

POST http://localhost:8080/api/v1/executor/wait
{"identifier": ".welcome-message", "state": "visible", "timeout": 10}

Step 7: Inform user

"Successfully logged in to example.com!"

Batch Operation Example

Scenario: Fill out a form with multiple fields

Instead of making 5 separate API calls, use one batch operation:

curl -X POST 'http://localhost:8080/api/v1/executor/batch' \
  -H 'Content-Type: application/json' \
  -d '{
    "operations": [
      {
        "type": "navigate",
        "params": {"url": "https://example.com/form"},
        "stop_on_error": true
      },
      {
        "type": "type",
        "params": {"identifier": "#name", "text": "John Doe"},
        "stop_on_error": true
      },
      {
        "type": "type",
        "params": {"identifier": "#email", "text": "john@example.com"},
        "stop_on_error": true
      },
      {
        "type": "select",
        "params": {"identifier": "#country", "value": "United States"},
        "stop_on_error": true
      },
      {
        "type": "click",
        "params": {"identifier": "#submit"},
        "stop_on_error": true
      }
    ]
  }'

Best Practices

  1. Discovery first: If unsure, call /help or /help?command=<name> to learn about commands
  2. Structure first: Always call /snapshot after navigation to understand the page
  3. Use accessibility indices: They're more reliable than CSS selectors (elements might have dynamic classes)
  4. Wait for dynamic content: Use /wait before interacting with elements that load asynchronously
  5. Batch when possible: Use /batch for multiple sequential operations
  6. Handle errors gracefully: Provide clear explanations and suggestions when operations fail
  7. Verify results: After operations, check if desired outcome was achieved

Common Scenarios

Form Filling

  1. Navigate to form page
  2. Get accessibility snapshot to find input elements and their RefIDs
  3. Use /type for each field: @e1, @e2, etc.
  4. Use /select for dropdowns
  5. Click submit button using its RefID

Data Scraping

  1. Navigate to target page
  2. Wait for content to load with /wait
  3. Use /extract with CSS selector and multiple: true
  4. Specify fields to extract: ["text", "href", "src"]

Search Operations

  1. Navigate to search page
  2. Get accessibility snapshot to locate search input
  3. Type search query into input
  4. Press Enter or click search button
  5. Wait for results
  6. Extract results data

Login Automation

  1. Navigate to login page
  2. Get accessibility snapshot to find RefIDs
  3. Type username: @e2
  4. Type password: @e3
  5. Click login button: @e1
  6. Wait for success indicator

Important Notes

  • Browser must be running (it will auto-start on first operation if needed)
  • Operations are executed on the currently active browser tab
  • Accessibility snapshot updates after each navigation and click operation
  • All timeouts are in seconds
  • Use wait_visible: true (default) for reliable element interaction
  • Replace localhost:8080 with actual API host address
  • Authentication required: use X-BrowserWing-Key header or JWT token

Troubleshooting

Element not found:

  • Call /snapshot to see available elements
  • Try different identifier format (accessibility index, CSS selector, text)
  • Check if page has finished loading

Timeout errors:

  • Increase timeout value in request
  • Check if element actually appears on page
  • Use /wait with appropriate state before interaction

Extraction returns empty:

  • Verify CSS selector matches target elements
  • Check if content has loaded (use /wait first)
  • Try different extraction fields or type

Quick Reference

# Discover commands
GET localhost:8080/api/v1/executor/help

# Navigate
POST localhost:8080/api/v1/executor/navigate {"url": "..."}

# Get page structure
GET localhost:8080/api/v1/executor/snapshot

# Click element
POST localhost:8080/api/v1/executor/click {"identifier": "@e1"}

# Type text
POST localhost:8080/api/v1/executor/type {"identifier": "@e3", "text": "..."}

# Extract data
POST localhost:8080/api/v1/executor/extract {"selector": "...", "fields": [...], "multiple": true}

Response Format

All operations return:

{
  "success": true,
  "message": "Operation description",
  "timestamp": "2026-01-15T10:30:00Z",
  "data": {
    // Operation-specific data
  }
}

Error response:

{
  "error": "error.operationFailed",
  "detail": "Detailed error message"
}

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

34.67%
按下载量换算286

Claude

34.57%
按下载量换算285

Cursor

18.56%
按下载量换算153

Gemini CLI

8.87%
按下载量换算73

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills