huskies: merge 878

This commit is contained in:
dave
2026-04-29 23:48:30 +00:00
parent 1d86202abb
commit 8fc581ad6b
9 changed files with 413 additions and 51 deletions
+3
View File
@@ -99,6 +99,9 @@ pub async fn dispatch_tool_call(
"move_story" => diagnostics::tool_move_story(&args, ctx),
// Unblock story
"unblock_story" => story_tools::tool_unblock_story(&args, ctx),
// Freeze / unfreeze story
"freeze_story" => story_tools::tool_freeze_story(&args, ctx),
"unfreeze_story" => story_tools::tool_unfreeze_story(&args, ctx),
// Shell command execution
"run_command" => shell_tools::tool_run_command(&args, ctx).await,
"run_tests" => shell_tools::tool_run_tests(&args, ctx).await,