agents/skills/gws-sheets-append/SKILL.md
Google Sheets: Append a row to a spreadsheet.
npx skillsauth add pkey/dotfiles gws-sheets-appendInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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"]]' |
| --range | — | A1 | Target range in A1 notation (e.g. 'Sheet2!A1') to select a specific tab |
gws sheets +append --spreadsheet ID --values 'Alice,100,true'
gws sheets +append --spreadsheet ID --json-values '[["a","b"],["c","d"]]'
gws sheets +append --spreadsheet ID --range "Sheet2!A1" --values 'Alice,100'
[!CAUTION] This is a write command — confirm with the user before executing.
tools
Use when working with git worktrees in pkey's repos — creating a branch, switching between worktrees, removing one, or starting a stacked PR with Graphite. The user has shell helpers (gwt, gwtn, gwtc, gwtl, gwtm, gwtrm, gwtrmf, gwtp) sourced from ~/dotfiles/tools/git-worktree.sh that enforce a consistent layout under ~/worktrees/<repo>/<branch>. Prefer these over raw `git worktree` commands so layout and main-worktree protection stay consistent.
tools
Reference for Helix editor keybindings, commands, and configuration. Use when the user asks about Helix shortcuts, how to do X in Helix, Helix config options, or how to set up language servers/themes in Helix.
development
Google Sheets: Read and write spreadsheets.
development
Google Sheets: Read values from a spreadsheet.