discord

Send Discord messages via direct API. Use when: (1) Cross-channel messaging (Telegram→Discord, Slack→Discord) (2) OpenClaw native gives "Cross-context messaging denied" Uses $DISCORD_BOT_TOKEN - no Composio needed.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "discord" with this command: npx skills add prashaantr/teach-claude-something-new/prashaantr-teach-claude-something-new-discord

Discord Direct API

Native OpenClaw Discord is session-bound. For cross-channel, use direct API.

Send Message

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

Get Channel ID

curl "https://discord.com/api/v10/guilds/$GUILD_ID/channels" \
  -H "Authorization: Bot $DISCORD_BOT_TOKEN" | jq '.[] | {id, name}'

Get User ID

curl "https://discord.com/api/v10/guilds/$GUILD_ID/members?limit=100" \
  -H "Authorization: Bot $DISCORD_BOT_TOKEN" | jq '.[] | {id: .user.id, name: .user.username}'

Mentions

<@USER_ID> = notified. @Name = ignored.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

composio-linear

No summary provided by upstream source.

Repository SourceNeeds Review
General

composio-drive

No summary provided by upstream source.

Repository SourceNeeds Review
General

composio-exa

No summary provided by upstream source.

Repository SourceNeeds Review
General

composio-calendar

No summary provided by upstream source.

Repository SourceNeeds Review