huskies: merge 494_story_mcp_tool_to_run_project_test_suite

This commit is contained in:
dave
2026-04-07 14:39:47 +00:00
parent 1b8c391836
commit 19768c23d5
5 changed files with 503 additions and 1 deletions
+6
View File
@@ -15,6 +15,7 @@ mod help;
pub(crate) mod loc;
mod move_story;
mod overview;
mod run_tests;
mod setup;
mod show;
mod status;
@@ -130,6 +131,11 @@ pub fn commands() -> &'static [BotCommand] {
description: "Show test coverage: cached baseline by default, or `coverage run` to rerun the full suite",
handler: coverage::handle_coverage,
},
BotCommand {
name: "test",
description: "Run the project's test suite (`script/test`) and show pass/fail with output",
handler: run_tests::handle_test,
},
BotCommand {
name: "loc",
description: "Show top source files by line count: `loc` (top 10), `loc <N>`, or `loc <filepath>` for a specific file",