56★by bowenqt
discord-chat – OpenClaw Skill
discord-chat is an OpenClaw Skills integration for communication workflows. Send messages, reply to messages, and search message history in Discord channels using the message tool. Use when the user wants to communicate with Discord (send/reply/search messages), check Discord activity, or interact with Discord channels.
Skill Snapshot
| name | discord-chat |
| description | Send messages, reply to messages, and search message history in Discord channels using the message tool. Use when the user wants to communicate with Discord (send/reply/search messages), check Discord activity, or interact with Discord channels. OpenClaw Skills integration. |
| owner | bowenqt |
| repository | bowenqt/discord-chat |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @bowenqt/discord-chat |
| last updated | Feb 7, 2026 |
Maintainer

name: discord-chat description: Send messages, reply to messages, and search message history in Discord channels using the message tool. Use when the user wants to communicate with Discord (send/reply/search messages), check Discord activity, or interact with Discord channels.
Discord Chat
Interact with Discord channels using Clawdbot's message tool.
Core Actions
Send Messages
Send a message to a Discord channel:
message action=send channel=discord target="#channel-name" message="Your message here"
Or by channel ID:
message action=send channel=discord target="1234567890" message="Your message here"
Tips:
- Use channel names with
#prefix or channel IDs - For multiple links, wrap in
<>to suppress embeds:<https://example.com> - No markdown tables! Use bullet lists instead
- Support effects with
effect=balloonsoreffectId=invisible-ink
Reply to Messages
Reply to a specific message:
message action=send channel=discord target="#channel-name" message="Reply text" replyTo="message-id"
The replyTo parameter creates a threaded reply to the specified message ID.
Search Messages
Search for messages in a channel:
message action=search channel=discord channelId="1234567890" query="search terms" limit=50
Search options:
query: Search termsauthorId: Filter by authorbefore/after/around: Message ID for paginationlimit: Max results (default 25)
See SEARCH.md for advanced search patterns.
Other Actions
Read messages:
message action=read channel=discord target="#channel-name" limit=20
React to messages:
message action=react channel=discord messageId="1234567890" emoji="👍"
Edit messages:
message action=edit channel=discord messageId="1234567890" message="Updated text"
Delete messages:
message action=delete channel=discord messageId="1234567890"
Quick Reference
Common patterns:
- Announce to channel:
action=send target="#announcements" - Reply in thread:
action=send replyTo="msg-id" - Recent activity:
action=read limit=10 - Find mentions:
action=search query="@username" - Acknowledge:
action=react emoji="✅"
Channel Management
List channels:
message action=channel-list channel=discord guildId="server-id"
Get channel info:
message action=channel-info channel=discord channelId="1234567890"
For creating/editing channels, see CHANNELS.md.
Best Practices
- Use target names when possible -
target="#general"is clearer than IDs - Batch reactions - One emoji per message, pick the best fit
- Format for Discord - Bullets not tables,
<link>to suppress embeds - Search before asking - Check history before requesting info
- React > Reply - Use reactions for simple acknowledgments
Configuration
Your Discord bot configuration should be in the gateway config. The message tool routes to the configured Discord plugin automatically when channel=discord is specified.
For setup help, see CONFIG.md.
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
Configuration
Your Discord bot configuration should be in the gateway config. The `message` tool routes to the configured Discord plugin automatically when `channel=discord` is specified. For setup help, see [CONFIG.md](references/CONFIG.md).
FAQ
How do I install discord-chat?
Run openclaw add @bowenqt/discord-chat in your terminal. This installs discord-chat into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/bowenqt/discord-chat. Review commits and README documentation before installing.
