spreadsheets

Google Sheets Spreadsheets

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "spreadsheets" with this command: npx skills add tryshift-sh/skills-store/tryshift-sh-skills-store-spreadsheets

Google Sheets Spreadsheets

Use this skill to create a spreadsheet, inspect its structure, read a range, append rows, or update cell values.

When to use

  • create a new spreadsheet

  • inspect sheet names and spreadsheet metadata

  • read values from a range

  • append rows to a range

  • update a fixed range with new values

Authentication

This skill uses the connected google-sheets provider credential for the current agent.

Invocation

Call through Shift's Skill Router:

curl -X POST "$SHIFT_LOCAL_GATEWAY/skill-router/invoke"
-H "Content-Type: application/json"
-d '{ "skillProvider": "google-sheets", "skill": "spreadsheets", "action": "read-range", "input": { "spreadsheetId": "SPREADSHEET_ID", "range": "Sheet1!A1:C10" } }'

Examples

Create a spreadsheet:

{ "skillProvider": "google-sheets", "skill": "spreadsheets", "action": "create", "input": { "title": "Launch Tracker" } }

Get spreadsheet metadata:

{ "skillProvider": "google-sheets", "skill": "spreadsheets", "action": "get", "input": { "spreadsheetId": "SPREADSHEET_ID" } }

Read a range:

{ "skillProvider": "google-sheets", "skill": "spreadsheets", "action": "read-range", "input": { "spreadsheetId": "SPREADSHEET_ID", "range": "Sheet1!A1:C10" } }

Append values:

{ "skillProvider": "google-sheets", "skill": "spreadsheets", "action": "append-values", "input": { "spreadsheetId": "SPREADSHEET_ID", "range": "Sheet1!A:C", "values": [["2026-03-13", "Launch", "On track"]], "valueInputOption": "USER_ENTERED" } }

Update a range:

{ "skillProvider": "google-sheets", "skill": "spreadsheets", "action": "update-values", "input": { "spreadsheetId": "SPREADSHEET_ID", "range": "Sheet1!B2:C3", "values": [["Owner", "Status"], ["Wei", "Ready"]], "valueInputOption": "USER_ENTERED" } }

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

post

No summary provided by upstream source.

Repository SourceNeeds Review
General

square-post

No summary provided by upstream source.

Repository SourceNeeds Review
General

retweet

No summary provided by upstream source.

Repository SourceNeeds Review