# Gws Sheets Read > Google Sheets: Read values from a spreadsheet. Source: https://skillsagentes.com/skills/googleworkspace/cli/gws-sheets-read Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 12 tok installed, 282 tok once triggered, 282 tok with every bundled file Bundle: 1 file, 1 KB Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill gws-sheets-read --agent claude-code ``` ## What it does - Lee valores de un rango específico de una hoja de cálculo de Google Sheets usando `gws sheets +read` - No modifica la hoja de cálculo, solo lectura ## Use it when - Se necesita obtener valores de un rango como 'Sheet1!A1:D10' en Google Sheets ## Don't bother when - Se necesitan opciones avanzadas más allá de lo que ofrece esto (usar la API raw values.get) ## What triggers it - "Lee el rango Sheet1!A1:D10 de la hoja de cálculo con ID X" - "Muéstrame los valores de la pestaña Sheet1 en este spreadsheet" ## Before you install - Requiere el binario `gws` y haber leído gws-shared para auth y flags globales. ## Files - SKILL.md — 1 KB ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # sheets +read > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. Read values from a spreadsheet ## Usage ```bash gws sheets +read --spreadsheet --range ``` ## Flags | Flag | Required | Default | Description | |------|----------|---------|-------------| | `--spreadsheet` | ✓ | — | Spreadsheet ID | | `--range` | ✓ | — | Range to read (e.g. 'Sheet1!A1:B2') | ## Examples ```bash gws sheets +read --spreadsheet ID --range "Sheet1!A1:D10" gws sheets +read --spreadsheet ID --range Sheet1 ``` ## Tips - Read-only — never modifies the spreadsheet. - For advanced options, use the raw values.get API. ## See Also - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth - [gws-sheets](../gws-sheets/SKILL.md) — All read and write spreadsheets commands --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/gws-sheets-read