From d7f22679a97013c7b65d8b1e4875ca43091d57c4 Mon Sep 17 00:00:00 2001 From: "Dhanji R. Prasanna" Date: Tue, 20 Jan 2026 21:57:12 +0530 Subject: [PATCH] =?UTF-8?q?Remove=20'=F0=9F=93=8B=20Task:=20'=20prefix=20f?= =?UTF-8?q?rom=20ACD=20stub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The first user message in dehydrated context stubs is now shown without any prefix, consistent with the removal of 'Task: ' prefix from user messages. --- crates/g3-core/src/acd.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/g3-core/src/acd.rs b/crates/g3-core/src/acd.rs index 73ef8ef..caa0d61 100644 --- a/crates/g3-core/src/acd.rs +++ b/crates/g3-core/src/acd.rs @@ -111,9 +111,9 @@ impl Fragment { pub fn generate_stub(&self) -> String { let mut stub = String::new(); stub.push_str("---\n"); - // Include the full first user message (task) for forensics + // Include the first user message for context if let Some(ref task) = self.first_user_message { - stub.push_str(&format!("📋 Task: {}\n\n", task)); + stub.push_str(&format!("{}\n\n", task)); } // Tool call summary