From d09c80180e2acdf3fb4f8ee71af2f30472bf2bdf Mon Sep 17 00:00:00 2001 From: "Dhanji R. Prasanna" Date: Thu, 25 Dec 2025 18:34:51 +1100 Subject: [PATCH] fix: remove redundant TODO list header that breaks boxing effect --- crates/g3-core/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/g3-core/src/lib.rs b/crates/g3-core/src/lib.rs index 5754531..5f4f2df 100644 --- a/crates/g3-core/src/lib.rs +++ b/crates/g3-core/src/lib.rs @@ -5397,8 +5397,6 @@ impl Agent { if content.trim().is_empty() { Ok("📝 TODO list is empty".to_string()) } else { - // Print the TODO content to the console - self.ui_writer.print_context_status("📝 TODO list:"); for line in content.lines() { self.ui_writer.print_tool_output_line(line); }