recipe-bulk-download-folder

recipe-bulk-download-folder is a skill for Claude Code from fakoli/fakoli-plugins. It costs 17 tokens per session (401 once invoked), scanned A, original, MIT.

A Google Drive workflow for listing every file in a folder and downloading the files to your computer.

In plain words
What is it for?
Use it to make a local copy of a Drive folder, including documents, spreadsheets, PDFs, and images.
Why use it?
It avoids downloading files one by one and handles Google Docs and Sheets that need to be exported first.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the gws plugin — 94 skills, 15 commands, 11 agents shipped together

Good fit Use it to make a local copy of a Drive folder, including documents, spreadsheets, PDFs, and images.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fakoli/fakoli-plugins/recipe-bulk-download-folder
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add fakoli/fakoli-plugins --skill recipe-bulk-download-folder
Clone the repo
git clone --depth 1 https://github.com/fakoli/fakoli-plugins

Made for: Claude Code.

Or install gws, the plugin that ships this one along with the rest of its 94 skills, 15 commands, 11 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for recipe-bulk-download-folder

README.md
[![agentmods](https://agentmods.dev/badge/skills/fakoli/fakoli-plugins/recipe-bulk-download-folder/github.svg)](https://agentmods.dev/skills/fakoli/fakoli-plugins/recipe-bulk-download-folder)
Your own site
<a href="https://agentmods.dev/skills/fakoli/fakoli-plugins/recipe-bulk-download-folder"><img src="https://agentmods.dev/badge/skills/fakoli/fakoli-plugins/recipe-bulk-download-folder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for recipe-bulk-download-folder

Your own site · 80×15
<a href="https://agentmods.dev/skills/fakoli/fakoli-plugins/recipe-bulk-download-folder"><img src="https://agentmods.dev/badge/skills/fakoli/fakoli-plugins/recipe-bulk-download-folder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 401 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00017 $0.00401
Opus 5 $0.00009 $0.00200
Sonnet 5 $0.00003 $0.00080
Haiku 4.5 $0.00002 $0.00040

Measured 7d ago against content hash bf7bf6d4d104, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

recipe-bulk-download-folder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/gws/skills/recipe-bulk-download-folder/SKILL.md · 59 lines

What it actually says

Bulk Download Drive Folder

List and download all files from a Google Drive folder to the local filesystem.

When to Use

Use this workflow when the user wants to download an entire folder from Google Drive, or export Google Docs/Sheets as local files.

Workflow

1. Find the folder

Search for the folder by name:

gws drive files list \
  --params '{"q": "name = 'FOLDER_NAME' and mimeType = 'application/vnd.google-apps.folder'"}' \
  --fields "files(id,name)" --format table

2. List files in the folder

gws drive files list \
  --params '{"q": "'FOLDER_ID' in parents"}' \
  --fields "files(id,name,mimeType,size)" --format table

Show the user the file list and confirm they want to download all.

3. Download each file

For regular files (PDFs, images, etc.):

gws drive files get --params '{"fileId": "FILE_ID", "alt": "media"}' --output ./filename.ext

For Google Docs/Sheets/Slides (must export):

gws drive files export --params '{"fileId": "FILE_ID", "mimeType": "application/pdf"}' --output ./document.pdf

4. Report results

Tell the user which files were downloaded and where they are.

Tips

  • Google-native files (Docs, Sheets, Slides) must be exported — they can't be downloaded directly
  • Common export MIME types: application/pdf, text/csv, text/plain, application/vnd.openxmlformats-officedocument.wordprocessingml.document
  • Use --fields to keep the file listing compact
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 59 lines · 17 tokens per session scan A bf7bf6d4d104

Subscribe to this mod's changes

recipe-bulk-download-folder is a skill published in the GitHub repository fakoli/fakoli-plugins (4 stars, last pushed 4d ago), licensed MIT. It adds 17 tokens to every session and 401 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

doc-reader

A document parser for Korean government, court, and business files, including HWP, HWPX, PDF, XLSX, and DOCX. It converts them to Markdown while extracting tables, form fields, metadata, and document differences.

modu-ai/moai-cowork · 336 tokens

document-skills

Professional document creation, editing, and analysis for Office formats (docx, pdf, pptx, xlsx). Use when working with Word documents, PDFs, PowerPoint presentations, or Excel spreadsheets.

travisjneuman/.claude · 44 tokens

document-processor

Activates DocumentProcessor for intelligent processing of Word, PDF, PowerPoint, and Excel files. Use when you need to extract, summarize, redline, or transform documents in any Office format — compare versions, extract tables, generate document outlines, convert formats, or produce structured data from unstructured…

vignesh2027/Claude-Agentic-Skills2.0-version · 65 tokens

xlsx

This skill should be activated when the user asks to create, edit, read, or analyze Excel spreadsheet files (.xlsx, .xlsm, .csv, .tsv). Triggers for: building financial models, creating data tables, formatting spreadsheets, adding formulas, cleaning tabular data, converting between tabular formats. Also triggers when…

lukaskellerstein/claude-my-marketplace · 106 tokens

chat-complex-documents

Chat with and search your complex documents — ask questions, extract tables and fields, and get answers grounded in the source. Connects the hosted Unstructured Transform MCP server to parse, structure, and enrich PDFs, Word/Excel/PowerPoint, images, scanned files, emails, and 60+ other formats into clean, AI-ready…

vellum-ai/vellum-assistant · 90 tokens

doc-xlsx

A spreadsheet generator that creates Excel (.xlsx) files with tables, charts, formulas, and conditional formatting. It can structure reports such as KPI dashboards, sales analyses, budgets, payroll sheets, and project timelines.

modu-ai/moai-cowork · 235 tokens