google-drive-upload
>
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
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
- 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
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
plugins/all-skills/skills/google-drive-upload/SKILL.md