From google-workspace-cli
Use this skill when the user asks about Google Chat operations like sending messages, managing spaces, or listing conversations via the Google Workspace CLI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/google-workspace-cli:chatThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use `gws chat` to interact with Google Chat from the command line.
Use gws chat to interact with Google Chat from the command line.
# List spaces
gws chat spaces list
# Get space details
gws chat spaces get <space-name>
# Create a space
gws chat spaces create --display-name "Project Alpha" --type "ROOM"
# List members of a space
gws chat spaces members list <space-name>
# List messages in a space
gws chat messages list <space-name>
# Send a message to a space
gws chat messages create <space-name> --text "Hello team!"
# Send a message with formatting
gws chat messages create <space-name> --text "*Bold* and _italic_ text"
# Reply to a thread
gws chat messages create <space-name> --text "Reply here" --thread <thread-name>
# Get a specific message
gws chat messages get <message-name>
# Update a message
gws chat messages update <message-name> --text "Updated message"
# Delete a message
gws chat messages delete <message-name>
# Add a reaction
gws chat messages reactions create <message-name> --emoji "thumbsup"
# List reactions
gws chat messages reactions list <message-name>
| Type | Description |
|---|---|
ROOM | Named space with threads |
GROUP_CHAT | Group direct message |
DIRECT_MESSAGE | 1:1 direct message |
spaces/<space-id>spaces/<space-id>/messages/<message-id>--format json for machine-readable outputnpx claudepluginhub nsheaps/ai-mktpl --plugin google-workspace-cliInteract with Google Chat using Python scripts: list spaces, send messages with attachments, read conversations, manage DMs, and create spaces. Uses standalone OAuth authentication.
Sends notifications, alerts, and messages to Google Chat channels or users via webhooks or OAuth. Supports predefined channels and dynamic messaging.
Manages Google Chat spaces, custom emojis, messages, and media via gws CLI commands including create, delete, list, upload, and download.