← All skills
Tencent SkillHub · Developer Tools

Abby Browser

基于 OpenClaw 的浏览器工具,支持自然语言控制网页打开、截图、点击、输入、表单填写、数据提取和页面操作。

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

基于 OpenClaw 的浏览器工具,支持自然语言控制网页打开、截图、点击、输入、表单填写、数据提取和页面操作。

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/__init__.py, scripts/click.py, scripts/extract.py, scripts/form.py, scripts/open.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 16 sections Open source page

Abby Browser Skill

基于 OpenClaw 内置浏览器工具封装

解决的问题

让爸爸可以用自然语言控制浏览器,不需要记住复杂命令。

核心功能

功能命令示例打开网页open打开 Google截图screenshot截取当前页面点击click点击按钮输入type输入文字填表单fill填写表单提取数据snapshot获取页面内容等待wait等待加载滚动scroll滚动页面

在对话中

爸爸:帮我打开 Google Abby:好的爸爸!让我打开 Google... [执行 openclaw browser open https://google.com] ✅ 已打开 Google 爸爸:帮我截图 Abby:好的,截个图... [执行 openclaw browser screenshot] 📸 截图已保存 爸爸:帮我点击登录按钮 Abby:好的... [执行 openclaw browser click 12] ✅ 已点击

常用命令

# 打开网页 openclaw browser open https://example.com # 截图 openclaw browser screenshot openclaw browser screenshot --full-page # 点击元素 (需要先 snapshot 获取 ref) openclaw browser click 12 openclaw browser click 12 --double # 输入文字 openclaw browser type 12 "hello world" # 填写表单 openclaw browser fill --fields '[{"ref":"1","value":"xxx"}]' # 获取页面快照 openclaw browser snapshot openclaw browser snapshot --format aria # 等待 openclaw browser wait --text "Done" openclaw browser wait --selector ".content" # 滚动 openclaw browser evaluate --fn 'window.scrollTo(0, document.body.scrollHeight)'

scripts/open.py

打开网页的封装脚本。

scripts/screenshot.py

截图的封装脚本。

scripts/click.py

点击元素的封装脚本。

scripts/form.py

表单填写的封装脚本。

scripts/extract.py

数据提取的封装脚本。

1. Element Reference (ref)

每次执行 snapshot 后,元素会有一个编号 (ref): <button ref="12">登录</button> <input ref="23" /> 点击 ref=12:openclaw browser click 12

2. Snapshot 格式

--format ai (默认) - AI 理解 --format aria - 辅助功能树

3. 等待加载

操作前最好等待: openclaw browser wait --text "加载完成"

安全考虑

❌ 不自动执行危险操作 ✅ 执行前确认 ✅ 记录操作日志 ✅ 异常处理

依赖

OpenClaw browser 工具 Chrome/Chromium 浏览器

相关文档

OpenClaw Browser Docs 创建于 2026-02-15

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
5 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/__init__.py Scripts
  • scripts/click.py Scripts
  • scripts/extract.py Scripts
  • scripts/form.py Scripts
  • scripts/open.py Scripts