Skip to main content

google-docs-integration

Google Docs and Drive integration. Use for reading documents, searching Drive, creating docs, writing content with markdown formatting, and sharing documents.

Jump to install

Source facts

Repository
incidentfox/incidentfox
Last source activity
February 17, 2026 at 05:40
Detected SKILL.md language
English
Stars
655
Forks
84

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

File Explorer
8 files

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
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 ```bash python .claude/skills/docs-google/scripts/read_document.py --document-id DOC_ID ``` ### search_drive.py ```bash 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 ```bash python .claude/skills/docs-google/scripts/list_folder.py --folder-id FOLDER_ID ``` ### create_document.py ```bash python .claude/skills/docs-google/scripts/create_document.py --title "Postmortem Report" [--folder-id FOLDER_ID] ``` ### write_content.py ```bash python .claude/skills/docs-google/scripts/write_content.py --document-id DOC_ID --content "# Heading\n\nParagraph..." [--replace] ``` ### share_document.py ```bash 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] ```
View on GitHub