create-discord-command
Installation
SKILL.md
Create Discord Command
Create one command module that exports command and matches the repository type pattern.
Workflow
- Confirm requested command shape.
- Determine command name, description, options/subcommands, and response style (ephemeral/public).
- Choose command file location.
- Use
src/commands/<name>.tsfor a simple command. - Use
src/commands/<group>/index.tsfor grouped or complex command sets. - For complex implementations, prefer barrel-file organization by default: create a dedicated subdirectory and place the command in
index.ts.
- Implement typed command module.