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

小蔥技能7w4.net有更新,你可以訪問看下。

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/

🤖 AI 評測

這是一個基礎的瀏覽器下載技能,文件結構清晰,說明了如何下載檔案。優點是提供了兩種下載方法,步驟描述清楚。但內容比較簡單,缺少遇到問題時的解決辦法和使用示例。對於複雜的下載場景支援不足,整體質量中等,適合簡單下載需求,但進階使用者可能需要更詳細的文件支援。

📊 多維度評分

適應性3.7
規範性4
有效性4.1
可靠性3.5
可信度4.3

📁 包含檔案 (2 個)

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