forked from kent/consciousness
hippocampus/ — memory storage, retrieval, and consolidation: store, graph, query, similarity, spectral, neuro, counters, config, transcript, memory_search, lookups, cursor, migrate subconscious/ — autonomous agents that process without being asked: reflect, surface, consolidate, digest, audit, etc. All existing crate::X paths preserved via re-exports in lib.rs. Co-Authored-By: Proof of Concept <poc@bcachefs.org> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
43 lines
1.1 KiB
Rust
43 lines
1.1 KiB
Rust
// consciousness — unified crate for memory, agents, and subconscious processes
|
|
//
|
|
// hippocampus/ — memory storage, retrieval, consolidation
|
|
// subconscious/ — autonomous agents (reflect, surface, consolidate, ...)
|
|
// agent/ — interactive agent (TUI, tools, API clients)
|
|
|
|
// Agent infrastructure
|
|
pub mod agent;
|
|
|
|
// Memory graph
|
|
pub mod hippocampus;
|
|
|
|
// Autonomous agents
|
|
pub mod subconscious;
|
|
|
|
// Shared utilities
|
|
pub mod util;
|
|
|
|
// CLI handlers
|
|
pub mod cli;
|
|
|
|
// TUI for memory-search
|
|
pub mod tui;
|
|
|
|
// Generated capnp bindings
|
|
pub mod memory_capnp {
|
|
include!(concat!(env!("OUT_DIR"), "/schema/memory_capnp.rs"));
|
|
}
|
|
|
|
// Re-exports — all existing crate::X paths keep working
|
|
pub use hippocampus::{
|
|
store, graph, lookups, cursor, query,
|
|
similarity, spectral, neuro, counters,
|
|
config, transcript, memory_search, migrate,
|
|
};
|
|
pub use hippocampus::query::engine as search;
|
|
pub use hippocampus::query::parser as query_parser;
|
|
|
|
pub use subconscious::agents;
|
|
pub use subconscious::agents::{
|
|
llm, audit, consolidate, knowledge,
|
|
enrich, digest, daemon,
|
|
};
|