# Gws Gmail > Gmail: Send, read, and manage email. Source: https://skillsagentes.com/skills/googleworkspace/cli/gws-gmail Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 9 tok installed, 505 tok once triggered, 505 tok with every bundled file Bundle: 1 file, 2 KB Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill gws-gmail --agent claude-code ``` ## What it does - Ofrece acceso CLI a Gmail vía `gws gmail [flags]` - Expone recursos de la API como users, drafts, history, labels, messages, settings y threads - Incluye comandos de ayuda para enviar, leer, responder, reenviar y vigilar correos ## Use it when - Se necesita enviar, leer o gestionar correos de Gmail desde la línea de comandos - Se requiere resumir el inbox, responder hilos o reenviar mensajes - Se necesita vigilar nuevos correos en formato NDJSON ## What triggers it - "Envíame un resumen de los correos sin leer" - "Responde a este correo con threading automático" - "Reenvía este mensaje a otro destinatario" - "Vigila mi bandeja de entrada por nuevos correos" ## Before you install - Requiere el binario `gws` y haber leído ../gws-shared/SKILL.md para autenticación, flags globales y reglas de seguridad. ## Files - SKILL.md — 2 KB ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # gmail (v1) > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. ```bash gws gmail [flags] ``` ## Helper Commands | Command | Description | |---------|-------------| | [`+send`](../gws-gmail-send/SKILL.md) | Send an email | | [`+triage`](../gws-gmail-triage/SKILL.md) | Show unread inbox summary (sender, subject, date) | | [`+reply`](../gws-gmail-reply/SKILL.md) | Reply to a message (handles threading automatically) | | [`+reply-all`](../gws-gmail-reply-all/SKILL.md) | Reply-all to a message (handles threading automatically) | | [`+forward`](../gws-gmail-forward/SKILL.md) | Forward a message to new recipients | | [`+read`](../gws-gmail-read/SKILL.md) | Read a message and extract its body or headers | | [`+watch`](../gws-gmail-watch/SKILL.md) | Watch for new emails and stream them as NDJSON | ## API Resources ### users - `getProfile` — Gets the current user's Gmail profile. - `stop` — Stop receiving push notifications for the given user mailbox. - `watch` — Set up or update a push notification watch on the given user mailbox. - `drafts` — Operations on the 'drafts' resource - `history` — Operations on the 'history' resource - `labels` — Operations on the 'labels' resource - `messages` — Operations on the 'messages' resource - `settings` — Operations on the 'settings' resource - `threads` — Operations on the 'threads' resource ## Discovering Commands Before calling any API method, inspect it: ```bash # Browse resources and methods gws gmail --help # Inspect a method's required params, types, and defaults gws schema gmail.. ``` Use `gws schema` output to build your `--params` and `--json` flags. --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/gws-gmail