skills$openclaw/smartsheet
mrgoodb2.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

namesmartsheet
descriptionManage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/smartsheet
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/smartsheet
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains smartsheet in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
273 B
SKILL.md
895 B
SKILL.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"
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"}]}'
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.