minkhant1996

google-sheets

"Manage Google Sheets - create spreadsheets, read/write data, formatting, charts"

minkhant1996 0 Updated 4mo ago
GitHub

Install

npx skillscat add minkhant1996/openclaw-google-skills/google-sheets

Install via the SkillsCat registry.

SKILL.md

Google Sheets Skill

Use the gsheet command for ALL spreadsheet-related tasks.

Commands

List & Create

gsheet list                              # List spreadsheets
gsheet create "Title"                    # Create new
gsheet info <id>                         # Get details

Read/Write

gsheet read <id> --range "A1:D10"        # Read data
gsheet write <id> --range "A1" --value "Hello"
gsheet append <id> --values "col1,col2,col3"

Format

gsheet format <id> --range "A1:D1" --bold --bg yellow

Charts

gsheet add-chart <id> --labels "B2:B5" --values "D2:D5" --type pie --title "Budget"
gsheet delete-charts <id>               # Remove all charts

Chart types: COLUMN, BAR, LINE, AREA, PIE, SCATTER

Budget Summary

gsheet budget-summary <id>              # Auto-create income/expense/remaining summary

Creates a summary table and pie chart showing:

  • Total Income
  • Total Expenses
  • Remaining Balance

Share

gsheet share <id> --email "user@email.com" --role writer

For full help: gsheet help