davepoon/buildwithclaude/plugins/all-skills/skills/google-drive-automation/SKILL.md
google-drive-automation
Automate Google Drive file operations (upload, download, search, share, organize) via Rube MCP (Composio). Upload/download files, manage folders, share with permissions, and search across drives programmatically.
- Source repository stars
- 3,359
- Declared platforms
- 0
- Static risk flags
- 2
- Last source update
- 2026-08-24
- Source checked
- 2026-08-26
Decision brief
What it does: where it fits
Automate Google Drive workflows including file upload/download, search, folder management, sharing/permissions, and organization through Composio's Google Drive toolkit.
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/davepoon/buildwithclaude --skill "plugins/all-skills/skills/google-drive-automation"Inspect the Agent Skill "google-drive-automation" from https://github.com/davepoon/buildwithclaude/blob/ebd20fe1d82fa74e9a2f94abfeff88090f6c758c/plugins/all-skills/skills/google-drive-automation/SKILL.md at commit ebd20fe1d82fa74e9a2f94abfeff88090f6c758c. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Setup
Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
Verify Rube MCP is available by confirming RUBESEARCHTOOLS respondsCall RUBEMANAGECONNECTIONS with toolkit googledriveIf connection is not ACTIVE, follow the returned auth link to complete Google OAuth - 02
Prerequisites
Rube MCP must be connected (RUBESEARCHTOOLS available)
Rube MCP must be connected (RUBESEARCHTOOLS available)Active Google Drive connection via RUBEMANAGECONNECTIONS with toolkit googledriveAlways call RUBESEARCHTOOLS first to get current tool schemas - 03
Core Workflows
When to use: User wants to upload files to or download files from Google Drive
GOOGLEDRIVEFINDFILE - Locate target folder for upload [Prerequisite]GOOGLEDRIVEUPLOADFILE - Upload a file (max 5MB) [Required]GOOGLEDRIVERESUMABLEUPLOAD - Upload large files [Fallback] - 04
1. Upload and Download Files
When to use: User wants to upload files to or download files from Google Drive
GOOGLEDRIVEFINDFILE - Locate target folder for upload [Prerequisite]GOOGLEDRIVEUPLOADFILE - Upload a file (max 5MB) [Required]GOOGLEDRIVERESUMABLEUPLOAD - Upload large files [Fallback] - 05
2. Search and List Files
When to use: User wants to find specific files or browse Drive contents
GOOGLEDRIVEFINDFILE - Search by name, content, type, date, or folder [Required]GOOGLEDRIVELISTFILES - Browse files with folder scoping [Alternative]GOOGLEDRIVELISTSHAREDDRIVES - Enumerate shared drives [Optional]
Permission review
Static risk signals and limitations
Network access
The documentation includes network, browsing, or remote request actions.
Download responses provide a temporary URL at `data.downloaded_file_content.s3url`, not inline bytesWrites files
The documentation asks the agent to create, modify, or delete local files.
*When to use**: User wants to create folder structures or move files between foldersWrites files
The documentation asks the agent to create, modify, or delete local files.
`GOOGLEDRIVE_CREATE_FOLDER` - Create a new folder [Required]Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 91/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 3,359 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- davepoon/buildwithclaude
- Skill path
- plugins/all-skills/skills/google-drive-automation/SKILL.md
- Commit
- ebd20fe1d82fa74e9a2f94abfeff88090f6c758c
- License
- MIT
- Collected
- 2026-08-26
- Default branch
- main
View the original SKILL.md
Google Drive Automation via Rube MCP
Automate Google Drive workflows including file upload/download, search, folder management, sharing/permissions, and organization through Composio's Google Drive toolkit.
Toolkit docs: composio.dev/toolkits/googledrive
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active Google Drive connection via
RUBE_MANAGE_CONNECTIONSwith toolkitgoogledrive - Always call
RUBE_SEARCH_TOOLSfirst to get current tool schemas
Setup
Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
RUBE_SEARCH_TOOLSresponds - Call
RUBE_MANAGE_CONNECTIONSwith toolkitgoogledrive - If connection is not ACTIVE, follow the returned auth link to complete Google OAuth
- Confirm connection status shows ACTIVE before running any workflows
Core Workflows
1. Upload and Download Files
When to use: User wants to upload files to or download files from Google Drive
Tool sequence:
GOOGLEDRIVE_FIND_FILE- Locate target folder for upload [Prerequisite]GOOGLEDRIVE_UPLOAD_FILE- Upload a file (max 5MB) [Required]GOOGLEDRIVE_RESUMABLE_UPLOAD- Upload large files [Fallback]GOOGLEDRIVE_DOWNLOAD_FILE- Download a file by ID [Required]GOOGLEDRIVE_DOWNLOAD_FILE_OPERATION- Track long-running downloads [Fallback]GOOGLEDRIVE_GET_FILE_METADATA- Verify file after upload/download [Optional]
Key parameters:
file_to_upload: Object withname,mimetype, ands3key(file must be in internal storage)folder_to_upload_to: Target folder ID (optional; uploads to root if omitted)file_id: ID of file to downloadmime_type: Export format for Google Workspace files only (omit for native files)
Pitfalls:
GOOGLEDRIVE_UPLOAD_FILErequiresfile_to_upload.s3key; files must already be in internal storage- For non-Google formats (Excel, PDF), do NOT set
mime_type; it causes errors for native files - Download responses provide a temporary URL at
data.downloaded_file_content.s3url, not inline bytes - Use
GOOGLEDRIVE_RESUMABLE_UPLOADfor files >5MB or when basic uploads fail
2. Search and List Files
When to use: User wants to find specific files or browse Drive contents
Tool sequence:
GOOGLEDRIVE_FIND_FILE- Search by name, content, type, date, or folder [Required]GOOGLEDRIVE_LIST_FILES- Browse files with folder scoping [Alternative]GOOGLEDRIVE_LIST_SHARED_DRIVES- Enumerate shared drives [Optional]GOOGLEDRIVE_GET_FILE_METADATA- Get detailed file info [Optional]GOOGLEDRIVE_GET_ABOUT- Check storage quota and supported formats [Optional]
Key parameters:
q: Drive query string (e.g., "name contains 'report'", "mimeType = 'application/pdf'")corpora: Search scope ('user', 'domain', 'drive', 'allDrives')fields: Response fields to include (e.g., 'files(id,name,mimeType)')orderBy: Sort key ('modifiedTime desc', 'name', 'quotaBytesUsed desc')pageSize: Results per page (max 1000)pageToken: Pagination cursor fromnextPageTokenfolder_id: Scope search to a specific folder
Pitfalls:
- 403 PERMISSION_DENIED if OAuth scopes insufficient for shared drives
- Pagination required; files are in
response.data.files; follownextPageTokenuntil exhausted corpora="domain"may trigger 400; try"allDrives"withincludeItemsFromAllDrives=true- Query complexity limits: >5-10 OR clauses may error "The query is too complex"
- Wildcards (*) NOT supported in
name; usecontainsfor partial matching - 'My Drive' is NOT searchable by name; use
folder_id='root'for root folder - User email searches: use
'[email protected]' in owners(NOTowner:[email protected])
3. Share Files and Manage Permissions
When to use: User wants to share files or manage access permissions
Tool sequence:
GOOGLEDRIVE_FIND_FILE- Locate the file to share [Prerequisite]GOOGLEDRIVE_ADD_FILE_SHARING_PREFERENCE- Set sharing permission [Required]GOOGLEDRIVE_LIST_PERMISSIONS- View current permissions [Optional]GOOGLEDRIVE_GET_PERMISSION- Inspect a specific permission [Optional]GOOGLEDRIVE_UPDATE_PERMISSION- Modify existing permission [Optional]GOOGLEDRIVE_DELETE_PERMISSION- Revoke access [Optional]
Key parameters:
file_id: ID of file to sharetype: 'user', 'group', 'domain', or 'anyone'role: 'owner', 'organizer', 'fileOrganizer', 'writer', 'commenter', 'reader'email_address: Required for type='user' or 'group'domain: Required for type='domain'transfer_ownership: Required when role='owner'
Pitfalls:
- Invalid type/email combinations trigger 4xx errors
- Using
type='anyone'or powerful roles is risky; get explicit user confirmation - Org policies may block certain sharing types, causing 403
- Permission changes may take time to propagate
- Use
GMAIL_SEARCH_PEOPLEto resolve contact names to emails before sharing
4. Create and Organize Folders
When to use: User wants to create folder structures or move files between folders
Tool sequence:
GOOGLEDRIVE_FIND_FILE- Check if folder already exists [Prerequisite]GOOGLEDRIVE_CREATE_FOLDER- Create a new folder [Required]GOOGLEDRIVE_GET_FILE_METADATA- Verify created folder [Optional]GOOGLEDRIVE_MOVE_FILE- Move files between folders [Optional]GOOGLEDRIVE_UPDATE_FILE_PUT- Update file metadata/parents [Alternative]
Key parameters:
name: Folder nameparent_id: Parent folder ID (NOT name); omit for rootfile_id: File to moveadd_parents: Destination folder ID for moveremove_parents: Source folder ID to remove from
Pitfalls:
GOOGLEDRIVE_CREATE_FOLDERrequiresparent_idas an ID, not a folder name- Using
parent_id="root"creates at top level; for nested paths, chain folder IDs GOOGLEDRIVE_FIND_FILEreturns ~100 items/page; follownextPageTokenfor large drives- Move operations can leave items with multiple parents; use
remove_parentsfor true moves - Always verify parent folder exists before creating children
Common Patterns
ID Resolution
- File/folder name -> ID:
GOOGLEDRIVE_FIND_FILEwithqparameter - Root folder: Use
folder_id='root'or'root' in parents - Shared drive -> driveId:
GOOGLEDRIVE_LIST_SHARED_DRIVES - Contact name -> email:
GMAIL_SEARCH_PEOPLE(for sharing)
Query Syntax
Google Drive uses a specific query language:
- Name search:
"name contains 'report'"or"name = 'exact.pdf'" - Type filter:
"mimeType = 'application/pdf'"or"mimeType = 'application/vnd.google-apps.folder'" - Folder scoping:
"'FOLDER_ID' in parents" - Date filter:
"modifiedTime > '2024-01-01T00:00:00'" - Combine with
and/or/not:"name contains 'report' and trashed = false" - Boolean filters:
"sharedWithMe = true","starred = true","trashed = false"
Pagination
- Follow
nextPageTokenuntil absent for complete results - Set
pageSizeexplicitly (default 100, max 1000) - De-duplicate results if running multiple searches
Export Formats
For Google Workspace files, set mime_type to export:
- Docs:
application/pdf,text/plain,text/html,application/vnd.openxmlformats-officedocument.wordprocessingml.document - Sheets:
text/csv,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet - Slides:
application/pdf,application/vnd.openxmlformats-officedocument.presentationml.presentation
Known Pitfalls
- Internal storage required: Upload requires files in internal S3 storage (s3key)
- Export vs download: Set
mime_typeONLY for Google Workspace files; omit for native files - Temporary URLs: Downloaded content via
s3urlis temporary; fetch promptly - Query complexity: >5-10 OR clauses may error; split complex searches into multiple queries
- Shared drive scoping: Missing drive permissions yield empty results; verify access first
- No wildcards: Use
containsoperator instead of*for partial name matching - Folder creation chains: Always pass folder IDs (not names) as
parent_id - Multiple parents: Move operations may leave items with multiple parents; use
remove_parents - Rate limits: Heavy searches/exports can trigger 403/429; implement backoff
Quick Reference
| Task | Tool Slug | Key Params |
|---|---|---|
| Search files | GOOGLEDRIVE_FIND_FILE | q, corpora, pageSize |
| List files | GOOGLEDRIVE_LIST_FILES | folderId, q, orderBy |
| Upload file | GOOGLEDRIVE_UPLOAD_FILE | file_to_upload, folder_to_upload_to |
| Resumable upload | GOOGLEDRIVE_RESUMABLE_UPLOAD | file data |
| Download file | GOOGLEDRIVE_DOWNLOAD_FILE | file_id, mime_type (Workspace only) |
| File metadata | GOOGLEDRIVE_GET_FILE_METADATA | fileId, fields |
| Create folder | GOOGLEDRIVE_CREATE_FOLDER | name, parent_id |
| Move file | GOOGLEDRIVE_MOVE_FILE | file_id, add_parents, remove_parents |
| Share file | GOOGLEDRIVE_ADD_FILE_SHARING_PREFERENCE | file_id, role, type, email_address |
| List permissions | GOOGLEDRIVE_LIST_PERMISSIONS | fileId |
| Update permission | GOOGLEDRIVE_UPDATE_PERMISSION | file_id, permission_id |
| Delete permission | GOOGLEDRIVE_DELETE_PERMISSION | file_id, permission_id |
| List shared drives | GOOGLEDRIVE_LIST_SHARED_DRIVES | pageSize |
| Drive info | GOOGLEDRIVE_GET_ABOUT | (none) |
| Create shortcut | GOOGLEDRIVE_CREATE_SHORTCUT_TO_FILE | target file_id |
Powered by Composio
Frequently asked questions
What to verify before installation and use
What does the google-drive-automation source document cover?
Automate Google Drive workflows including file upload/download, search, folder management, sharing/permissions, and organization through Composio's Google Drive toolkit.
How do I install google-drive-automation?
The source record exposes this install command: npx skills add https://github.com/davepoon/buildwithclaude --skill "plugins/all-skills/skills/google-drive-automation". Inspect the command and pinned source before running it.
Which permission-related actions were detected?
Static rules flagged network, write-files in the source; the page lists the matching lines and excerpts.
Alternatives
Compare before choosing
oaustegard/claude-skills
featuring
Generate hierarchical _FEATURES.md files that describe what a codebase DOES from a user/consumer perspective, anchored to source symbols via tree-sitting. Supports large complex codebases through feature-driven decomposition into sub-feature files. Uses a multi-pass synthesis: orientation → detail → overview rewrite. Use when someone says "what does this do", "document features", "feature inventory", "_FEATURES.md", or needs to understand a codebase's purpose before modifying it. Complements tre
dancingteeth/unified-code-review
unified-code-review
Risk-first code review for PRs and branch audits: blast-radius triage, agent-authored discipline (tests first, intent evidence), call-graph pincer for integration defects between modules, then structural code-judo bar. Use when reviewing PRs, auditing agent-written diffs, catching rubber-stamp green CI, or wiring bugs single-file review misses. Prefer over structure-only thermo-nuclear review alone. Do not use for unrelated coding tasks or as an always-on rule.
Postpartum-genushyacinthus29/dotnet-skills
dotnet-worker-services
Build long-running .NET background services with `BackgroundService`, Generic Host, graceful shutdown, configuration, logging, and deployment patterns suited to workers and daemons.
PaulRBerg/agent-skills
skill-writing
Create/scaffold/init a project-local agent skill under `.agents/skills` in an ordinary repository; defer to repository instructions that define a source catalog and lifecycle.