Move JsonlBackwardIter and find_last_compaction() from parse-claude-conversation into a shared transcript module. Both memory-search and parse-claude-conversation now use the same robust compaction detection: mmap-based backward scan, JSON parsing to verify user-type message, content prefix check. Replaces memory-search's old detect_compaction() which did a forward scan with raw string matching on "continued from a previous conversation" — that could false-positive on the string appearing in assistant output or tool results. Add parse-claude-conversation as a new binary for debugging what's in the context window post-compaction. Co-Authored-By: ProofOfConcept <poc@bcachefs.org>
31 lines
733 B
Rust
31 lines
733 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 migrate;
|
|
pub mod transcript;
|
|
pub mod neuro;
|
|
|
|
// Agent layer (LLM-powered operations)
|
|
pub mod agents;
|
|
|
|
// 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"));
|
|
}
|