← Back to Skills Marketplace
earnabitmore365

Abby Browser

by earnabitmore365 · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
620
Downloads
0
Stars
3
Active Installs
1
Versions
Install in OpenClaw
/install abby-browser
Description
基于 OpenClaw 的浏览器工具,支持自然语言控制网页打开、截图、点击、输入、表单填写、数据提取和页面操作。
README (SKILL.md)

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):

\x3Cbutton ref="12">登录\x3C/button>
\x3Cinput ref="23" />

点击 ref=12:openclaw browser click 12

2. Snapshot 格式

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

3. 等待加载

操作前最好等待:

openclaw browser wait --text "加载完成"

安全考虑

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

依赖

  • OpenClaw browser 工具
  • Chrome/Chromium 浏览器

相关文档


创建于 2026-02-15

Usage Guidance
This skill is a straightforward wrapper around the OpenClaw browser CLI and appears to do what it says. Before installing, verify you trust the source (homepage is missing and source is 'unknown'), and confirm you have the official openclaw CLI and Chrome/Chromium installed. Be aware: the scripts can execute page JavaScript and return page contents (normal for a browser tool), so do not allow use on pages containing sensitive data unless you trust the agent's actions. Also note the SKILL.md promises confirmation/logging but the shipped scripts do not implement explicit user confirmation or persistent logs — if you need those safety guarantees, ask the author for implementation or avoid using the skill for destructive or sensitive tasks.
Capability Analysis
Type: OpenClaw Skill Name: abby-browser Version: 1.0.0 The skill is classified as suspicious due to a critical JavaScript injection vulnerability found in `scripts/extract.py`. The `extract_text` function directly embeds the `selector` argument, taken from `sys.argv`, into a JavaScript string executed via `openclaw browser evaluate --fn`. This lack of input sanitization allows an attacker to inject arbitrary JavaScript code into the browser context, potentially leading to data exfiltration (e.g., cookies, local storage, page content) or other client-side attacks. While there is no clear evidence of intentional malicious behavior by the skill developer, this vulnerability presents a significant security risk.
Capability Assessment
Purpose & Capability
The skill's name/description state it wraps the OpenClaw browser for actions like open, click, screenshot and extract — the included scripts invoke the 'openclaw browser' CLI exactly as expected. Minor mismatch: registry metadata lists no required binaries while both SKILL.md and the scripts require the 'openclaw' CLI and a Chrome/Chromium browser; that should be declared but is not malicious.
Instruction Scope
SKILL.md and the scripts instruct only to run OpenClaw browser commands and to operate on web pages. The scripts do execute arbitrary page JS via evaluate and return page content (expected for a browser skill). The SKILL.md claims confirmation, logging, and not auto-executing dangerous operations, but the provided scripts do not implement explicit user confirmation or logging — this documentation/implementation gap is a behavioral mismatch to be aware of.
Install Mechanism
No install spec or external downloads; the skill is instruction + local Python scripts that invoke an existing CLI. No remote code fetch, archive extraction, or third-party package installs are present in the package.
Credentials
The package requires no environment variables or credentials. It expects the local 'openclaw' CLI and a browser to be present (declared in SKILL.md). There are no requests for unrelated secrets or system credentials in code or docs.
Persistence & Privilege
always:false and no modifications to other skills or system-wide settings. The skill does not request permanent platform privileges; autonomous invocation is allowed by default but not excessive here. No self-enabling or config changes detected.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install abby-browser
  3. After installation, invoke the skill by name or use /abby-browser
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of abby-browser skill. - Enables natural language browser control without complex commands. - Supports opening webpages, taking screenshots, clicking elements, typing input, filling forms, extracting data, waiting, and scrolling. - Provides clear command examples for both chat and terminal usage. - Includes built-in scripts for common browser actions. - Emphasizes security with operation confirmation, logging, and error handling.
Metadata
Slug abby-browser
Version 1.0.0
License
All-time Installs 3
Active Installs 3
Total Versions 1
Frequently Asked Questions

What is Abby Browser?

基于 OpenClaw 的浏览器工具,支持自然语言控制网页打开、截图、点击、输入、表单填写、数据提取和页面操作。 It is an AI Agent Skill for Claude Code / OpenClaw, with 620 downloads so far.

How do I install Abby Browser?

Run "/install abby-browser" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Abby Browser free?

Yes, Abby Browser is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Abby Browser support?

Abby Browser is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Abby Browser?

It is built and maintained by earnabitmore365 (@earnabitmore365); the current version is v1.0.0.

💬 Comments