From gws
Appends rows to Google Sheets spreadsheets using gws CLI. Specify spreadsheet ID with --values for single comma-separated row or --json-values for bulk JSON arrays.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gws:gws-sheets-appendThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
PREREQUISITE: Read
../gws-shared/SKILL.mdfor auth, global flags, and security rules. If missing, rungws generate-skillsto create it.
Append a row to a spreadsheet
gws sheets +append --spreadsheet <ID>
| 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"]]' |
gws sheets +append --spreadsheet ID --values 'Alice,100,true'
gws sheets +append --spreadsheet ID --json-values '[["a","b"],["c","d"]]'
[!CAUTION] This is a write command — confirm with the user before executing.
2plugins reuse this skill
First indexed Mar 9, 2026
npx claudepluginhub wadewarren/gws-claude-pluginProvides gws CLI for Google Sheets API: read/append values, create/get spreadsheets, batch updates. For scripting data ops.
Reads and edits Google Sheets via the Sheets v4 REST API using curl and jq. Supports reading ranges, appending/updating rows, creating spreadsheets, and adding tabs.
Reads, writes, and manages Google Sheets data via CLI scripts with standalone OAuth authentication.