From d5d94572c8a7b217fd28ce2eb71bb4bb27308d6e Mon Sep 17 00:00:00 2001 From: Dave Date: Wed, 25 Feb 2026 15:35:21 +0000 Subject: [PATCH] story-kit: create 187_story_preserve_queued_messages_in_chat_input_on_cancel --- ...queued_messages_in_chat_input_on_cancel.md | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .story_kit/work/1_upcoming/187_story_preserve_queued_messages_in_chat_input_on_cancel.md diff --git a/.story_kit/work/1_upcoming/187_story_preserve_queued_messages_in_chat_input_on_cancel.md b/.story_kit/work/1_upcoming/187_story_preserve_queued_messages_in_chat_input_on_cancel.md new file mode 100644 index 0000000..dae8220 --- /dev/null +++ b/.story_kit/work/1_upcoming/187_story_preserve_queued_messages_in_chat_input_on_cancel.md @@ -0,0 +1,21 @@ +--- +name: "Preserve queued messages in chat input on cancel" +--- + +# Story 187: Preserve queued messages in chat input on cancel + +## User Story + +As a user, I want my queued messages to be moved into the chat input when I cancel, so that I don't lose what I typed while waiting for the agent. + +## Acceptance Criteria + +- [ ] When the user cancels an in-progress generation, any queued messages are concatenated and placed into the chat input field instead of being discarded +- [ ] The queued message queue is cleared after moving content to the input field +- [ ] If there is only one queued message, it appears in the input as-is +- [ ] If there are multiple queued messages, they are joined with newlines in the input field +- [ ] If the chat input already has text when cancel is pressed, queued messages are appended after the existing text + +## Out of Scope + +- TBD