From feb340beba476991d41ed4350bb1d1d61d368dbb Mon Sep 17 00:00:00 2001 From: Timmy Date: Thu, 26 Mar 2026 11:07:33 +0000 Subject: [PATCH] storkit: create 404_bug_whatsapp_and_slack_missing_assign_command_handler --- ...nd_slack_missing_assign_command_handler.md | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .storkit/work/1_backlog/404_bug_whatsapp_and_slack_missing_assign_command_handler.md diff --git a/.storkit/work/1_backlog/404_bug_whatsapp_and_slack_missing_assign_command_handler.md b/.storkit/work/1_backlog/404_bug_whatsapp_and_slack_missing_assign_command_handler.md new file mode 100644 index 00000000..8d14f6b7 --- /dev/null +++ b/.storkit/work/1_backlog/404_bug_whatsapp_and_slack_missing_assign_command_handler.md @@ -0,0 +1,26 @@ +--- +name: "WhatsApp and Slack missing assign command handler" +--- + +# Bug 404: WhatsApp and Slack missing assign command handler + +## Description + +The assign command has a fallback handler in chat/commands/mod.rs that returns None. Only Matrix has pre-dispatch handling for this command. On WhatsApp and Slack, the command falls through to the LLM path. + +## How to Reproduce + +1. Configure bot with transport = "whatsapp" or "slack"\n2. Send "assign " to the bot\n3. Check server logs + +## Actual Result + +Command falls through to LLM instead of assigning the agent. + +## Expected Result + +The bot assigns the specified agent to the story and replies with confirmation. + +## Acceptance Criteria + +- [ ] WhatsApp transport handles assign command: assigns agent and replies with confirmation +- [ ] Slack transport handles assign command: assigns agent and replies with confirmation