name: browser-download description: Teaches ADA how to perform file downloads using the browser tool. metadata: {"clawdbot":{"emoji":"📥","requires":{"bins":["openclaw"]},"primaryEnv":""}}
This skill enables ADA to perform file downloads from any webpage using the browser tool.
openclaw CLI must be installed and gateway must be running.relayPort must be configured correctly in openclaw.json (Default: 18792).To download a file from a website, follow these steps:
browser snapshot or browser evaluate to find the ref or selector for the download button.openclaw browser --action download --targetId "<TAB_ID>" --ref "<REF_ID>" --path "/mnt/storage/ada_projects/downloads/<FILENAME>"
小蔥技能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';
}
Always save downloaded files to:
/mnt/storage/ada_projects/downloads/
這是一個基礎的瀏覽器下載技能,文件結構清晰,說明了如何下載檔案。優點是提供了兩種下載方法,步驟描述清楚。但內容比較簡單,缺少遇到問題時的解決辦法和使用示例。對於複雜的下載場景支援不足,整體質量中等,適合簡單下載需求,但進階使用者可能需要更詳細的文件支援。