---
name: Google Chat Send Message
slug: google-chat-send-message
category: Automation
description: Google Chat Send Message posts a plain-text message to a specified Google Chat space via the gws CLI. Use it when an agent needs to notify a team or log a message in Chat.
github: "https://github.com/googleworkspace/cli/tree/main/skills/gws-chat-send"
language: Rust
stars: 30380
forks: 1779
install: "npx degit https://github.com/googleworkspace/cli/tree/main/skills/gws-chat-send ~/.claude/skills/gws-chat-send"
installs_to: ~/.claude/skills/gws-chat-send
source_path: skills/gws-chat-send/SKILL.md
collection_size: 25
category_size: 1523
collection_url: "https://dirskills.com/collections/googleworkspace/cli"
added: 2026-08-14T07:11:35.043Z
last_synced: 2026-08-14T07:11:35.043Z
canonical_url: "https://dirskills.com/skills/google-chat-send-message"
---

# Google Chat Send Message

Google Chat Send Message posts a plain-text message to a specified Google Chat space via the gws CLI. Use it when an agent needs to notify a team or log a message in Chat.

**Install:**

```bash
npx degit https://github.com/googleworkspace/cli/tree/main/skills/gws-chat-send ~/.claude/skills/gws-chat-send
```

## README

# 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 <NAME> --text <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
