google-docs
Document creation and management for small businesses. SOPs, proposals, contracts, meeting notes, and templates. Built on the gws CLI.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Document creation and management for small businesses. SOPs, proposals, contracts, meeting notes, and templates. Built on the gws CLI.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Stand up a secure, empty BigQuery data lake on GCP — layered datasets, least-privilege service accounts, Workload Identity (no downloadable keys), read-only authorized views, audit logging, and a budget alert. Agent-guided or Terraform. You connect your own data sources afterward — on purpose.
Set up and configure cloud secrets management for your AI agent. Guides users through platform selection (GCP, AWS, Azure, 1Password, Doppler, HashiCorp Vault), account setup, CLI configuration, and secure credential storage.
Audit and maintain a data semantic layer for AI agents. Scans BigQuery datasets, GCP APIs, secrets, and service accounts to keep your data catalog current.
Email management for small businesses. Daily triage, vendor communication, customer replies, templates, and inbox automation. Built on the gws CLI.
Slack team messaging for small businesses. Send messages, manage channels, post automated updates, run daily standups, and coordinate your team. Includes SMB channel structure and team communication best practices.
Create, query, audit, and optimize Google Ads campaigns via the Google Ads API (Python SDK). Use for campaign management, performance analysis, keyword optimization, and ad creation.
| name | google-docs |
| version | 1.0.0 |
| tier | business-ops |
| description | Document creation and management for small businesses. SOPs, proposals, contracts, meeting notes, and templates. Built on the gws CLI. |
| requires | {"bins":["gws"],"skills":["google-workspace"]} |
Document management built for small business needs — SOPs, proposals, contracts, and meeting notes.
Uses the gws CLI for all Docs operations. See the google-workspace skill for setup.
gws CLI installed and authenticated with Docs + Drive scopegws auth login -s docs,drive if not already donegws docs +write # Create or update a document
gws docs documents create # Create an empty document
gws docs documents get # Get document content
# Create with the helper command
gws docs +write
# Create via API
gws docs documents create --json '{
"title": "Weekly Meeting Notes — 2026-01-15"
}'
# Insert text at the beginning
gws docs documents batchUpdate --params '{"documentId": "DOC_ID"}' --json '{
"requests": [
{
"insertText": {
"location": {"index": 1},
"text": "Meeting Notes\n\nDate: January 15, 2026\nAttendees: Team\n\nAgenda:\n1. Review last week\n2. This week priorities\n3. Blockers\n\nNotes:\n"
}
}
]
}'
# Get full document content
gws docs documents get --params '{"documentId": "DOC_ID"}'
gws drive files export --params '{
"fileId": "DOC_ID",
"mimeType": "application/pdf"
}' -o ./document.pdf
Structure for any SOP:
Structure for client proposals:
Structure for meeting notes:
# List recent docs
gws drive files list --params '{
"q": "mimeType=\"application/vnd.google-apps.document\"",
"pageSize": 10,
"orderBy": "modifiedTime desc"
}' --format table
# Search by name
gws drive files list --params '{
"q": "mimeType=\"application/vnd.google-apps.document\" and name contains '\''SOP'\''",
"pageSize": 10
}'
google-drive — Docs are Drive files; use Drive for search/permissionsgmail — Email documents or draft emails from doc contentgoogle-calendar — Create meeting notes docs linked to calendar eventsplaybook-discovery — Turn discovered playbooks into SOP documentsgws docs +write for the simplest document creation workflowgoogle-workspace — Required setup (install and auth)google-drive — File-level operationsgoogle-calendar — Meeting-linked documentsDocument your processes. If it's not written down, it doesn't exist.