What problem does it solve? Building a Discord bot involves many pitfalls: privileged gateway intents, rate-limited command registration, event loop blocking, and token security. This Skill provides proven patterns and anti-patterns so you avoid common mistakes that cause disconnections, rate limits, or security issues. ## Core Features & Use Cases - Discord.js v14 Foundation: Set up a JavaScript bot with minimal gateway intents, dynamic command and event loading, and slash command handlers. - Pycord Foundation: Build a Python bot with async slash commands, command options, and cog-based extension loading. - Interactive Components: Add buttons, select menus, and modals with collectors for rich user interactions. - Use Case: You need a moderation bot for your community server. Use the Pycord foundation to scaffold the bot, add slash commands for moderation actions, and attach confirmation buttons so moderators verify actions before they execute. ## Quick Start Ask the agent to scaffold a Discord bot with slash commands using Discord.js or Pycord and include a ping command with latency reporting.