Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기google-sheets
Read, write, and manage Google Sheets spreadsheets
스타0
포크0
업데이트2026년 3월 24일 08:07
파일 탐색기
2 개 파일SKILL.md
readonly메뉴
Read, write, and manage Google Sheets spreadsheets
Create posts, comment, react, send connections, search, and manage your LinkedIn presence via Unipile API
Create tweets, reply, retweet, like, search, and manage your X (Twitter) account
| name | google-sheets |
| display_name | Google Sheets |
| description | Read, write, and manage Google Sheets spreadsheets |
| category | productivity |
| icon | table |
| skill_type | sandbox |
| catalog_type | platform |
| requirements | httpx>=0.25,google-auth>=2.0,requests>=2.20 |
| resource_requirements | [{"env_var":"GOOGLE_SHEETS_CREDENTIALS_JSON","name":"Google Sheets Credentials","description":"Google OAuth credentials JSON (auto-provided by gateway connection)"},{"env_var":"GOOGLE_SHEETS_USER_EMAIL","name":"Google Account Email","description":"Email of the connected Google account"}] |
| tool_schema | {"name":"google_sheets","description":"Read, write, and manage Google Sheets spreadsheets","parameters":{"type":"object","properties":{"action":{"type":"string","description":"Which operation to perform","enum":["list_spreadsheets","read_sheet","write_cells","append_rows","create_spreadsheet","get_sheet_info"]},"spreadsheet_id":{"type":"string","description":"Spreadsheet ID (from URL) — for read_sheet, write_cells, append_rows, get_sheet_info","default":""},"range":{"type":"string","description":"A1 notation range — for read_sheet, write_cells, append_rows (e.g. 'Sheet1!A1:D10', 'Sheet1')","default":"Sheet1"},"values":{"type":"string","description":"JSON array of arrays (rows) — for write_cells, append_rows (e.g. [[\"Name\",\"Email\"],[\"John\",\"john@co.com\"]])","default":""},"title":{"type":"string","description":"Spreadsheet title — for create_spreadsheet","default":""},"sheet_names":{"type":"string","description":"Comma-separated sheet names — for create_spreadsheet (e.g. 'Leads,Pipeline,Stats')","default":""},"query":{"type":"string","description":"Search query — for list_spreadsheets (searches by name)","default":""},"limit":{"type":"integer","description":"Max results — for list_spreadsheets (default 10)","default":10}},"required":["action"]}} |
Read, write, and manage Google Sheets spreadsheets.
query (name search).spreadsheet_id.spreadsheet_id and range (A1 notation like Sheet1!A1:D10).spreadsheet_id, range, and values (JSON array of row arrays).spreadsheet_id, range (target sheet), and values (JSON array of row arrays).title and optional sheet_names (comma-separated).action: write_cells
spreadsheet_id: "1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgVE2upms"
range: "Sheet1!A1:C3"
values: [["Name","Email","Status"],["John","john@co.com","New"],["Jane","jane@co.com","Contacted"]]
action: append_rows
spreadsheet_id: "1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgVE2upms"
range: "Sheet1"
values: [["New Lead","lead@example.com","2025-03-09"]]