From ca296e61501e82692b5bd0f31fc75457716c62d0 Mon Sep 17 00:00:00 2001 From: argenis de la rosa Date: Thu, 19 Mar 2026 15:31:18 -0400 Subject: [PATCH] fix: add missing autonomy_level arg to test after merge with master The refresh-skills test was missing the autonomy_level parameter added to build_system_prompt_with_mode and ChannelRuntimeContext by a recently merged PR. --- src/channels/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/channels/mod.rs b/src/channels/mod.rs index c0e25620c..f53e97887 100644 --- a/src/channels/mod.rs +++ b/src/channels/mod.rs @@ -7642,6 +7642,7 @@ BTC is currently around $65,000 based on latest tool output."# None, false, config.skills.prompt_injection_mode, + AutonomyLevel::default(), ); assert!( !initial_system_prompt.contains("refresh-test"), @@ -7695,6 +7696,7 @@ BTC is currently around $65,000 based on latest tool output."# approval_manager: Arc::new(ApprovalManager::for_non_interactive( &crate::config::AutonomyConfig::default(), )), + autonomy_level: AutonomyLevel::default(), activated_tools: None, });