huskies: merge 471_story_bot_command_to_show_overall_test_coverage

This commit is contained in:
dave
2026-04-04 11:46:26 +00:00
parent 40a04397b4
commit e74f5275ef
3 changed files with 370 additions and 0 deletions
+6
View File
@@ -8,6 +8,7 @@
mod ambient;
mod assign;
mod cost;
mod coverage;
mod git;
mod help;
pub(crate) mod loc;
@@ -118,6 +119,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: "coverage",
description: "Show test coverage: cached baseline by default, or `coverage run` to rerun the full suite",
handler: coverage::handle_coverage,
},
BotCommand {
name: "loc",
description: "Show top source files by line count: `loc` (top 10), `loc <N>`, or `loc <filepath>` for a specific file",