shodh-memory 0.2.0

Persistent cognitive memory for AI agents and robots — Hebbian learning, knowledge graph, spatial recall. Zenoh/ROS2 native. Single binary, runs offline.
Documentation
//! Memory Interchange Format (MIF) v2
//!
//! Vendor-neutral schema for exporting, importing, and converting memory data
//! across different AI memory systems (shodh-memory, mem0, generic JSON, markdown).
//!
//! Architecture:
//! - `schema` — MIF v2 types (vendor-neutral core + vendor extensions)
//! - `export` — streaming export from shodh internals → MifDocument
//! - `import` — reference-preserving import from MifDocument → shodh internals
//! - `pii` — PII detection and redaction
//! - `adapters` — format converters (shodh JSON, mem0, generic, markdown)

pub mod adapters;
pub mod export;
pub mod import;
pub mod pii;
pub mod schema;

pub use schema::MifDocument;