Custom Command Guide
How to design and operate team-specific slash commands.
Key takeaways
- Custom slash commands follow the shape
/<custom-command> [arguments]and are designed per team. - Keep the command name short and purpose-revealing so its intent is obvious at a glance.
- Document each command's input, output, and side effects.
- Pair any security-sensitive command with an explicit
/permissionspolicy.
Original Shape
/<custom-command> [arguments]Design Points
- Keep the command name short and purpose-revealing.
- Document input, output, and side effects.
- Pair security-sensitive commands with an explicit
/permissionspolicy.