discord

discord is a skill for Claude Code, Codex from intentic/intentic. It costs 59 tokens per session (1,061 once invoked), scanned B, original, MIT.

A connection for reading and managing messages, channels, servers, and reactions in Discord, a chat service for communities and teams.

In plain words
What is it for?
It is for listing channels and servers, reading messages, sending or replying to messages, adding reactions, and helping connect a bot to a server.
Why use it?
It lets the agent handle Discord tasks through the service’s interface instead of requiring the user to do each action manually.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It is for listing channels and servers, reading messages, sending or replying to messages, adding reactions, and helping connect a bot to a server.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/intentic/intentic/discord
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add intentic/intentic --skill discord
Clone the repo
git clone --depth 1 https://github.com/intentic/intentic

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for discord

README.md
[![agentmods](https://agentmods.dev/badge/skills/intentic/intentic/discord.svg)](https://agentmods.dev/skills/intentic/intentic/discord)
Your own site
<a href="https://agentmods.dev/skills/intentic/intentic/discord"><img src="https://agentmods.dev/badge/skills/intentic/intentic/discord.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,061 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00059 $0.01061
Opus 5 $0.00030 $0.00531
Sonnet 5 $0.00012 $0.00212
Haiku 4.5 $0.00006 $0.00106

Measured today against content hash 7bb5dd389585, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade B, and why

discord scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

`curl -s -X POST -H "Authorization: Bot $DISCORD_BOT_TOKEN" -H "Content-Type: application/json" -d '{"content":"hello"}' https://discord.com/api/v10/channels/<CHANNEL_ID>/messages`

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Authenticated with a bot token in `$DISCORD_BOT_TOKEN`. Talk to Discord's REST API with `curl`.
_extensions/discord/skills/discord/SKILL.md · 55 lines

How it starts

The opening of the file, as written. The whole thing — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Discord (connected)

Authenticated with a bot token in $DISCORD_BOT_TOKEN. Talk to Discord's REST API with curl. Base URL: https://discord.com/api/v10, Auth header: -H "Authorization: Bot $DISCORD_BOT_TOKEN".

Setup & invite (do this when the bot isn't in the user's server yet)

Discord only lets a server admin add a bot via an OAuth consent link: generate that link for them:

  1. Confirm the token works and get the bot user: curl -s -H "Authorization: Bot $DISCORD_BOT_TOKEN" https://discord.com/api/v10/users/@me | jq '{id, username}'
  2. Get the application id (needed for the invite URL): curl -s -H "Authorization: Bot $DISCORD_BOT_TOKEN" https://discord.com/api/v10/oauth2/applications/@me | jq '{id, name}'
  3. Give the user this invite link (they open it, pick their server, approve): https://discord.com/oauth2/authorize?client_id=<APP_ID>&scope=bot&permissions=1117248 Permissions 1117248 = View Channels + Send Messages + Read Message History + Add Reactions + Connect (read/list/react/send + join voice channels to transcribe).
  4. Tell them: in the Developer Portal → your app → Bot, enable the Message Content privileged intent (required to read message text; it can't be toggled via the API). Reading needs it; posting does not. Then confirm it landed: curl -s -H "Authorization: Bot $DISCORD_BOT_TOKEN" https://discord.com/api/v10/users/@me/guilds | jq '.[] | {id, name}'

Common commands

  • List the bot's servers: curl -s -H "Authorization: Bot $DISCORD_BOT_TOKEN" https://discord.com/api/v10/users/@me/guilds | jq '.[] | {id, name}'
  • List channels in a server: curl -s -H "Authorization: Bot $DISCORD_BOT_TOKEN" https://discord.com/api/v10/guilds/<GUILD_ID>/channels | jq '.[] | {id, name, type}'
  • Read recent messages: curl -s -H "Authorization: Bot $DISCORD_BOT_TOKEN" "https://discord.com/api/v10/channels/<CHANNEL_ID>/messages?limit=20" | jq '.[] | {id, author: .author.username, content}'
  • React to a message (URL-encode the emoji; unicode 👍 = %F0%9F%91%8D): curl -s -X PUT -H "Authorization: Bot $DISCORD_BOT_TOKEN" "https://discord.com/api/v10/channels/<CHANNEL_ID>/messages/<MESSAGE_ID>/reactions/%F0%9F%91%8D/@me"
  • Send a message: curl -s -X POST -H "Authorization: Bot $DISCORD_BOT_TOKEN" -H "Content-Type: application/json" -d '{"content":"hello"}' https://discord.com/api/v10/channels/<CHANNEL_ID>/messages

Read the full file on GitHub · 55 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today First seen · 55 lines · 59 tokens per session scan B 7bb5dd389585

Subscribe to this mod's changes

discord is a skill published in the GitHub repository intentic/intentic (32 stars, last pushed today), licensed MIT. It adds 59 tokens to every session and 1,061 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-06.

Related

Other skills, from other repositories

cursor-delegate

Delegate bounded light-to-medium implementation, investigation, documentation, configuration, testing, and tooling work to Cursor Bridge after the primary agent owns direction and risk boundaries. Also use when the user explicitly asks to create, keep, continue, inspect, or close the same Cursor execution session…

Vanyangyang/cursor-bridge · 151 tokens

workshop-facilitation

Facilitate workshop sessions in a one-step, multi-turn flow. Use when an interactive skill needs consistent pacing, options, and progress tracking.

getcrew44/crew44 · 36 tokens

ponytail-gain

Show ponytail's measured impact as a compact scoreboard: less code, less cost, more speed, from the benchmark medians. One-shot display, not a persistent mode, and not a per-repo number. Trigger: /ponytail-gain, "ponytail gain", "what does ponytail save", "show ponytail impact", "ponytail scoreboard".

dmae97/omk · 83 tokens

opencode-export

Export opencode sessions to self-contained HTML + JSON archives for sharing, review, or backup. Use when the user wants to save, archive, or share their AI coding session history.

ZelinZhou-THU/opencode-export · 41 tokens

product-analytics

Product analytics and growth expert. Use when designing event tracking, defining metrics, running A/B tests, or analyzing retention. Covers AARRR framework, funnel analysis, cohort analysis, and experimentation.

majiayu000/spellbook · 43 tokens

rust-project

Modern Rust project architecture guide for 2025. Use when creating Rust projects (CLI, web services, libraries). Covers workspace structure, error handling, async patterns, and idiomatic Rust best practices.

majiayu000/spellbook · 43 tokens