Discord Operations
Use HybridClaw's message tool for Discord work. This skill is for actions, not long-form catchups.
Use Cases
- read recent channel traffic before replying
- send or edit a message in a specific channel
- react with a status emoji
- pin or unpin an important message
- create or reply inside a thread
- inspect channel or member information
Working Rules
- Prefer explicit numeric
guildId, channelId, messageId, and userId values.
- If the user gives a channel name, include
guildId so the tool can resolve it safely.
- Read first, act second.
- Alert and webhook messages (Monit, CI, deploy bots) usually have an empty
content and carry their payload in embeds. read returns an embeds array per message (title, description, url, timestamp, author.name, footer.text, and fields[].name/fields[].value) — check it before concluding a message is empty. It is capped at 5 embeds per message and 10 fields per embed.
- Keep outbound Discord copy short and conversational.
- Do not use markdown tables in Discord messages.
- Confirm before deleting, mass-posting, or editing a message that materially changes meaning.
Common Patterns
Read recent messages:
{"action":"read","channelId":"1234567890","guildId":"9876543210","limit":20}
Send a message:
{"action":"send","channelId":"1234567890","guildId":"9876543210","content":"Status update: the migration finished cleanly."}
React to a message:
{"action":"react","channelId":"1234567890","guildId":"9876543210","messageId":"112233445566","emoji":"white_check_mark"}
Pin a message:
{"action":"pin","channelId":"1234567890","guildId":"9876543210","messageId":"112233445566"}
Create a thread from a message:
{"action":"thread-create","channelId":"1234567890","guildId":"9876543210","messageId":"112233445566","name":"Release follow-up"}
Reply in a thread:
{"action":"thread-reply","channelId":"1234567890","guildId":"9876543210","messageId":"998877665544","content":"I checked the logs and the alert is resolved."}
Decision Rules
- If the user wants a summary of channel activity, use
channel-catchup.
- If the user wants to quote or answer a specific message, read the surrounding context first.
- If the user asks to notify a team broadly, draft the message and confirm before sending.
- For user mentions, prefer known Discord IDs over guessing display names.
1---2name: discord3description: Read, send, react to, edit, pin, and thread Discord messages with HybridClaw's `message` tool.4---5# Discord Operations67Use HybridClaw's `message` tool for Discord work. This skill is for actions, not long-form catchups.89## Use Cases1011- read recent channel traffic before replying12- send or edit a message in a specific channel13- react with a status emoji14- pin or unpin an important message15- create or reply inside a thread16- inspect channel or member information1718## Working Rules1920- Prefer explicit numeric `guildId`, `channelId`, `messageId`, and `userId` values.21- If the user gives a channel name, include `guildId` so the tool can resolve it safely.22- Read first, act second.23- Alert and webhook messages (Monit, CI, deploy bots) usually have an empty `content` and carry their payload in `embeds`. `read` returns an `embeds` array per message (`title`, `description`, `url`, `timestamp`, `author.name`, `footer.text`, and `fields[].name`/`fields[].value`) — check it before concluding a message is empty. It is capped at 5 embeds per message and 10 fields per embed.24- Keep outbound Discord copy short and conversational.25- Do not use markdown tables in Discord messages.26- Confirm before deleting, mass-posting, or editing a message that materially changes meaning.2728## Common Patterns2930Read recent messages:3132```json33{"action":"read","channelId":"1234567890","guildId":"9876543210","limit":20}34```3536Send a message:3738```json39{"action":"send","channelId":"1234567890","guildId":"9876543210","content":"Status update: the migration finished cleanly."}40```4142React to a message:4344```json45{"action":"react","channelId":"1234567890","guildId":"9876543210","messageId":"112233445566","emoji":"white_check_mark"}46```4748Pin a message:4950```json51{"action":"pin","channelId":"1234567890","guildId":"9876543210","messageId":"112233445566"}52```5354Create a thread from a message:5556```json57{"action":"thread-create","channelId":"1234567890","guildId":"9876543210","messageId":"112233445566","name":"Release follow-up"}58```5960Reply in a thread:6162```json63{"action":"thread-reply","channelId":"1234567890","guildId":"9876543210","messageId":"998877665544","content":"I checked the logs and the alert is resolved."}64```6566## Decision Rules6768- If the user wants a summary of channel activity, use `channel-catchup`.69- If the user wants to quote or answer a specific message, read the surrounding context first.70- If the user asks to notify a team broadly, draft the message and confirm before sending.71- For user mentions, prefer known Discord IDs over guessing display names.