huskies: merge 1039

This commit is contained in:
dave
2026-05-14 16:26:49 +00:00
parent 9e06fff8a8
commit 311883f45d
12 changed files with 1005 additions and 5 deletions
+5 -1
View File
@@ -4,7 +4,7 @@ use serde_json::Value;
use super::{
agent_tools, diagnostics, git_tools, merge_tools, qa_tools, shell_tools, status_tools,
story_tools, wizard_tools,
story_tools, timer_tools, wizard_tools,
};
use crate::http::context::AppContext;
@@ -128,6 +128,10 @@ pub async fn dispatch_tool_call(
"wizard_confirm" => wizard_tools::tool_wizard_confirm(ctx),
"wizard_skip" => wizard_tools::tool_wizard_skip(ctx),
"wizard_retry" => wizard_tools::tool_wizard_retry(ctx),
// Scheduled timer tools
"schedule_timer" => timer_tools::tool_schedule_timer(&args, ctx),
"list_timers" => timer_tools::tool_list_timers(ctx),
"cancel_timer" => timer_tools::tool_cancel_timer(&args, ctx),
_ => Err(format!("Unknown tool: {tool_name}")),
}
}