From 9509e517086b3a61a28e1ecf3104a763cadb5f7a Mon Sep 17 00:00:00 2001 From: "Dhanji R. Prasanna" Date: Sun, 11 Jan 2026 16:51:09 +0530 Subject: [PATCH] style: simplify auto-memory checkpoint message --- crates/g3-core/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/g3-core/src/lib.rs b/crates/g3-core/src/lib.rs index adc7241..428e03d 100644 --- a/crates/g3-core/src/lib.rs +++ b/crates/g3-core/src/lib.rs @@ -1480,7 +1480,7 @@ impl Agent { let tools_called = std::mem::take(&mut self.tool_calls_this_turn); debug!("Auto-memory: Sending reminder to LLM ({} tools called this turn: {:?})", tools_called.len(), tools_called); - self.ui_writer.print_context_status(&format!("\nšŸ“ Auto-memory: Checking if discoveries should be saved ({} tools used)...\n", tools_called.len())); + self.ui_writer.print_context_status("\n*memory checkpoint:* "); let reminder = "SYSTEM REMINDER: You used tools during this turn. If you discovered any key code locations, patterns, or entry points that aren't already in Project Memory, please call the `remember` tool now to save them. If you didn't discover anything new worth remembering, you can skip this. Respond briefly after deciding.";