From 9a09a665fbc1366a93b28dfb9828b1484626d4a9 Mon Sep 17 00:00:00 2001 From: ProofOfConcept Date: Wed, 25 Mar 2026 02:15:46 -0400 Subject: [PATCH] render: show plain node keys in link footer, not CLI commands Links now show just the key name instead of `poc-memory render KEY`. The agent uses memory_render tool calls, not bash commands. Co-Authored-By: Proof of Concept --- src/hippocampus/memory.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hippocampus/memory.rs b/src/hippocampus/memory.rs index 8254373..b66b1ef 100644 --- a/src/hippocampus/memory.rs +++ b/src/hippocampus/memory.rs @@ -66,10 +66,10 @@ impl MemoryNode { let total = footer.len(); out.push_str("\n\n---\nLinks:"); for (target, strength) in footer.iter().take(15) { - out.push_str(&format!("\n ({:.2}) `poc-memory render {}`", strength, target)); + out.push_str(&format!("\n ({:.2}) {}", strength, target)); } if total > 15 { - out.push_str(&format!("\n ... and {} more (`poc-memory graph link {}`)", + out.push_str(&format!("\n ... and {} more (memory_links key={})", total - 15, self.key)); } }