storkit: create 362_story_bot_whatsup_command_shows_in_progress_work_summary

This commit is contained in:
Dave
2026-03-21 21:22:16 +00:00
parent 9075bc1a84
commit b0b21765d9

View File

@@ -0,0 +1,23 @@
---
name: "Bot whatsup command shows in-progress work summary"
---
# Story 362: 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" and see a summary of what is currently being worked on, so that I can quickly understand the state of active stories without digging through files or asking the bot to investigate.
## Acceptance Criteria
- [ ] '{bot_name} whatsup' lists all stories currently in work/2_current/
- [ ] For each in-progress story, shows the story number, name, and active branch/worktree if one exists
- [ ] For each story with an active branch, shows a brief git diff --stat of changes since branching from master
- [ ] Shows recent commit messages on each active branch (last 3)
- [ ] Returns a friendly message if nothing is 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
## Out of Scope
- TBD