Google Drive Upload
SkillFiles & storageLets your agent upload files to Google Drive, including via Hebrew phrases like 'save to Drive'.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Google Drive Upload skill
About this capability
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.
What this skill tells your AI
The instructions your AI receives, as published by davepoon/buildwithclaude in plugins/all-skills/skills/google-drive-upload/SKILL.md and read by ahel’s review.
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
- Reads the user's config file (
~/.cowork-gdrive-config.json) - Base64-encodes the target file
- POSTs it to the deployed Google Apps Script
- Returns the Google Drive file URL
How to Use
Prerequisites (One-Time Setup)
- Deploy the included Google Apps Script as a web app
- Create
~/.cowork-gdrive-config.jsonwith 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
folderPathto organize files into folders (e.g., "Clients/Acme") - Add
"replaceExisting": trueto 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 — AI Automation & Application Development
Signals
- GitHub stars
- 3k
- Forks
- 500
- Last commit
- Sep 2026
ahel review
S4info
community integration — published by davepoon, not google
Automated review, not a security audit. Ruleset v1.
Advanced
- Catalog kind
- skill
- Gateway key
google-drive-upload- Source
- github.com/davepoon/buildwithclaude