一键导入
google-sheets
Work with Google Sheets: create spreadsheets, read and write cell ranges, append rows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Work with Google Sheets: create spreadsheets, read and write cell ranges, append rows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Compose and send emails, create drafts, and manage recipients using Gmail and Contacts.
Get a cross-service morning briefing combining inbox highlights, today's calendar, and pending tasks.
Find, upload, download, and share files on Google Drive.
Triage, search, and summarize Gmail messages. Check inbox, find specific emails, and extract key information from threads.
View your calendar, create events with natural language dates, and find open time slots for scheduling.
Manage Google Tasks: view task lists, create tasks, mark complete, and organize to-dos.
| name | google-sheets |
| description | Work with Google Sheets: create spreadsheets, read and write cell ranges, append rows. |
| version | 1.0.0 |
| author | AgentZero Google Suite Plugin |
| license | MIT |
| tags | ["google","sheets","spreadsheets","productivity"] |
| triggers | ["google sheets","create spreadsheet","new spreadsheet","read spreadsheet","write to sheet","append to sheet","update spreadsheet","list spreadsheets"] |
| allowed_tools | ["sheets_manage","sheets_values"] |
| metadata | {"complexity":"basic","category":"productivity"} |
Create spreadsheets, look up existing ones, and read/write/append cell ranges. Use this when the user mentions sheets, spreadsheets, tabular data, or wants to record rows of data.
sheets_manage — file-level: create, get (metadata for a spreadsheet incl. tab names), list (recent spreadsheets via Drive).sheets_values — cell-level: read, write, append using A1 notation like Sheet1!A1:C10.You almost always need a spreadsheet_id for value operations. Get it from a previous create, a list, or directly from the user (it's the long ID in the spreadsheet URL).
{"tool": "sheets_manage", "args": {"action": "list", "limit": 10}}
{"tool": "sheets_manage", "args": {"action": "get", "spreadsheet_id": "1AbC...xYz"}}
{"tool": "sheets_manage", "args": {"action": "create", "title": "2026 Budget", "sheet_titles": ["Income", "Expenses"]}}
{"tool": "sheets_values", "args": {"action": "read", "spreadsheet_id": "1AbC...xYz", "range": "Income!A1:D20"}}
{
"tool": "sheets_values",
"args": {
"action": "write",
"spreadsheet_id": "1AbC...xYz",
"range": "Income!A1",
"values": [["Source", "Amount"], ["Salary", 5000], ["Freelance", 1200]]
}
}
{
"tool": "sheets_values",
"args": {
"action": "append",
"spreadsheet_id": "1AbC...xYz",
"range": "Income!A:B",
"values": [["Dividend", 240]]
}
}
range uses A1 notation. Examples: Sheet1!A1:C10, Sheet1!A:C (whole columns), or Sheet1 (the entire tab).write overwrites cells starting at the top-left of range. To add new rows without overwriting, use append.value_input defaults to USER_ENTERED (Sheets parses dates/formulas like the UI does). Use RAW to store strings literally.list requires the Drive service to also be enabled — the Sheets API itself has no list endpoint.drive_download with the spreadsheet ID (Google Sheets export as PDF).