What problem does it solve? Adding a new command or event handler to a Slack bot requires touching multiple files—controller methods, regex configuration, and listener registration—and missing any one of them silently breaks the feature. This Skill codifies the exact three-step wiring pattern so new Slack commands work correctly on the first attempt. ## Core Features & Use Cases - Controller Handler Pattern: Guides creation of handler methods with the @SlackAuth decorator, constructor binding, error handling, and structured logging. - Regex & Listener Wiring: Covers registering command patterns in slackConfig.ts and wiring message or action listeners in app.ts. - Argument Parsing & Block Kit UI: Provides conventions for parsing command flags and building rich Slack responses with overflow menus and buttons. - Use Case: When you need to add a ".remind" command to the slack-bot project, follow this Skill to add the authenticated controller method, register the regex pattern, and wire the listener without missing a step. ## Quick Start Add a new Slack command called ".remind" to the slack-bot project following the three-step wiring pattern.