Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Send a plain text message to a Google Chat space using 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-chat-send3description: "Google Chat: Send a message to a space."4metadata:5version: 0.22.56openclaw:7category: "productivity"8requires:9bins:10- gws11cliHelp: "gws chat +send --help"12---1314# chat +send1516> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.1718Send a message to a space1920## Usage2122```bash23gws chat +send --space <NAME> --text <TEXT>24```2526## Flags2728| Flag | Required | Default | Description |29|------|----------|---------|-------------|30| `--space` | ✓ | — | Space name (e.g. spaces/AAAA...) |31| `--text` | ✓ | — | Message text (plain text) |3233## Examples3435```bash36gws chat +send --space spaces/AAAAxxxx --text 'Hello team!'37```3839## Tips4041- Use 'gws chat spaces list' to find space names.42- For cards or threaded replies, use the raw API instead.4344> [!CAUTION]45> This is a **write** command — confirm with the user before executing.4647## See Also4849- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth50- [gws-chat](../gws-chat/SKILL.md) — All manage chat spaces and messages commands51