Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Read cell ranges from a Google Sheets spreadsheet via the gws CLI.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: gws-sheets-read3description: "Google Sheets: Read values from a spreadsheet."4metadata:5version: 0.22.56openclaw:7category: "productivity"8requires:9bins:10- gws11cliHelp: "gws sheets +read --help"12---1314# sheets +read1516> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.1718Read values from a spreadsheet1920## Usage2122```bash23gws sheets +read --spreadsheet <ID> --range <RANGE>24```2526## Flags2728| Flag | Required | Default | Description |29|------|----------|---------|-------------|30| `--spreadsheet` | ✓ | — | Spreadsheet ID |31| `--range` | ✓ | — | Range to read (e.g. 'Sheet1!A1:B2') |3233## Examples3435```bash36gws sheets +read --spreadsheet ID --range "Sheet1!A1:D10"37gws sheets +read --spreadsheet ID --range Sheet138```3940## Tips4142- Read-only — never modifies the spreadsheet.43- For advanced options, use the raw values.get API.4445## See Also4647- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth48- [gws-sheets](../gws-sheets/SKILL.md) — All read and write spreadsheets commands49