2.8k★by mrgoodb
smartsheet – OpenClaw Skill
smartsheet is an OpenClaw Skills integration for writing workflows. Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows.
2.8k stars383 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing
Skill Snapshot
| name | smartsheet |
| description | Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/smartsheet |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/smartsheet |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
273 BSKILL.md
895 BSKILL.md
name: smartsheet description: Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows. metadata: {"clawdbot":{"emoji":"📋","requires":{"env":["SMARTSHEET_ACCESS_TOKEN"]}}}
Smartsheet
Work management and collaboration.
Environment
export SMARTSHEET_ACCESS_TOKEN="xxxxxxxxxx"
List Sheets
curl "https://api.smartsheet.com/2.0/sheets" -H "Authorization: Bearer $SMARTSHEET_ACCESS_TOKEN"
Get Sheet
curl "https://api.smartsheet.com/2.0/sheets/{sheetId}" -H "Authorization: Bearer $SMARTSHEET_ACCESS_TOKEN"
Add Row
curl -X POST "https://api.smartsheet.com/2.0/sheets/{sheetId}/rows" \
-H "Authorization: Bearer $SMARTSHEET_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"toBottom": true, "cells": [{"columnId": 123, "value": "New Row"}]}'
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 smartsheet?
Run openclaw add @mrgoodb/smartsheet in your terminal. This installs smartsheet 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/smartsheet. Review commits and README documentation before installing.
