eidetic-engine 0.15.2

Durable, local-first, explainable memory for coding agents.
//! Optional mesh memory surface (SRR6 umbrella).
//!
//! `ee` is local-first; the mesh layer is an opt-in compose of SRR6 primitives
//! (transport, peer trust, workspace scope, peer enrollment) that lets multiple
//! machines on a trusted Tailscale network share, cache, and learn from each
//! other's memories.
//!
//! With `EE_MESH_ENABLED=0` (the default) none of the code in this module is
//! reachable from ordinary commands. ADR 0037 / ADR 0038 own the invariants.
//!
//! Sub-surfaces live in their own files and are documented in their bead
//! descriptions (SRR6.46.* under bd-36bbk).

pub mod admission;
pub mod anti_entropy_protocol;
pub mod audit;
pub mod auto_enrollment;
pub mod auto_enrollment_safety;
pub mod bootstrap_envelope;
pub mod cache;
pub mod credential_backup;
pub mod discovery_cache;
pub mod discovery_policy;
pub mod emergency_disable;
pub mod foreground_cli;
pub mod hello;
pub mod hello_responder;
pub mod identity_change_guard;
pub mod idp;
pub mod key_store;
pub mod lane_grant;
pub mod lane_grant_preview;
pub mod origin_stream;
pub mod peer;
pub mod peer_state;
pub mod policy;
pub mod remote_evidence;
pub mod repair_action_graph;
pub mod responder_broker;
pub mod steward_decision;
pub mod sync;
pub mod tailscale_autodiscovery;
pub mod tailscale_transport;
pub mod team;
pub mod transport_session;