Recipe Bulk Download Folder

v1.0.12

List and download all files from a Google Drive folder.

0· 403·11 current·11 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for googleworkspace-bot/recipe-bulk-download-folder.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Recipe Bulk Download Folder" (googleworkspace-bot/recipe-bulk-download-folder) from ClawHub.
Skill page: https://clawhub.ai/googleworkspace-bot/recipe-bulk-download-folder
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: gws
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install googleworkspace-bot/recipe-bulk-download-folder

ClawHub CLI

Package manager switcher

npx clawhub@latest install recipe-bulk-download-folder
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill's name/description (bulk download from Google Drive) match the declared requirement for the gws binary and the dependent skill gws-drive. Nothing requested appears unrelated to Drive access.
Instruction Scope
The SKILL.md only instructs the agent to run gws commands to list, download, and export files from a Drive folder — that stays within the stated purpose. Note: the recipe will download all files in a folder and writes to disk using provided output names (risk of overwriting local files); it assumes the agent/environment has valid gws authentication already.
Install Mechanism
Instruction-only skill with no install spec — nothing is written to disk by the skill itself. This is the lowest-risk install model.
Credentials
The skill declares no environment variables or credentials, which is reasonable because it relies on the gws binary and the gws-drive skill to handle authentication. It does not request unrelated secrets or config paths.
Persistence & Privilege
always is false and the skill does not request permanent presence or attempt to modify other skills/configuration. Autonomous invocation is allowed by default but is not combined with other concerning privileges.
Assessment
This recipe is coherent but check the following before using it: ensure the gws binary installed on your system is from a trusted source and that you have properly authenticated gws (the recipe assumes gws/gws-drive handle credentials). Be cautious when downloading an entire folder: files will be written to the agent's working directory and could overwrite local files — provide safe output filenames or an empty target directory. Confirm you have permission to access the Drive folder and that exporting/downloading these files complies with your data policies. Finally, verify the declared dependency on the gws-drive skill is available in your agent so authentication and Drive API calls work as expected.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binsgws
latestvk971smhjh61y67kb8bey3rzg1n83zvsb
403downloads
0stars
13versions
Updated 3w ago
v1.0.12
MIT-0

Bulk Download Drive Folder

PREREQUISITE: Load the following skills to execute this recipe: gws-drive

List and download all files from a Google Drive folder.

Steps

  1. List files in folder: gws drive files list --params '{"q": "'\''FOLDER_ID'\'' in parents"}' --format json
  2. Download each file: gws drive files get --params '{"fileId": "FILE_ID", "alt": "media"}' -o filename.ext
  3. Export Google Docs as PDF: gws drive files export --params '{"fileId": "FILE_ID", "mimeType": "application/pdf"}' -o document.pdf

Comments

Loading comments...