From 9a77ffaa83f9f9e7d7da1e2dce5b64429c860ab8 Mon Sep 17 00:00:00 2001 From: Dave Date: Fri, 20 Mar 2026 01:30:48 +0000 Subject: [PATCH] story-kit: done 325_story_slack_llm_passthrough_for_conversational_queries --- ..._passthrough_for_conversational_queries.md | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .story_kit/work/5_done/325_story_slack_llm_passthrough_for_conversational_queries.md diff --git a/.story_kit/work/5_done/325_story_slack_llm_passthrough_for_conversational_queries.md b/.story_kit/work/5_done/325_story_slack_llm_passthrough_for_conversational_queries.md new file mode 100644 index 0000000..0d2607a --- /dev/null +++ b/.story_kit/work/5_done/325_story_slack_llm_passthrough_for_conversational_queries.md @@ -0,0 +1,21 @@ +--- +name: "Slack LLM passthrough for conversational queries" +--- + +# Story 325: Slack LLM passthrough for conversational queries + +## User Story + +As a project owner using Slack, I want messages that aren't bot commands to be forwarded to Claude for conversational responses, so that I can ask questions about the project naturally from Slack. + +## Acceptance Criteria + +- [ ] Messages that don't match any bot command are forwarded to Claude via the existing LLM pipeline +- [ ] Responses sent back as Slack messages +- [ ] Conversation history maintained per channel +- [ ] Long responses chunked to fit Slack's message size limits (4000 chars per block) +- [ ] Bot only responds when mentioned or in DMs (not every channel message) + +## Out of Scope + +- TBD