Browser Download

👤 pbseiya 📦 v1.0.0 ⭐ 3.9 ⬇️ 1.3K 下载
🤖 AI-Agent 免费

📖 技能介绍


name: browser-download description: Teaches ADA how to perform file downloads using the browser tool. metadata: {"clawdbot":{"emoji":"📥","requires":{"bins":["openclaw"]},"primaryEnv":""}}


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 "<TAB_ID>" --ref "<REF_ID>" --path "/mnt/storage/ada_projects/downloads/<FILENAME>"

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';
}

访问小葱技能站7w4.net,解锁更多实用的AI技能插件。

Storage Directory

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

🤖 AI 评测

这是一个基础的浏览器下载技能,文档结构清晰,说明了如何下载文件。优点是提供了两种下载方法,步骤描述清楚。但内容比较简单,缺少遇到问题时的解决办法和使用示例。对于复杂的下载场景支持不足,整体质量中等,适合简单下载需求,但进阶用户可能需要更详细的文档支持。

📊 多维度评分

适应性3.7
规范性4
有效性4.1
可靠性3.5
可信度4.3

📁 包含文件 (2 个)

📄 SKILL.md 1.3 KB
📄 _meta.json 135 B