# Gws Chat Send > Google Chat: Send a message to a space. Source: https://skillsagentes.com/skills/googleworkspace/cli/gws-chat-send Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 10 tok installed, 288 tok once triggered, 288 tok with every bundled file Bundle: 1 file, 1 KB Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill gws-chat-send --agent claude-code ``` ## What it does - Envía un mensaje de texto plano a un space de Google Chat usando el comando `gws chat +send --space --text ` ## Use it when - Cuando se necesita enviar un mensaje a un space existente de Google Chat - Cuando ya se conoce el nombre del space (formato spaces/AAAA...) ## Don't bother when - Para enviar tarjetas (cards) o respuestas en hilo, donde se debe usar la API cruda en su lugar ## What triggers it - "Envía 'Hello team!' al space spaces/AAAAxxxx" - "Manda un mensaje de chat al space del equipo" ## Before you install - Requiere el binario `gws` y haber leído gws-shared/SKILL.md para auth, flags globales y reglas de seguridad; es un comando de escritura que debe confirmarse con el usuario antes de ejecutar. ## 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. # chat +send > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. Send a message to a space ## Usage ```bash gws chat +send --space --text ``` ## Flags | Flag | Required | Default | Description | |------|----------|---------|-------------| | `--space` | ✓ | — | Space name (e.g. spaces/AAAA...) | | `--text` | ✓ | — | Message text (plain text) | ## Examples ```bash gws chat +send --space spaces/AAAAxxxx --text 'Hello team!' ``` ## Tips - Use 'gws chat spaces list' to find space names. - For cards or threaded replies, use the raw API instead. > [!CAUTION] > This is a **write** command — confirm with the user before executing. ## See Also - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth - [gws-chat](../gws-chat/SKILL.md) — All manage chat spaces and messages commands --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/gws-chat-send