com um clique
write-google-docs
Skill for writing arbitrary Google Docs
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Skill for writing arbitrary Google Docs
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
analyzes customer feedback across Email, GitHub, NPS, and churn cancellations.
Analyzes git history from a repository to summarize recent development activity, features in progress, and engineering priorities. Use when asked about what the team is working on, recent code changes, development velocity, or to prepare for planning/roadmap discussions.
Projects a customer's cost from prior usage data across seat-based, usage-based, and hybrid SaaS pricing models. Use when asked to "project cost", "estimate BYO cost", "estimate spend", "how much will this cost", "size a deal", or to build an enterprise-style usage/cost projection.
Does research on competitive features and creates a report.
Reads the most recent weekly product briefing, identifies P0 issues, researches them in the codebase, and spawns cloud coding agents to fix each one. Use when asked to "fix P0s", "address critical issues", or "work on top priorities from the briefing."
Posts messages to Slack via webhook.
| name | write_google_docs |
| description | Skill for writing arbitrary Google Docs |
Use this skill to create new Google Docs documents, populate them with content, and write to specific tabs.
Use this skill when you need to:
Do NOT use this skill when:
Run the script from the skills/write_google_docs/ directory:
python skills/write_google_docs/write_google_doc.py --title "Document Title" --content "Your content here"
python skills/write_google_docs/write_google_doc.py --title "Weekly Report" --tab "Week 9" --content "Week 9 analysis..."
python skills/write_google_docs/write_google_doc.py --document-id DOCUMENT_ID --tab "Week 10" --content "Week 10 analysis..."
python skills/write_google_docs/write_google_doc.py --document-id DOCUMENT_ID --tab "Summary" --content-file summary.txt
When using --document-id, the --tab flag is required. When creating a new document with --title, --tab is optional — if omitted, content goes to the default first tab.
Use --folder-id to create the document inside a specific Google Drive folder:
python skills/write_google_docs/write_google_doc.py --title "Report" --folder-id FOLDER_ID --content "Content..."
The folder ID is the last segment of a Drive folder URL (e.g. YOUR_GOOGLE_DRIVE_FOLDER_ID from https://drive.google.com/drive/folders/YOUR_GOOGLE_DRIVE_FOLDER_ID). This option can be combined with --tab.
python skills/write_google_docs/write_google_doc.py --title "Brief Title" --content "Brief content goes here"
python skills/write_google_docs/write_google_doc.py --title "Report Title" --content-file /path/to/content.txt
echo "Content here" | python skills/write_google_docs/write_google_doc.py --title "Document Title" --stdin
For programmatic use, add the --json flag:
python skills/write_google_docs/write_google_doc.py --title "Title" --content "Content" --json
This returns JSON with documentId, webViewLink, title, and optionally tabId.
The script outputs:
--tab)Markdown in the content is automatically converted to native Google Docs formatting:
# Heading through ###### Heading → Google Docs headings (H1-H6)**bold** or __bold__ → bold text*italic* or _italic_ → italic text- item or * item → bullet lists1. item → numbered lists[text](url) → plain text (link removed)`code` → plain text (backticks removed)For best results:
After creating a document, you can:
post_to_slack skill to share the link to Slackpython skills/write_google_docs/write_google_doc.py --title "Competitive Analysis - January 2026" --content "Your analysis content..."
Create the document with the first week's tab:
python skills/write_google_docs/write_google_doc.py --title "Weekly Reports - Q1 2026" --tab "Week 1" --content "Week 1 content..." --json
Then add subsequent weeks to the same document using the returned document ID:
python skills/write_google_docs/write_google_doc.py --document-id DOC_ID --tab "Week 2" --content "Week 2 content..."
python skills/write_google_docs/write_google_doc.py --document-id DOC_ID --tab "Week 3" --content "Week 3 content..."
token.json in the project root and re-authenticateIf you encounter authentication errors:
token.json and run again to re-authenticate with new scopes