8.3k★by mrgoodb
google-sheets – OpenClaw Skill
google-sheets is an OpenClaw Skills integration for coding workflows. Read and write Google Sheets data. Create spreadsheets, update cells, and manage worksheets via Sheets API.
8.3k stars1.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding
Skill Snapshot
| name | google-sheets |
| description | Read and write Google Sheets data. Create spreadsheets, update cells, and manage worksheets via Sheets API. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/google-sheets |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/google-sheets |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
279 BSKILL.md
1.8 KBSKILL.md
name: google-sheets description: Read and write Google Sheets data. Create spreadsheets, update cells, and manage worksheets via Sheets API. metadata: {"clawdbot":{"emoji":"📊","requires":{"env":["GOOGLE_ACCESS_TOKEN"]}}}
Google Sheets
Spreadsheet automation.
Environment
export GOOGLE_ACCESS_TOKEN="ya29.xxxxxxxxxx"
Read Sheet Data
curl "https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}/values/Sheet1!A1:D10" \
-H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN"
Write to Cells
curl -X PUT "https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}/values/Sheet1!A1:B2?valueInputOption=USER_ENTERED" \
-H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"values": [["Name", "Score"], ["Alice", 95]]}'
Append Rows
curl -X POST "https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}/values/Sheet1!A:D:append?valueInputOption=USER_ENTERED" \
-H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"values": [["New", "Row", "Data", "Here"]]}'
Create Spreadsheet
curl -X POST "https://sheets.googleapis.com/v4/spreadsheets" \
-H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"properties": {"title": "My New Sheet"}}'
Get Spreadsheet Metadata
curl "https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}" \
-H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN"
Clear Range
curl -X POST "https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}/values/Sheet1!A1:Z100:clear" \
-H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN"
Links
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install google-sheets?
Run openclaw add @mrgoodb/google-sheets in your terminal. This installs google-sheets into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/google-sheets. Review commits and README documentation before installing.
