discord
Discord message-tool ops: send/read/edit/delete, react, poll, pin, thread, search, presence, media/components.
npx skills add Health-Yang/MineEcho --skill discord --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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 `accountId` when needed. - Send targets: `to: "channel:<id>"` or `to: "user:<id>"`. - Mention users as `<@USER_ID>`. - Avoid Markdown tables in outbound Discord messages. - Prefer components v2 for rich UI; do not mix v2 `components` with legacy `embeds`. ## Common actions Send: ```json { "action": "send", "channel": "discord", "to": "channel:123", "message": "hello", "silent": true } ``` Send media: ```json { "action": "send", "channel": "discord", "to": "channel:123", "message": "see attachment", "media": "file:///tmp/example.png" } ``` Components v2: ```json { "action": "send", "channel": "discord", "to": "channel:123", "message": "Status", "components": "[Carbon v2 components]" } ``` React: ```json { "action": "react", "channel": "discord", "channelId": "123", "messageId": "456", "emoji": "👍" } ``` Read: ```json { "action": "read", "channel": "discord", "to": "channel:123", "limit": 20 } ``` Edit/delete: ```json { "action": "edit", "channel": "discord",
- Rules
- Common actions
What does the discord skill do?
Discord message-tool ops: send/read/edit/delete, react, poll, pin, thread, search, presence, media/components.
How do I install it?
Run `npx skills add Health-Yang/MineEcho --skill discord --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From Health-Yang/MineEcho, a repository with 248 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
