一键导入
google-sheets
Read from or append rows to Google Sheets
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Read from or append rows to Google Sheets
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
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
基于 SOC 职业分类
| name | google_sheets |
| display_name | Google Sheets |
| description | Read from or append rows to Google Sheets |
| auth_type | oauth2 |
| category | database |
When the user wants their voice agent to log data to or read from Google Sheets during a phone call. Common triggers:
Check connection via check_connection("google_sheets").
If not connected: Use secret("google_sheets") in tool scripts.
The system will automatically emit the correct action card based on the
platform configuration. Do NOT emit action cards manually.
Discover spreadsheets (Google supports auto-discovery):
api_call("google_sheets", "GET", "https://www.googleapis.com/drive/v3/files?q=mimeType='application/vnd.google-apps.spreadsheet'&fields=files(id,name)") → list spreadsheetsapi_call("google_sheets", "GET", "https://sheets.googleapis.com/v4/spreadsheets/{id}?fields=sheets.properties") → list sheet tabsUse the real spreadsheet ID and sheet name in the tool config.
If discovery fails, ask the user for the spreadsheet URL (they can
copy-paste it from their browser — the ID is between /d/ and /edit).
{
"name": "google_sheets.append_row",
"description": "Log caller information to the Leads spreadsheet",
"params": [
{"name": "Name", "description": "Caller's full name", "type": "string", "required": true},
{"name": "Phone", "description": "Caller's phone number", "type": "string", "required": true},
{"name": "Notes", "description": "Call summary", "type": "string", "required": false}
],
"script": "let key = secret('google_sheets');\nlet resp = http_post_h('https://sheets.googleapis.com/v4/spreadsheets/SPREADSHEET_ID/values/Sheet1:append?valueInputOption=USER_ENTERED', {values: [[Name, Phone, Notes]]}, {'Authorization': 'Bearer ' + key, 'Content-Type': 'application/json'});\nif (resp.status >= 200 && resp.status < 300) { return 'Recorded.'; }\nthrow new Error(`Google Sheets ${resp.status}: ${resp.body}`);",
"side_effect": true
}
IMPORTANT: Replace SPREADSHEET_ID and Sheet1 with real values obtained
from api_call discovery.
secret("google_sheets") for credentialsapi_call to discover the spreadsheet ID and sheet namethrow using resp.status/resp.body instead of returning a plain-text error string