Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

autoclaw-browser自动爪浏览器

Agent Skill

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

总安装

35,892

周安装

1,438

GitHub Stars

公开资料未说明

下载量

11,619
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install autoclaw-browser

简介

完整浏览器自动化技能,支持 MCP 协议与 Chrome 扩展交互。

  • 适用于 OpenClaw 中需要模拟用户操作、抓取页面或验证前端逻辑的场景。
  • 可控制真实浏览器实例完成登录、表单填写等复杂流程。
  • 需安装 Chrome 驱动并开放本地端口,注意隐私与反爬机制影响。
  • 建议阅读 README 了解沙箱配置与安全最佳实践。

SKILL.md

AutoClaw Browser Automation Skill

Skill Overview

AutoClaw is a browser automation skill that provides comprehensive control over Chrome browser through MCP (Message Communication Protocol) communication with the browser extension.

Prerequisites

Before starting MCP service, ensure the following files exist in the correct directory:

  • options.js - Browser extension options page script
  • background.js - Extension background script handling WebSocket connections

File Location

%USERPROFILE%\.openclaw\skills\claw-browser\autoclaw-plugin\

🚀 v6.0.0 New Optimization Tools

Simplified DOM Retrieval

ToolDescriptionParameters
claw_get_indexed_elementsGet page simplified DOM (indexed interactive elements), data reduced by 90%+[useCache: boolean]

Index Click

ToolDescriptionParameters
claw_click_by_indexClick element by index, more stable than CSS selectorindex: number

Batch Operations

ToolDescriptionParameters
claw_batch_executeBatch execute multiple CDP commands, reduce network round tripscommands: array

Smart Wait

ToolDescriptionParameters
claw_smart_waitSmart wait: support wait for element/text/URLelement/text/urlPattern, timeout

Available Tools

⌨️ Keyboard Operations

ToolDescriptionParameters
claw_press_keyPress single keykey: string
claw_press_comboPress key combination (e.g., Ctrl+C)keys: string
claw_type_textType text with optional delaytext: string, [delay: number]
claw_key_downKey downkey: string
claw_key_upKey upkey: string

📸 Screenshot & Content Extraction

ToolDescriptionParameters
claw_take_screenshotCapture screenshot of current page[fullPage: boolean]
claw_get_page_contentGet page HTML or text content`[type: html\text]`
claw_get_textGet text content of elementselector: string
claw_get_htmlGet HTML content of elementselector: string
claw_get_attributeGet element attribute valueselector, attribute
claw_is_visibleCheck if element is visibleselector: string
claw_is_enabledCheck if element is enabledselector: string

🖱️ Mouse & Scroll Operations

ToolDescriptionParameters
claw_mouse_moveMove mouse to coordinatesx, y
claw_mouse_clickLeft click at coordinates[x, y]
claw_mouse_right_clickRight click at coordinates[x, y]
claw_mouse_double_clickDouble click at coordinates[x, y]
claw_mouse_downMouse button downbutton, x, y
claw_mouse_upMouse button up[button]
claw_mouse_wheelMouse wheel scroll[deltaX, deltaY]
claw_scrollScroll page[x, y]
claw_fast_scroll_downFast scroll down one screen[speed: number]
claw_fast_scroll_upFast scroll up one screen[speed: number]
claw_hover_elementHover over elementselector: string
claw_scroll_to_elementScroll element to viewport centerselector: string

📱 Touch & Swipe Operations (Mobile)

ToolDescriptionParameters
claw_swipe_upSwipe up gesture (Douyin/TikTok)[distance: number]
claw_swipe_downSwipe down gesture[distance: number]
claw_swipe_leftSwipe left gesture[distance: number]
claw_swipe_rightSwipe right gesture[distance: number]
claw_tapTap at specific positionx, y

📑 Tab Management

ToolDescriptionParameters
claw_tab_createCreate new browser tab[url, active]
claw_tab_closeClose browser tab[tabId]
claw_tab_listList all open tabs-
claw_tab_switchSwitch to specific tabtabId: number
claw_tab_reloadReload tab content[tabId]
claw_get_active_tabGet active tab information-
claw_attach_all_tabsAttach all tabs for control-

📁 Bookmark Management

ToolDescriptionParameters
claw_get_bookmarksGet all bookmarks (flat list)-
claw_get_bookmark_treeGet full bookmark tree structure-
claw_search_bookmarksSearch bookmarks by keywordquery: string
claw_create_bookmarkCreate new bookmarktitle, url, [parentId]
claw_update_bookmarkUpdate bookmark title or URLid, [title, url]
claw_rename_bookmarkRename bookmark or folderid, title
claw_delete_bookmarkDelete single bookmarkid: string
claw_remove_folderRecursively delete bookmark folderid: string
claw_create_folderCreate new bookmark foldertitle, [parentId]
claw_move_bookmarkMove bookmark to another folderid, parentId

🍪 Storage & Cookies

ToolDescriptionParameters
claw_get_cookiesGet cookies for domain[domain: string]
claw_set_cookiesSet cookiescookies: array
claw_get_storageGet localStorage/sessionStorage[type, origin]
claw_set_storageSet storage valuetype, key, value

🧪 JavaScript Execution

ToolDescriptionParameters
claw_evaluate_jsExecute JavaScript code in pageexpression: string

⏳ Wait Operations

ToolDescriptionParameters
claw_waitWait specified millisecondsms: number
claw_wait_for_elementWait for element to appearselector, [timeout]
claw_wait_for_textWait for text to appeartext, [timeout]
claw_wait_for_urlWait for URL pattern matchurlPattern, [timeout]
claw_wait_for_navigationWait for navigation completion[timeout]
claw_smart_waitSmart wait (NEW)element/text/urlPattern, timeout

🔧 Element Operations

