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.