move memory_search from hippocampus to subconscious/hook

memory_search.rs is agent orchestration (surface-observe, journal,
reflect cycles), not memory storage. Rename to hook.rs and move to
subconscious/ where it belongs.

Backward compat: pub use subconscious::hook as memory_search in lib.rs
so existing crate::memory_search paths still resolve.
This commit is contained in:
ProofOfConcept 2026-03-27 20:50:24 -04:00
parent 3a8383ba37
commit 8ee0d90388
9 changed files with 321 additions and 7 deletions

View file

@ -55,7 +55,7 @@ pub mod memory_capnp {
pub use hippocampus::{
store, graph, lookups, cursor, query,
similarity, spectral, neuro, counters,
transcript, memory_search, migrate, memory,
transcript, migrate, memory,
};
pub use hippocampus::query::engine as search;
pub use hippocampus::query::parser as query_parser;
@ -65,3 +65,5 @@ pub use subconscious::{
llm, audit, consolidate, knowledge,
enrich, digest, daemon,
};
// Backward compat: memory_search moved from hippocampus to subconscious::hook
pub use subconscious::hook as memory_search;