centralize memory store interface in hippocampus/mod.rs

This commit is contained in:
Kent Overstreet 2026-04-13 17:44:33 -04:00
parent 063cf031d3
commit 5db00e083f
8 changed files with 899 additions and 723 deletions

View file

@ -1,6 +1,6 @@
// cli/agent.rs — agent subcommand handlers
use crate::agent::tools::memory;
use crate::hippocampus as memory;
use crate::store;
pub async fn cmd_run_agent(agent: &str, count: usize, target: &[String], query: Option<&str>, dry_run: bool, _local: bool, state_dir: Option<&str>) -> Result<(), String> {