From e88df06cd40eff60d82887cdba1c7814b839d773 Mon Sep 17 00:00:00 2001 From: ProofOfConcept Date: Tue, 24 Mar 2026 20:05:41 -0400 Subject: [PATCH] memory: don't auto-run reflect agent yet MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Still testing the prompt. The lifecycle and handler are wired up — just needs the hook call uncommented when ready. --- poc-memory/src/memory_search.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/poc-memory/src/memory_search.rs b/poc-memory/src/memory_search.rs index a72dc97..cbbf17e 100644 --- a/poc-memory/src/memory_search.rs +++ b/poc-memory/src/memory_search.rs @@ -372,7 +372,6 @@ fn hook(session: &Session) -> String { let cfg = crate::config::get(); if cfg.surface_hooks.iter().any(|h| h == &session.hook_event) { surface_agent_cycle(session, &mut out, &mut log_f); - reflect_agent_cycle(session, &mut out, &mut log_f); } }