Agent skill

discord

Discord ops via the message tool (channel=discord).

SafeAI-Lab-Xgithub.com/SafeAI-Lab-XGitHub ↗
claude-coderead-only
Install
npx skills add SafeAI-Lab-X/ClawKeeper --skill discord --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Allowed tools: message
Path: legacy/clawkeeper-watcher/skills/discord/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,027
Language: TypeScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Discord (Via `message`) Use the `message` tool. No provider-specific `discord` tool exposed to the agent. ## Musts - Always: `channel: "discord"`. - Respect gating: `channels.discord.actions.*` (some default off: `roles`, `moderation`, `presence`, `channels`). - Prefer explicit ids: `guildId`, `channelId`, `messageId`, `userId`. - Multi-account: optional `accountId`. ## Guidelines - Avoid Markdown tables in outbound Discord messages. - Mention users as `<@USER_ID>`. - Prefer Discord components v2 (`components`) for rich UI; use legacy `embeds` only when you must. ## Targets - Send-like actions: `to: "channel:<id>"` or `to: "user:<id>"`. - Message-specific actions: `channelId: "<id>"` (or `to`) + `messageId: "<id>"`. ## Common Actions (Examples) Send message: ```json { "action": "send", "channel": "discord", "to": "channel:123", "message": "hello", "silent": true } ``` Send with media: ```json { "action": "send", "channel": "discord", "to": "channel:123", "message": "see attachment", "media": "file:///tmp/example.png" } ``` - Optional `silent: true` to suppress Discord notifications. Send with components v2 (recommended for rich UI): ```json { "action": "send", "channel": "discord

What's inside
Steps it walks through
  1. Musts
  2. Guidelines
  3. Targets
  4. Common Actions (Examples)
  5. Writing Style (Discord)
More from ClawKeeper
All skills →
About this skill
What does the discord skill do?

Discord ops via the message tool (channel=discord).

How do I install it?

Run `npx skills add SafeAI-Lab-X/ClawKeeper --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 SafeAI-Lab-X/ClawKeeper, a repository with 1,027 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.

Keep going