diff --git a/.storkit/work/1_backlog/403_bug_whatsapp_and_slack_missing_rmtree_command_handler.md b/.storkit/work/1_backlog/403_bug_whatsapp_and_slack_missing_rmtree_command_handler.md new file mode 100644 index 00000000..5a8e262a --- /dev/null +++ b/.storkit/work/1_backlog/403_bug_whatsapp_and_slack_missing_rmtree_command_handler.md @@ -0,0 +1,26 @@ +--- +name: "WhatsApp and Slack missing rmtree command handler" +--- + +# Bug 403: WhatsApp and Slack missing rmtree command handler + +## Description + +The rmtree 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 "rmtree " to the bot\n3. Check server logs + +## Actual Result + +Command falls through to LLM instead of removing the worktree. + +## Expected Result + +The bot removes the worktree for the specified story and replies with confirmation. + +## Acceptance Criteria + +- [ ] WhatsApp transport handles rmtree command: removes worktree and replies with confirmation +- [ ] Slack transport handles rmtree command: removes worktree and replies with confirmation