ワンクリックで
google-docs
Read, create, or edit Google Docs documents
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Read, create, or edit Google Docs documents
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Read or update contacts, opportunities, notes, and conversations in GoHighLevel
Save or retrieve records from Airtable bases
Send emails, SMS, or manage contacts via Brevo (formerly Sendinblue)
Manage bookings, availability, and event types in Cal.com
Check availability, create scheduling links, or list upcoming events in Calendly
Create or update tasks and lists in ClickUp
| name | google_docs |
| display_name | Google Docs |
| description | Read, create, or edit Google Docs documents |
| auth_type | oauth2 |
| category | productivity |
When the user wants their voice agent to create or update Google Docs during or after a call. Common triggers:
Check connection via check_connection("google_docs").
If not connected: Use secret("google_docs") in tool scripts. The system
will automatically emit the correct action card based on the platform
configuration. Do NOT emit action cards manually.
Discover documents (Google Drive supports listing):
api_call("google_docs", "GET", "https://www.googleapis.com/drive/v3/files?q=mimeType='application/vnd.google-apps.document'&fields=files(id,name)") → list DocsUse the real document ID in the tool config.
{
"name": "google_docs.create_document",
"description": "Create a new Google Doc with the call summary",
"params": [
{"name": "title", "description": "Document title", "type": "string", "required": true},
{"name": "content", "description": "Document body text", "type": "string", "required": true}
],
"script": "let key = secret('google_docs');\nlet createResp = http_post_h('https://docs.googleapis.com/v1/documents', {title: title}, {'Authorization': 'Bearer ' + key, 'Content-Type': 'application/json'});\nif (createResp.status < 200 || createResp.status >= 300) { throw new Error(`Google Docs ${createResp.status}: ${createResp.body}`); }\nlet docId = JSON.parse(createResp.body).documentId;\nlet requests = [{insertText: {location: {index: 1}, text: content}}];\nlet updateResp = http_post_h('https://docs.googleapis.com/v1/documents/' + docId + ':batchUpdate', {requests: requests}, {'Authorization': 'Bearer ' + key, 'Content-Type': 'application/json'});\nif (updateResp.status >= 200 && updateResp.status < 300) { return 'Document created: https://docs.google.com/document/d/' + docId; }\nthrow new Error(`Google Docs update ${updateResp.status}: ${updateResp.body}`);",
"side_effect": true
}
secret("google_docs") for credentialsthrow using resp.status/resp.body