huskies: merge 1038

This commit is contained in:
dave
2026-05-14 17:00:33 +00:00
parent 4553df5b21
commit 1f9f34ab58
13 changed files with 940 additions and 2 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, timer_tools, wizard_tools,
story_tools, timer_tools, trigger_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),
// Event trigger tools
"schedule_event_trigger" => trigger_tools::tool_schedule_event_trigger(&args, ctx),
"list_event_triggers" => trigger_tools::tool_list_event_triggers(ctx),
"cancel_event_trigger" => trigger_tools::tool_cancel_event_trigger(&args, ctx),
// Scheduled timer tools
"schedule_timer" => timer_tools::tool_schedule_timer(&args, ctx),
"list_timers" => timer_tools::tool_list_timers(ctx),