diff --git a/crates/g3-cli/src/agent_mode.rs b/crates/g3-cli/src/agent_mode.rs index 53b81a5..14f8b12 100644 --- a/crates/g3-cli/src/agent_mode.rs +++ b/crates/g3-cli/src/agent_mode.rs @@ -273,7 +273,10 @@ pub async fn run_agent_mode( // Don't print completion message for scout agent - it needs the last line // to be the report file path for the research tool to read if agent_name != "scout" { - output.print("\n✅ Agent mode completed"); + use crate::g3_status::G3Status; + println!(); // newline before status + G3Status::progress(&format!("{} session", agent_name)); + G3Status::done(); } Ok(()) }