forked from kent/consciousness
Persistent cursor into the knowledge graph with navigation: - temporal: forward/back among same-type nodes by timestamp - hierarchical: up/down the digest tree (journal→daily→weekly→monthly) - spatial: graph neighbor display at every position The cursor file (~/.claude/memory/cursor) holds a single node key. Show displays: temporal arrows, hierarchy links, semantic neighbors, and full content. Date extraction from both timestamps and key names handles the mixed-timestamp data gracefully. This is the start of place cells — spatial awareness of position in your own knowledge.
33 lines
763 B
Rust
33 lines
763 B
Rust
// poc-memory library — shared modules for all binaries
|
|
//
|
|
// Re-exports modules so that memory-search and other binaries
|
|
// can call library functions directly instead of shelling out.
|
|
|
|
// Core infrastructure
|
|
pub mod config;
|
|
pub mod store;
|
|
pub mod util;
|
|
pub mod graph;
|
|
pub mod search;
|
|
pub mod similarity;
|
|
pub mod spectral;
|
|
pub mod lookups;
|
|
pub mod query;
|
|
pub mod transcript;
|
|
pub mod neuro;
|
|
pub mod counters;
|
|
pub mod cursor;
|
|
|
|
// Agent layer (LLM-powered operations)
|
|
pub mod agents;
|
|
pub mod tui;
|
|
|
|
// Re-export agent submodules at crate root for backwards compatibility
|
|
pub use agents::{
|
|
llm, audit, consolidate, knowledge,
|
|
enrich, fact_mine, digest, daemon,
|
|
};
|
|
|
|
pub mod memory_capnp {
|
|
include!(concat!(env!("OUT_DIR"), "/schema/memory_capnp.rs"));
|
|
}
|