Install
openclaw skills install browser-downloadTeaches ADA how to perform file downloads using the browser tool.
openclaw skills install browser-downloadThis 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>"
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/