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.
npx claudepluginhub wadewarren/gws-claude-pluginThis skill uses the workspace's default tool permissions.
> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
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.
Provides CLI-based read/write access to Google Sheets via Python scripts with standalone OAuth authentication. Supports get-text/CSV/JSON, range updates, appends, clears, and batch operations.
Appends deal status updates to a Google Sheets 'Sales Pipeline' spreadsheet via gws CLI. Finds sheet by name, reads data, and appends rows with date, company, status, value, quarter, and owner.
Share bugs, ideas, or general feedback.
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.