> Upload files directly to Google Drive via a deployed Google Apps Script web app. Trigger on: upload to Drive, save to Drive, send to Drive, put this in Drive. Also Hebrew: \"תעלה לדרייב\", \"שמור בדרייב\", \"העלה לגוגל דרייב\". Use proactively when a workflow produces a file the user might want in Drive.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add thedixitjain/the-mega-skill-library --skill google-drive-upload --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Google Drive Upload?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/thedixitjain-google-drive-upload)More formats (shields.io, HTML) on the badges page.
---
name: google-drive-upload
description: "> Upload files directly to Google Drive via a deployed Google Apps Script web app. Trigger on: upload to Drive, save to Drive, send to Drive, put this in Drive. Also Hebrew: \"תעלה לדרייב\", \"שמור בדרייב\", \"העלה לגוגל דרייב\". Use proactively when a workflow produces a file the user might want in Drive."
category: general-purpose
source_repo: davepoon/buildwithclaude
source_path: "plugins/all-skills/skills/google-drive-upload/SKILL.md"
source_url: https://github.com/davepoon/buildwithclaude/blob/HEAD/plugins/all-skills/skills/google-drive-upload/SKILL.md
---
# Google Drive Upload
Upload files directly from Claude to Google Drive using a simple Google Apps Script.
## When to Use This Skill
- User asks to upload, save, or send a file to Google Drive
- A workflow produces a file the user might want stored in Drive
- User mentions Drive in any language (English or Hebrew)
## What This Skill Does
1. Reads the user's config file (`~/.cowork-gdrive-config.json`)
2. Base64-encodes the target file
3. POSTs it to the deployed Google Apps Script
4. Returns the Google Drive file URL
## How to Use
### Prerequisites (One-Time Setup)
1. Deploy the included Google Apps Script as a web app
2. Create `~/.cowork-gdrive-config.json` with your script URL and API key
### Basic Usage
Ask Claude naturally:
- "Upload this report to Google Drive"
- "Save the presentation in Clients/Acme on Drive"
- "תעלה את זה לדרייב"
### Upload Workflow
\`\`\`bash
# Read config
cat "$HOME/.cowork-gdrive-config.json"
# Encode and upload
FILE="/path/to/file"
B64=$(base64 "$FILE" | tr -d '\n')
MIME=$(file --mime-type -b "$FILE")
curl -s -L -H "Content-Type: application/json" \
-d '{"fileName":"name","content":"'$B64'","mimeType":"'$MIME'","apiKey":"KEY"}' \
"SCRIPT_URL"
\`\`\`
## Example
**User**: "Upload this report to Google Drive"
**Output**: Claude encodes the file, uploads it via the Apps Script, and returns:
"Uploaded successfully! Here's your file: https://drive.google.com/file/d/abc123/view"
## Tips
- Use `folderPath` to organize files into folders (e.g., "Clients/Acme")
- Add `"replaceExisting": true` to overwrite instead of duplicating
- Hebrew filenames are fully supported
- Max file size is ~50MB (Google Apps Script limit)
## Source
Full plugin with setup guide and Apps Script code:
https://github.com/msmobileapps/google-drive-upload-plugin
Built by [MSApps](https://msapps.mobi) — AI Automation & Application Development
---
**Source:** [`davepoon/buildwithclaude`](https://github.com/davepoon/buildwithclaude) → `plugins/all-skills/skills/google-drive-upload/SKILL.md`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!