askill
managing-discord

managing-discordSafety 90Repository

Manages Discord servers/channels via REST API. Supports channel CRUD, permissions, messaging, and webhooks. Use for "Discord", "디스코드", "채널 관리", "discord bot" requests.

10 stars
1.2k downloads
Updated 3/10/2026

Package Files

Loading files...
SKILL.md

Discord Management

Discord server/channel management via REST API.

Prerequisites

export DISCORD_BOT_TOKEN="xxx"
export DISCORD_GUILD_ID="xxx"

Quick Reference

Get Channels

curl -H "Authorization: Bot $DISCORD_BOT_TOKEN" \
  "https://discord.com/api/v10/guilds/$DISCORD_GUILD_ID/channels"

Create Channel

curl -X POST -H "Authorization: Bot $DISCORD_BOT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name": "new-channel", "type": 0}' \
  "https://discord.com/api/v10/guilds/$DISCORD_GUILD_ID/channels"

Send Message

curl -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"

Create Webhook

curl -X POST -H "Authorization: Bot $DISCORD_BOT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name": "My Webhook"}' \
  "https://discord.com/api/v10/channels/$CHANNEL_ID/webhooks"

Channel Types

TypeValueDescription
Text0Regular text channel
Voice2Voice channel
Category4Channel category
Announcement5News channel
Forum15Forum channel

Permissions

Common permission bits:

  • VIEW_CHANNEL: 1024
  • SEND_MESSAGES: 2048
  • MANAGE_CHANNELS: 16

Rate Limits

  • 50 requests/second per bot
  • Use X-RateLimit-* headers to track

See references/api-endpoints.md for full API reference.

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

78/100Analyzed 3/16/2026

Well-structured Discord management skill with practical curl commands, clear trigger keywords, and organized sections. Provides useful reference tables for channel types and permissions. Slightly deducts for relying on external reference file and missing some advanced operations. Overall good technical reference skill.

90
85
75
70
80

Metadata

Licenseunknown
Version-
Updated3/10/2026
Publisherjiunbae

Tags

api