원클릭으로
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