← 返回 Skills 市场
pbseiya

Browser Download

作者 pbseiya · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
713
总下载
0
收藏
4
当前安装
1
版本数
在 OpenClaw 中安装
/install browser-download
功能描述
Teaches ADA how to perform file downloads using the browser tool.
使用说明 (SKILL.md)

Browser Download Skill

This skill enables ADA to perform file downloads from any webpage using the browser tool.

Prerequisites

  • openclaw CLI must be installed and gateway must be running.
  • relayPort must be configured correctly in openclaw.json (Default: 18792).

How to download

To download a file from a website, follow these steps:

  1. Find the Download Link/Button: Use browser snapshot or browser evaluate to find the ref or selector for the download button.
  2. Execute Download Action: Use the following CLI command structure:
openclaw browser --action download --targetId "\x3CTAB_ID>" --ref "\x3CREF_ID>" --path "/mnt/storage/ada_projects/downloads/\x3CFILENAME>"

Alternative: JavaScript Click

If the download button is inside a canvas or complex element, you can trigger it via evaluation:

() => {
  const btn = document.querySelector('button[aria-label="Download"]');
  if (btn) btn.click();
  return 'clicked';
}

Storage Directory

Always save downloaded files to: /mnt/storage/ada_projects/downloads/

安全使用建议
This skill appears to do what it says: it teaches the agent to download files using the OpenClaw browser tool and requests no secrets. Before installing, consider: (1) downloads can retrieve arbitrary files — only allow this skill if you trust the agent's autonomy or restrict when it can run; (2) the skill uses a hard-coded storage directory (/mnt/storage/ada_projects/downloads/) — confirm that location is appropriate and sandboxed, and change it if needed; (3) scanned files should be validated/antivirus-checked after download; and (4) ensure your OpenClaw gateway (openclaw.json relayPort) is correctly configured and only accessible to trusted networks. No scan warnings were present because the skill is instruction-only.
功能分析
Type: OpenClaw Skill Name: browser-download Version: 1.0.0 The browser-download skill provides standard instructions for an AI agent to use the openclaw CLI to perform file downloads. It specifies a legitimate storage path (/mnt/storage/ada_projects/downloads/) and uses standard browser automation techniques without any evidence of malicious intent, data exfiltration, or prompt injection.
能力评估
Purpose & Capability
Name/description (browser download) aligns with required binary (openclaw) and the instructions (openclaw browser commands and DOM evaluation). No unrelated credentials, binaries, or install steps are requested.
Instruction Scope
SKILL.md stays within the download use case (finding selectors, using browser actions, clicking via evaluated JS). It hard-codes a storage path (/mnt/storage/ada_projects/downloads/) and references that relayPort must be configured in openclaw.json. Hard-coded storage and the ability to click arbitrary page elements mean the agent could download arbitrary content — expected for this skill but worth noting as an operational risk.
Install Mechanism
Instruction-only skill with no install spec or downloadable code. This minimizes install-time risk (nothing is written to disk by the skill itself).
Credentials
No environment variables or secrets are required; only the openclaw CLI and a running gateway are needed, which is proportional to the stated purpose. The skill mentions openclaw.json configuration but does not request access to unrelated credentials.
Persistence & Privilege
always is false and the skill does not request elevated or persistent platform privileges. It does not modify other skills or system-wide configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install browser-download
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /browser-download 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of the browser-download skill. - Enables ADA to perform file downloads from webpages using the browser tool. - Provides instructions for locating download buttons and initiating downloads via CLI. - Includes support for JavaScript-triggered downloads for complex elements. - Standardizes download storage path to `/mnt/storage/ada_projects/downloads/`. - Requires `openclaw` CLI with correct configuration.
元数据
Slug browser-download
版本 1.0.0
许可证
累计安装 4
当前安装数 4
历史版本数 1
常见问题

Browser Download 是什么?

Teaches ADA how to perform file downloads using the browser tool. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 713 次。

如何安装 Browser Download?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install browser-download」即可一键安装,无需额外配置。

Browser Download 是免费的吗?

是的,Browser Download 完全免费(开源免费),可自由下载、安装和使用。

Browser Download 支持哪些平台?

Browser Download 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Browser Download?

由 pbseiya(@pbseiya)开发并维护,当前版本 v1.0.0。

💬 留言讨论