Back to skills
SkillHub ClubShip Full StackFull Stack

recipe-bulk-download-folder

List and download all files from a Google Drive folder.

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
3,111
Hot score
99
Updated
March 20, 2026
Overall rating
C4.0
Composite score
4.0
Best-practice grade
B81.2

Install command

npx @skill-hub/cli install openclaw-skills-recipe-bulk-download-folder

Repository

openclaw/skills

Skill path: skills/googleworkspace-bot/recipe-bulk-download-folder

List and download all files from a Google Drive folder.

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: openclaw.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install recipe-bulk-download-folder into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/openclaw/skills before adding recipe-bulk-download-folder to shared team environments
  • Use recipe-bulk-download-folder for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: recipe-bulk-download-folder
version: 1.0.0
description: "List and download all files from a Google Drive folder."
metadata:
  openclaw:
    category: "recipe"
    domain: "productivity"
    requires:
      bins: ["gws"]
      skills: ["gws-drive"]
---

# 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`



---

## Skill Companion Files

> Additional files collected from the skill directory layout.

### _meta.json

```json
{
  "owner": "googleworkspace-bot",
  "slug": "recipe-bulk-download-folder",
  "displayName": "Recipe Bulk Download Folder",
  "latest": {
    "version": "1.0.0",
    "publishedAt": 1772847353489,
    "commit": "https://github.com/openclaw/skills/commit/72330c2686f4fda94b007dd6d5d93c200a85150f"
  },
  "history": []
}

```

recipe-bulk-download-folder | SkillHub