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