Help us improve
Share bugs, ideas, or general feedback.
From google-drive-upload
Upload files from Claude directly to Google Drive. Use this skill whenever the user wants to upload, save, or send a file to Google Drive — including Word documents (.docx), PDFs, Excel files, presentations, or any other file. Trigger on phrases like "upload to Drive", "save to Drive", "send to Drive", "put this in Drive", or any mention of saving a file to Google Drive. Completely free — unlimited uploads, no restrictions.
npx claudepluginhub msapps-mobile/claude-plugins --plugin google-drive-uploadHow this skill is triggered — by the user, by Claude, or both
Slash command
/google-drive-upload:google-drive-uploadThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Upload files directly to Google Drive via a deployed Google Apps Script web app.
Uploads files to Google Drive via Google Apps Script web app using base64 and curl. Triggers on 'upload/save to Drive' phrases (English/Hebrew) or proactively for workflow outputs. Supports folders.
Automates Google Drive file operations (search, upload, download, move, rename, trash) with standalone OAuth authentication. No MCP server required.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Upload files directly to Google Drive via a deployed Google Apps Script web app.
Completely free — unlimited uploads, no restrictions.
Environment note: This skill works in both Claude Code and Cowork. The only difference is how the config file is read in Step 1 — Claude Code reads it directly, Cowork uses osascript.
The config lives on the Mac at ~/.cowork-gdrive-config.json.
In Claude Code (direct file system access):
CONFIG=$(cat ~/.cowork-gdrive-config.json 2>/dev/null || echo "NOT_CONFIGURED")
In Cowork (VM — needs osascript to reach the Mac home):
CONFIG=$(osascript -e 'do shell script "cat ~/.cowork-gdrive-config.json 2>/dev/null || echo NOT_CONFIGURED"')
Then parse it safely in Python — never log or print the raw config string:
python3 -c "
import json, sys
raw = '''$CONFIG'''
if raw.strip() == 'NOT_CONFIGURED':
print('STATUS:NOT_CONFIGURED')
sys.exit(0)
try:
cfg = json.loads(raw)
print('STATUS:OK')
print(f'URL:{cfg[\"url\"]}')
except Exception as e:
print(f'STATUS:PARSE_ERROR:{e}')
"
STATUS:NOT_CONFIGURED → tell the user: "The Google Drive connection isn't set up yet. Please follow the setup instructions at https://msapps.mobi/plugins to configure your Apps Script URL." Stop here.STATUS:PARSE_ERROR → tell the user the config file is malformed and ask them to check ~/.cowork-gdrive-config.json.STATUS:OK → extract URL from output. Continue.Check common output locations — use the file the user specified, or find the most recent:
ls -lt "$HOME/Documents/Claude/"*.* 2>/dev/null | head -5
ls -lt /sessions/*/mnt/outputs/ 2>/dev/null | head -5
ls -lt /sessions/*/mnt/Claude/ 2>/dev/null | head -5
Ask the user to confirm which file to upload if it's not obvious.
Always use the temp file approach — it handles filenames with spaces, Hebrew characters, and special chars safely:
FILE="<absolute-path-to-file>"
FILENAME=$(basename "$FILE")
B64=$(base64 "$FILE" | tr -d '\n')
MIME=$(file --mime-type -b "$FILE")
GDRIVE_URL="<URL from Step 1>"
cat > /tmp/gdrive_payload.json << JSONEOF
{
"fileName": "$FILENAME",
"content": "$B64",
"mimeType": "$MIME",
"folderPath": "Claude Uploads"
}
JSONEOF
RESPONSE=$(curl -s -L --fail --max-time 60 \
-H "Content-Type: application/json" \
-d @/tmp/gdrive_payload.json \
"$GDRIVE_URL")
CURL_EXIT=$?
rm -f /tmp/gdrive_payload.json
echo "CURL_EXIT:$CURL_EXIT"
echo "RESPONSE:$RESPONSE"
Handle the response:
CURL_EXIT is non-zero → upload failed (network error, timeout, bad URL). Tell the user.CURL_EXIT is 0 → parse RESPONSE as JSON and check "success": true.
success: false → report the error message from "error" field.success: true → proceed to Step 4.Tell the user:
"fileUrl" in the API response)Example:
"Uploaded report.pdf to Google Drive → View file"
The POST body supports:
folderPath: "Folder/Subfolder" — creates folders if neededfolderId: "1abc..." — specific folder ID"replaceExisting": true to overwrite a file with the same name~/.cowork-gdrive-config.json