← ClaudeAtlas

gws-sheets-appendlisted

Google Sheets: Append a row to a spreadsheet.
raffaelefarinaro/ciaobot · ★ 8 · AI & Automation · score 71
Install: claude install-skill raffaelefarinaro/ciaobot
# sheets +append > **PREREQUISITE:** Read `gws-shared` for Ciaobot auth (via `ciao gws`), global flags, and security rules. Append a row to a spreadsheet ## Usage ```bash ciao gws "$GWS_PROFILE" sheets +append --spreadsheet <ID> ``` ## Flags | Flag | Required | Default | Description | |------|----------|---------|-------------| | `--spreadsheet` | ✓ | — | Spreadsheet ID | | `--values` | — | — | Comma-separated values (simple strings) | | `--json-values` | — | — | JSON array of rows, e.g. '[["a","b"],["c","d"]]' | ## Examples ```bash ciao gws "$GWS_PROFILE" sheets +append --spreadsheet ID --values 'Alice,100,true' ciao gws "$GWS_PROFILE" sheets +append --spreadsheet ID --json-values '[["a","b"],["c","d"]]' ``` ## Tips - Use --values for simple single-row appends. - Use --json-values for bulk multi-row inserts. > [!CAUTION] > This is a **write** command — confirm with the user before executing.