# Send Abby Browser to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "abby-browser",
    "name": "Abby Browser",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/earnabitmore365/abby-browser",
    "canonicalUrl": "https://clawhub.ai/earnabitmore365/abby-browser",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/abby-browser",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=abby-browser",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/__init__.py",
      "scripts/click.py",
      "scripts/extract.py",
      "scripts/form.py",
      "scripts/open.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "abby-browser",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T07:30:23.437Z",
      "expiresAt": "2026-05-06T07:30:23.437Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=abby-browser",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=abby-browser",
        "contentDisposition": "attachment; filename=\"abby-browser-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "abby-browser"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/abby-browser"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/abby-browser",
    "downloadUrl": "https://openagent3.xyz/downloads/abby-browser",
    "agentUrl": "https://openagent3.xyz/skills/abby-browser/agent",
    "manifestUrl": "https://openagent3.xyz/skills/abby-browser/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/abby-browser/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: earnabitmore365
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T07:30:23.437Z
- Expires at: 2026-05-06T07:30:23.437Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/abby-browser)
- [Send to Agent page](https://openagent3.xyz/skills/abby-browser/agent)
- [JSON manifest](https://openagent3.xyz/skills/abby-browser/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/abby-browser/agent.md)
- [Download page](https://openagent3.xyz/downloads/abby-browser)