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