From ac52a8bb4e1311a7e33d8c3767df695f3563eff6 Mon Sep 17 00:00:00 2001 From: dave Date: Tue, 24 Mar 2026 22:12:39 +0000 Subject: [PATCH] storkit: done 385_story_slack_markdown_to_mrkdwn_formatting_conversion --- ...hows_list_of_stories_since_last_release.md | 22 ------------------ ...arkdown_to_mrkdwn_formatting_conversion.md | 23 +++++++++++++++++++ 2 files changed, 23 insertions(+), 22 deletions(-) delete mode 100644 .storkit/work/1_backlog/386_story_unreleased_command_shows_list_of_stories_since_last_release.md create mode 100644 .storkit/work/5_done/385_story_slack_markdown_to_mrkdwn_formatting_conversion.md diff --git a/.storkit/work/1_backlog/386_story_unreleased_command_shows_list_of_stories_since_last_release.md b/.storkit/work/1_backlog/386_story_unreleased_command_shows_list_of_stories_since_last_release.md deleted file mode 100644 index 8efba20..0000000 --- a/.storkit/work/1_backlog/386_story_unreleased_command_shows_list_of_stories_since_last_release.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -name: "Unreleased command shows list of stories since last release" ---- - -# Story 386: Unreleased command shows list of stories since last release - -## User Story - -As a user, I want a bot command and web UI slash command called "unreleased" that shows a list of stories completed since the last release, so that I can see what's ready to ship. - -## Acceptance Criteria - -- [ ] Bot command `unreleased` returns a list of stories merged to master since the last release tag -- [ ] Web UI slash command /unreleased returns the same list -- [ ] Each entry shows story number and name -- [ ] If there are no unreleased stories, a clear message is shown -- [ ] Command is registered in the help command output -- [ ] WhatsApp, Slack, and Matrix transports all support the command via the shared command dispatcher - -## Out of Scope - -- TBD diff --git a/.storkit/work/5_done/385_story_slack_markdown_to_mrkdwn_formatting_conversion.md b/.storkit/work/5_done/385_story_slack_markdown_to_mrkdwn_formatting_conversion.md new file mode 100644 index 0000000..298b17e --- /dev/null +++ b/.storkit/work/5_done/385_story_slack_markdown_to_mrkdwn_formatting_conversion.md @@ -0,0 +1,23 @@ +--- +name: "Slack markdown-to-mrkdwn formatting conversion" +--- + +# Story 385: Slack markdown-to-mrkdwn formatting conversion + +## User Story + +As a Slack user, I want bot messages to use Slack-native mrkdwn formatting instead of raw markdown, so that headers, bold text, and links render properly. + +## Acceptance Criteria + +- [ ] Headers (# ## ### etc.) are converted to bold text (*Header*) in Slack messages +- [ ] Markdown bold (**text**) is converted to Slack bold (*text*) +- [ ] Markdown strikethrough (~~text~~) is converted to Slack strikethrough (~text~) +- [ ] Markdown links [text](url) are converted to Slack format: +- [ ] Code blocks and inline code are preserved as-is (already compatible) +- [ ] WhatsApp and Matrix bot formatting are completely unaffected (conversion only applied in Slack send paths) +- [ ] Conversion is applied to all Slack send paths: command responses, LLM streaming, htop snapshots, delete responses, and slash command responses + +## Out of Scope + +- TBD