skills/integrations/google/google-docs/SKILL.md
Read, write, and manage Google Docs. Load when user mentions 'google docs', 'google document', 'create doc', 'read doc', 'write doc', 'edit document', or references creating/editing text documents in Google Drive.
npx skillsauth add beam-ai-team/beam-next-skills google-docsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Read, write, create, and manage Google Docs via OAuth authentication.
Before creating, editing, replacing, exporting, or sharing a Google Doc, show the account, document ID/title, operation, content summary, output path when used, and expected side effects. Require explicit user approval in the current turn before mutating Docs or writing files. Reading documents with an approved scope does not require additional approval.
uv run python skills/integrations/google/google-master/scripts/google_auth.py --check --service docs
Exit codes:
python3 skills/integrations/google/google-master/scripts/google_auth.py --loginuv run python skills/integrations/google/google-docs/scripts/docs_operations.py read <document_id>
uv run python skills/integrations/google/google-docs/scripts/docs_operations.py create "My Document" --content "Initial content here"
uv run python skills/integrations/google/google-docs/scripts/docs_operations.py insert <document_id> "Text to insert" --index 1
uv run python skills/integrations/google/google-docs/scripts/docs_operations.py append <document_id> "Text to append at end"
uv run python skills/integrations/google/google-docs/scripts/docs_operations.py replace <document_id> "old text" "new text"
uv run python skills/integrations/google/google-docs/scripts/docs_operations.py export <document_id> --format pdf --output ./report.pdf
uv run python skills/integrations/google/google-docs/scripts/docs_operations.py list --query "report"
uv run python skills/integrations/google/google-docs/scripts/docs_operations.py copy <document_id> "Copy of My Document"
uv run python skills/integrations/google/google-docs/scripts/docs_operations.py rename <document_id> "New Title"
The document ID is in the URL:
https://docs.google.com/document/d/[DOCUMENT_ID]/edit
from docs_operations import create_document, append_text
doc = create_document("Weekly Report - Jan 2024")
append_text(doc['document_id'], "Key findings from this week...")
print(f"Report created: {doc['url']}")
from docs_operations import copy_document, replace_all_text
new_doc = copy_document(template_id, "Invoice #1234")
replace_all_text(new_doc['document_id'], "{{CLIENT}}", "Acme Corp")
replace_all_text(new_doc['document_id'], "{{AMOUNT}}", "$5,000")
| Operation | Function | Description |
|-----------|----------|-------------|
| Read | read_document() | Get document content |
| Info | get_document_info() | Get title, ID, URL |
| Create | create_document() | Create new document |
| Copy | copy_document() | Duplicate document |
| Rename | rename_document() | Change title |
| Insert | insert_text() | Insert at position |
| Append | append_text() | Add to end |
| Replace | replace_all_text() | Find and replace |
| Export | export_document() | Export to text/HTML/PDF/DOCX |
| List | list_documents() | List accessible docs |
See ../google-master/references/error-handling.md for common errors and solutions.
First-time setup: ../google-master/references/setup-guide.md
Quick start:
pip install google-auth google-auth-oauthlib google-api-python-client.env file at Beam Next root:
GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-client-secret
GOOGLE_PROJECT_ID=your-project-id
python3 skills/integrations/google/google-master/scripts/google_auth.py --logintools
Build a Palantir-shape, PDF-native use-case proposal document for a sophisticated enterprise account: research-grounded use cases (each with description, challenge, impact, value), an operating-graph ontology page, a recommended PoC with a week-by-week plan, and a closing page that asks for one decision. Load when a client asks us to 'propose high-impact use cases', requests a use-case presentation/catalog for a function (finance, HR, ops), or when a technical evaluation team will review candidates to pick a PoC. NOT for single-account cold outreach (use prospect-brief), full process diagnostics (use operating-diagnostic), or priced proposals (use proposal-creation).
development
Convert Beam Figma slide designs into high-fidelity, editable HTML presentation decks. Use when Codex is asked to audit Figma slides, extract slide templates, rebuild Beam slides as HTML decks, decide whether Figma imagery should be exported or rebuilt in HTML/CSS, create Beam/Prism-compatible deck templates, or improve fidelity of existing Beam HTML slide rebuilds.
development
Use the Beam AI reusable slide library: individual HTML slide templates extracted from Beam Figma rebuilds, kept separate from deck themes and full deck templates. Load when the user asks for a slide library, specific Beam slide patterns, reusable Figma-inspired slides, Prism slide-library items, or slide-level HTML templates.
development
Use Beam AI deck and report design packs, HTML templates, and curated examples to create sales decks, customer intro decks, RPO decks, and DIN A4 use-case proposal reports. Load when the user asks for Beam-branded presentation templates, Prism-compatible deck templates, Beam report templates, customer intro decks, commercial proposals, or reusable HTML deck/report examples.