restore: reset past source tree deletion, apply pending work

This commit is contained in:
Timmy
2026-03-27 10:49:39 +00:00
parent 04214ca155
commit 3571511349
21 changed files with 2799 additions and 37 deletions
+6
View File
@@ -10,6 +10,7 @@ mod assign;
mod cost;
mod git;
mod help;
mod loc;
mod move_story;
mod overview;
mod show;
@@ -114,6 +115,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: "loc",
description: "Show top source files by line count: `loc` (top 10) or `loc <N>`",
handler: loc::handle_loc,
},
BotCommand {
name: "move",
description: "Move a work item to a pipeline stage: `move <number> <stage>` (stages: backlog, current, qa, merge, done)",