storkit: create 402_bug_whatsapp_and_slack_missing_rebuild_command_handler

This commit is contained in:
dave
2026-03-26 20:04:02 +00:00
parent 92aa1ebccf
commit cf2faa9bff
@@ -0,0 +1,27 @@
---
name: "WhatsApp and Slack missing rebuild command handler"
blocked: true
---
# Bug 402: WhatsApp and Slack missing rebuild command handler
## Description
The rebuild 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 "rebuild" to the bot\n3. Check server logs
## Actual Result
Command falls through to LLM instead of triggering a server rebuild.
## Expected Result
The bot triggers a server rebuild and replies with confirmation.
## Acceptance Criteria
- [ ] WhatsApp transport handles rebuild command: triggers rebuild and replies with confirmation
- [ ] Slack transport handles rebuild command: triggers rebuild and replies with confirmation