# Send Skill to manage and update google sheet to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "google-sheet",
    "name": "Skill to manage and update google sheet",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/longmaba/google-sheet",
    "canonicalUrl": "https://clawhub.ai/longmaba/google-sheet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/google-sheet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-sheet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "package-lock.json",
      "package.json",
      "SKILL.md",
      "env_example.md",
      "scripts/sheets.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "google-sheet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T05:34:34.229Z",
      "expiresAt": "2026-05-08T05:34:34.229Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-sheet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-sheet",
        "contentDisposition": "attachment; filename=\"google-sheet-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "google-sheet"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/google-sheet"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/google-sheet",
    "downloadUrl": "https://openagent3.xyz/downloads/google-sheet",
    "agentUrl": "https://openagent3.xyz/skills/google-sheet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-sheet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-sheet/agent.md"
  }
}
```
## Documentation

### Google Sheets Skill

Interact with Google Sheets using a service account.

### Setup (One-time)

Google Cloud Console:

Create/select a project
Enable "Google Sheets API"
Create a Service Account (IAM → Service Accounts → Create)
Download JSON key



Configure credentials (one of these):

Set env: GOOGLE_SERVICE_ACCOUNT_KEY=/path/to/key.json
Place service-account.json or credentials.json in the skill directory
Place in ~/.config/google-sheets/credentials.json



Share sheets with the service account email (found in JSON key as client_email)


Install dependencies:
cd skills/google-sheets && npm install

### Usage

node scripts/sheets.js <command> [args]

### Data Operations

CommandArgsDescriptionread<id> <range>Read cellswrite<id> <range> <json>Write dataappend<id> <range> <json>Append rowsclear<id> <range>Clear range

### Formatting

CommandArgsDescriptionformat<id> <range> <formatJson>Format cellsgetFormat<id> <range>Get cell formatsborders<id> <range> [styleJson]Add borderscopyFormat<id> <source> <dest>Copy format between rangesmerge<id> <range>Merge cellsunmerge<id> <range>Unmerge cells

### Layout

CommandArgsDescriptionresize<id> <sheet> <cols|rows> <start> <end> <px>Resize columns/rowsautoResize<id> <sheet> <startCol> <endCol>Auto-fit columnsfreeze<id> <sheet> [rows] [cols]Freeze rows/columns

### Sheet Management

CommandArgsDescriptioncreate<title>Create spreadsheetinfo<id>Get metadataaddSheet<id> <title>Add sheet tabdeleteSheet<id> <sheetName>Delete sheet tabrenameSheet<id> <oldName> <newName>Rename sheet tab

### Examples

# Read data
node scripts/sheets.js read "SPREADSHEET_ID" "Sheet1!A1:C10"

# Write data
node scripts/sheets.js write "SPREADSHEET_ID" "Sheet1!A1:B2" '[["Name","Score"],["Alice",95]]'

# Format cells (yellow bg, bold)
node scripts/sheets.js format "SPREADSHEET_ID" "Sheet1!A1:B2" '{"backgroundColor":{"red":255,"green":255,"blue":0},"textFormat":{"bold":true}}'

# Copy format from one range to another
node scripts/sheets.js copyFormat "SPREADSHEET_ID" "Sheet1!A1:C3" "Sheet1!D1:F3"

# Add borders
node scripts/sheets.js borders "SPREADSHEET_ID" "Sheet1!A1:C3"

# Resize columns to 150px
node scripts/sheets.js resize "SPREADSHEET_ID" "Sheet1" cols A C 150

# Auto-fit column widths
node scripts/sheets.js autoResize "SPREADSHEET_ID" "Sheet1" A Z

# Freeze first row and column
node scripts/sheets.js freeze "SPREADSHEET_ID" "Sheet1" 1 1

# Add new sheet tab
node scripts/sheets.js addSheet "SPREADSHEET_ID" "NewSheet"

### Format Options

{
  "backgroundColor": {"red": 255, "green": 255, "blue": 0},
  "textFormat": {
    "bold": true,
    "italic": false,
    "fontSize": 12,
    "foregroundColor": {"red": 0, "green": 0, "blue": 0}
  },
  "horizontalAlignment": "CENTER",
  "verticalAlignment": "MIDDLE",
  "wrapStrategy": "WRAP"
}

### Border Style

{
  "style": "SOLID",
  "color": {"red": 0, "green": 0, "blue": 0}
}

Border styles: DOTTED, DASHED, SOLID, SOLID_MEDIUM, SOLID_THICK, DOUBLE

### Finding Spreadsheet ID

From URL: https://docs.google.com/spreadsheets/d/SPREADSHEET_ID/edit

### Troubleshooting

403 Forbidden: Sheet not shared with service account email
404 Not Found: Wrong spreadsheet ID or sheet name
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: longmaba
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T05:34:34.229Z
- Expires at: 2026-05-08T05:34:34.229Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/google-sheet)
- [Send to Agent page](https://openagent3.xyz/skills/google-sheet/agent)
- [JSON manifest](https://openagent3.xyz/skills/google-sheet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/google-sheet/agent.md)
- [Download page](https://openagent3.xyz/downloads/google-sheet)