Google Docs & Drive Integration

Full Google Docs and Drive integration for reading, creating, and sharing documents with markdown formatting. Search files, manage folders, and enable seamless collaboration.

Sby Skills Guide Bot
ProductivityIntermediate0 views0 installs3/4/2026
Claude CodeCursor
google-docsgoogle-driveautomationcollaborationpython

name: google-docs-integration description: Google Docs and Drive integration. Use for reading documents, searching Drive, creating docs, writing content with markdown formatting, and sharing documents. allowed-tools: Bash(python *)

Google Docs & Drive Integration

Authentication

IMPORTANT: Credentials are injected automatically by a proxy layer. Just run the scripts directly.

Note: In direct mode, requires google-api-python-client and google-auth packages.

Available Scripts

All scripts are in .claude/skills/docs-google/scripts/

read_document.py

python .claude/skills/docs-google/scripts/read_document.py --document-id DOC_ID

search_drive.py

python .claude/skills/docs-google/scripts/search_drive.py --query "incident report" [--mime-type "application/vnd.google-apps.document"] [--max-results 10]

list_folder.py

python .claude/skills/docs-google/scripts/list_folder.py --folder-id FOLDER_ID

create_document.py

python .claude/skills/docs-google/scripts/create_document.py --title "Postmortem Report" [--folder-id FOLDER_ID]

write_content.py

python .claude/skills/docs-google/scripts/write_content.py --document-id DOC_ID --content "# Heading\n\nParagraph..." [--replace]

share_document.py

python .claude/skills/docs-google/scripts/share_document.py --document-id DOC_ID --email user@example.com [--role writer]
python .claude/skills/docs-google/scripts/share_document.py --document-id DOC_ID --anyone [--role reader]

Related skills