story-kit: merge 334_story_bot_move_command_to_move_stories_between_pipeline_stages

This commit is contained in:
Dave
2026-03-20 08:36:51 +00:00
parent adab08f804
commit 69030599d3
2 changed files with 303 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ mod ambient;
mod cost;
mod git;
mod help;
mod move_story;
mod overview;
mod show;
mod status;
@@ -110,6 +111,11 @@ pub fn commands() -> &'static [BotCommand] {
description: "Show token spend: 24h total, top stories, breakdown by agent type, and all-time total",
handler: cost::handle_cost,
},
BotCommand {
name: "move",
description: "Move a work item to a pipeline stage: `move <number> <stage>` (stages: backlog, current, qa, merge, done)",
handler: move_story::handle_move,
},
BotCommand {
name: "show",
description: "Display the full text of a work item: `show <number>`",