Help us improve
Share bugs, ideas, or general feedback.
From agentio
Use when interacting with Google Chat - send messages, list messages, or get message details. Requires agentio CLI with a configured Google Chat profile (webhook or OAuth).
npx claudepluginhub plosson/agentio --plugin agentioHow this skill is triggered — by the user, by Claude, or both
Slash command
/agentio:agentio-gchatThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use `agentio gchat` commands to interact with Google Chat. Multiple profiles can be configured - the default profile is used unless you specify `--profile <name>`.
Sends text, rich cards (cardsV2), and threaded replies to Google Chat via webhooks. Includes TypeScript utilities for sending and card building.
Manages Google Chat spaces, custom emojis, messages, and media via gws CLI commands including create, delete, list, upload, and download.
Interacts with Channel Talk workspaces via TypeScript CLI: send messages to user chats/groups, read chats, manage groups/bots using API credentials. For support automation and CI/CD.
Share bugs, ideas, or general feedback.
Use agentio gchat commands to interact with Google Chat. Multiple profiles can be configured - the default profile is used unless you specify --profile <name>.
Profiles can be either:
agentio gchat send <message> [options]
Or pipe via stdin:
echo "Message content" | agentio gchat send
Options:
--profile <name>: Use specific profile--space <id>: Space ID (required for OAuth profiles)--thread <id>: Thread ID to reply to (optional)--json [file]: Send rich message from JSON file (or stdin)agentio gchat list --space <id> [--limit N]
Options:
--space <id>: Space ID (required)--limit <n>: Number of messages (default: 10)agentio gchat get <message-id> --space <id>
Simple message (webhook):
agentio gchat send "Deployment complete"
Message to specific space (OAuth):
agentio gchat send "Status update" --space spaces/AAAA1234
Rich message with JSON:
agentio gchat send --json message.json
Or via stdin:
cat <<EOF | agentio gchat send --json
{
"text": "Build status",
"cards": [{"header": {"title": "CI/CD"}}]
}
EOF