ToolDescriptionParameters
claw_click_elementClick page element (CSS selector)selector: string
claw_fill_inputFill input field with textselector, text
claw_clear_inputClear input fieldselector: string
claw_select_optionSelect dropdown optionselector, value
claw_checkCheck checkboxselector: string
claw_uncheckUncheck checkboxselector: string
claw_focus_elementFocus on elementselector: string
claw_upload_fileUpload file to inputselector, filePath

🧠 Smart Operations (Enhanced)

ToolDescriptionParameters
claw_smart_clickSmart click: try selector→text→coordinatesselector/text/x+y, timeout
claw_find_elementsQuery all matching elements on pageselector, [limit]
claw_wait_and_clickWait for element then clickselector, timeout, scrollIntoView
claw_get_page_structureGet page key structure summaryincludeLinks/Buttons/Inputs, maxItems
claw_batch_extractBatch extract multiple selector contentsselectors, options
claw_extract_tableExtract HTML table to JSON[selector, includeHeader]
claw_extract_listExtract list-type datacontainerSelector, fields, limit

📊 Task & Log Operations

ToolDescriptionParameters
claw_new_taskCreate new task[name: string]
claw_complete_taskComplete task[success: boolean]
claw_switch_taskSwitch to specified tasktaskId: number
claw_list_tasksList all tasks-
claw_get_task_logsGet specified task logs[taskId, limit]
claw_get_action_logsGet current task action logs[limit]

⚙️ Configuration & Status

ToolDescriptionParameters
claw_get_statusGet current system status-
claw_get_configGet full configuration-
claw_set_modeSet operation mode`mode: local\cloud\auto`
claw_health_checkPerform health check-
claw_diagnoseSystem diagnostics[full: boolean]

🌐 Navigation Operations

ToolDescriptionParameters
claw_navigateOpen URLurl, [newTab]
claw_open_urlsBatch open multiple URLsurls, [delayMs]
claw_go_backGo back one page-
claw_go_forwardGo forward one page-
claw_reload_pageReload page[hard: boolean]

💾 Login Session Management

ToolDescriptionParameters
claw_save_login_sessionSave current page login statename, [domain]
claw_restore_login_sessionRestore saved login statename: string
claw_list_login_sessionsList all saved sessions-

Configuration

  • MCP Port: 30000 (default, customizable)
  • Extension WebSocket: ws://127.0.0.1:{port}/extension
  • Built-in Token: autoclaw_builtin_Q0hpK2oV4F9tlwbYX3RELxiJNGDvayr8OPqZzkfs
  • Custom Token: Supported (leave empty to use built-in)

Installation Steps

1. Start MCP Server

cd %USERPROFILE%\.openclaw\skills\autoclaw_wboke\mcp
npm install  # First time only
npm start

2. Install Chrome Extension

  1. Open chrome://extensions
  2. Enable "Developer mode"
  3. Click "Load unpacked"
  4. Select autoclaw-plugin/ directory

3. Configure Extension

  1. Click extension icon → Settings
  2. Set port (default: 30000)
  3. Enter custom Token (optional, leave empty for built-in)
  4. Click "Save Settings" to authorize
  5. Click "Attach All Tabs"

v6.0.0 Performance Optimization

OptimizationBeforeAfterEffect
CDP DomainEnable all 4 domains each timeEnable only 2 base domains, others on-demandResource ↓30%
Connection PollCheck every 5 secondsCheck every 30 secondsCPU/Network ↓40%
Popup PollRefresh every 3 secondsRefresh every 10 secondsBattery/Resource ↓
DOM CacheNoneReuse within 15 secondsRepeat requests ↓50%

Project Structure

autoclaw_wboke/
├── SKILL.md                    # This documentation
├── README.md                   # Main documentation
├── mcp/                       # MCP Server
│   ├── package.json
│   ├── dist/server.js         # Compiled server (v5.2.0) ⭐
│   └── node_modules/
├── autoclaw-plugin/           # Chrome Extension
│   ├── manifest.json
│   ├── background.js          # Background script (v6.0.0) ⭐
│   ├── popup.js               # Popup UI
│   └── options.js             # Settings UI
└── scripts/                   # Automation script templates
    ├── 抖音点赞.json
    ├── 批量截图.json
    └── 自动搜索.json

Log Management

  • Log Directory: ~/.autoclaw/logs/
  • Retention: 30 days (auto-cleanup on server start)
  • Max Tasks: 100

Communication Protocol

  • MCP service runs on customizable port (default: 30000)
  • Browser extension communicates via WebSocket
  • Message format: JSON

Troubleshooting

Extension Not Connected

  1. Verify MCP server is running
  2. Click extension icon → Settings → Test Connection
  3. Ensure authorization is not expired

"No Attached Tab" Error

  1. Click "Attach All Tabs" in extension popup
  2. Or manually click each tab to attach

Authorization Expired

  1. Click extension icon → Settings
  2. Click "Save Settings" to re-authorize

Performance Issues

  • v6.0.0 has optimized resource usage
  • Try restarting MCP service if issues persist

Usage Example

// Connect to MCP service
const WebSocket = require('ws');
const ws = new WebSocket('ws://localhost:30000');

ws.on('open', function() {
    // Navigate to webpage
    ws.send(JSON.stringify({
        action: 'navigate',
        url: 'https://www.example.com'
    }));
    
    // Get simplified DOM (recommended)
    ws.send(JSON.stringify({
        name: 'claw_get_indexed_elements',
        arguments: { useCache: true }
    }));
});

Error Handling

  • Connection Failure: Check if MCP service is running and port is available
  • Extension Not Loaded: Verify manifest.json exists and is properly formatted
  • Dependency Errors: Re-run npm install to install dependencies

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.36%
按下载量换算9,453

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills