memnite 0.2.0

Event-sourced memory engine for AI agents: append-only log, SQLite projections, staleness, conflict graph. CLI binary.
Documentation
//! memnite-cli: the `memnite` binary's library — wires core + store + stale.
mod app;
mod error;
mod fts;
mod protocol;
mod spec;

pub use app::App;
pub use error::CliError;
pub use fts::sanitize_fts;
pub use memnite_core::Relation;
pub use memnite_ingest::{
    CrumbexGraphSource, IngestSource, IngestSummary, IngestedMemory, RepoBrainSource,
};
pub use protocol::MEMORY_PROTOCOL;
pub use spec::{
    parse_anchor, parse_relation, parse_scope, AddSpec, AnchorSpec, CheckSummary, DoctorReport,
    EventCtx, ImportSummary, RelationSpec, ScanSummary, SearchQuery, UpdatePatch,
};