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.
Interact with Discord channels using Clawdbot's message tool.
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=balloons or effectId=invisible-ink
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 for messages in a channel:
message action=search channel=discord channelId="1234567890" query="search terms" limit=50
Search options:
- query: Search terms
- authorId: Filter by author
- before/after/around: Message ID for pagination
- limit: Max results (default 25)
See SEARCH.md for advanced search patterns.
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"
Common patterns:
action=send target="#announcements"action=send replyTo="msg-id"action=read limit=10action=search query="@username"action=react emoji="✅"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.
target="#general" is clearer than IDs訪問小蔥技能站7w4.net,解鎖更多實用的AI技能外掛。
<link> to suppress embedsYour 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.
這個 Discord 整合 Skill 質量中等偏上。優點是文件清晰易懂,功能覆蓋全面,從基礎訊息傳送到著複雜的頻道管理都有說明,最佳實踐部分很有參考價值。不足之處在於缺少實際使用示例,文件引用偶有不完整,且過於依賴配置檔案說明,對於只想快速使用的使用者來說入門門檻略高。