How to install discord
npx skills add https://github.com/steipete/clawdis --skill discordFull instructions (SKILL.md)
Source of truth, from steipete/clawdis.
name: discord description: "Discord message-tool ops: send/read/edit/delete, react, poll, pin, thread, search, presence, media/components." metadata: { "openclaw": { "emoji": "๐ฎ", "requires": { "config": ["channels.discord.token"] } } } allowed-tools: ["message"]
Discord
Use the message tool with channel: "discord". No separate Discord tool.
Rules
- Respect
channels.discord.actions.*gates. - Prefer explicit
guildId,channelId,messageId,userId. - Multi-account: pass
accountIdwhen needed. - Send targets:
to: "channel:<id>"orto: "user:<id>". - Mention users as
<@USER_ID>. - Avoid Markdown tables in outbound Discord messages.
- Prefer components v2 for rich UI; do not mix v2
componentswith legacyembeds.
Common actions
Send:
{ "action": "send", "channel": "discord", "to": "channel:123", "message": "hello", "silent": true }
Send media:
{
"action": "send",
"channel": "discord",
"to": "channel:123",
"message": "see attachment",
"media": "file:///tmp/example.png"
}
Components v2:
{
"action": "send",
"channel": "discord",
"to": "channel:123",
"message": "Status",
"components": "[Carbon v2 components]"
}
React:
{ "action": "react", "channel": "discord", "channelId": "123", "messageId": "456", "emoji": "๐" }
Read:
{ "action": "read", "channel": "discord", "to": "channel:123", "limit": 20 }
Edit/delete:
{
"action": "edit",
"channel": "discord",
"channelId": "123",
"messageId": "456",
"message": "fixed typo"
}
{ "action": "delete", "channel": "discord", "channelId": "123", "messageId": "456" }
Poll:
{
"action": "poll",
"channel": "discord",
"to": "channel:123",
"pollQuestion": "Lunch?",
"pollOption": ["Pizza", "Sushi"],
"pollDurationHours": 24
}
Pin:
{ "action": "pin", "channel": "discord", "channelId": "123", "messageId": "456" }
Thread:
{
"action": "thread-create",
"channel": "discord",
"channelId": "123",
"messageId": "456",
"threadName": "bug triage"
}
Search:
{
"action": "search",
"channel": "discord",
"guildId": "999",
"query": "release notes",
"channelIds": ["123"],
"limit": 10
}
Presence, often gated:
{
"action": "set-presence",
"channel": "discord",
"activityType": "playing",
"activityName": "OpenClaw",
"status": "online"
}
Related skills
More from steipete/clawdis and the wider catalog.
summarize
Fast CLI to summarize or transcribe URLs, videos, podcasts, articles, PDFs, and local files.
weather
Current weather and forecasts with web_fetch, falling back to wttr.in curl for locations, rain, temperature, travel planning.
tmux
Control tmux sessions/panes for interactive CLIs: list, capture output, send keys, paste text, monitor prompts.
gog
Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
nano-pdf
Edit PDFs with natural-language instructions using the nano-pdf CLI.
openai-whisper
Local speech-to-text with the Whisper CLI (no API key).