npx claudepluginhub fakoli/fakoli-plugins --plugin gwsThis skill uses the workspace's default tool permissions.
List and download all files from a Google Drive folder to the local filesystem.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Designs, implements, and audits WCAG 2.2 AA accessible UIs for Web (ARIA/HTML5), iOS (SwiftUI traits), and Android (Compose semantics). Audits code for compliance gaps.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
List and download all files from a Google Drive folder to the local filesystem.
Use this workflow when the user wants to download an entire folder from Google Drive, or export Google Docs/Sheets as local files.
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
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.
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
Tell the user which files were downloaded and where they are.
application/pdf, text/csv, text/plain, application/vnd.openxmlformats-officedocument.wordprocessingml.document--fields to keep the file listing compact