From b747cc0fab0e5a9e5e50ee5142e8fa287b309bd5 Mon Sep 17 00:00:00 2001 From: Dave Date: Sat, 21 Mar 2026 21:25:36 +0000 Subject: [PATCH] storkit: create 362_story_bot_whatsup_command_shows_in_progress_work_summary --- ...up_command_shows_in_progress_work_summary.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.storkit/work/1_backlog/362_story_bot_whatsup_command_shows_in_progress_work_summary.md b/.storkit/work/1_backlog/362_story_bot_whatsup_command_shows_in_progress_work_summary.md index 74d6808..f7357bc 100644 --- a/.storkit/work/1_backlog/362_story_bot_whatsup_command_shows_in_progress_work_summary.md +++ b/.storkit/work/1_backlog/362_story_bot_whatsup_command_shows_in_progress_work_summary.md @@ -6,18 +6,23 @@ name: "Bot whatsup command shows in-progress work summary" ## User Story -As a project owner in a Matrix room, I want to type "{bot_name} whatsup {story_number}" and see a summary of what is currently happening on that story, so that I can quickly understand progress without digging through files or asking the bot to investigate. +As a project owner in a Matrix room, I want to type "{bot_name} whatsup {story_number}" and see a full triage dump for that story, so that when something goes wrong I can immediately understand its state — blocked status, agent activity, git changes, and log tail — without hunting across multiple places or asking the bot to investigate. ## Acceptance Criteria - [ ] '{bot_name} whatsup {number}' finds the story in work/2_current/ by story number -- [ ] Shows the story number, name, and active branch/worktree if one exists -- [ ] Shows a brief git diff --stat of changes on the branch since branching from master -- [ ] Shows recent commit messages on the active branch (last 3) +- [ ] Shows the story number, name, and current pipeline stage +- [ ] Shows relevant front matter fields: blocked, agent, and any other non-empty fields +- [ ] Shows which Acceptance Criteria are checked vs unchecked +- [ ] Shows active branch and worktree path if one exists +- [ ] Shows git diff --stat of changes on the branch since branching from master +- [ ] Shows last 5 commit messages on the active branch +- [ ] Shows the last 20 lines of the agent log for this story (if a log exists) - [ ] Returns a friendly message if the story is not found or not currently in progress - [ ] Registered in the command registry so it appears in help output -- [ ] Handled at bot level without LLM invocation — uses git and filesystem only +- [ ] Handled at bot level without LLM invocation — uses git, filesystem, and log files only ## Out of Scope -- TBD +- Interpreting or summarising log output with an LLM +- Showing logs from previous agent runs (only the current/most recent)