oxios-memory 1.1.0

Tiered agent memory — extracted from oxios-kernel per RFC-018
Documentation

Oxios Memory — tiered agent memory extracted from oxios-kernel.

Status (RFC-018)

This crate holds the memory subsystem extracted from oxios-kernel:

  • b.1: chunking, normalizer, hyperbolic (math/text utilities)
  • b.2: embedding (TF-IDF + GGUF dense vectors)
  • b.3: root_index, quota
  • b.4: decay, auto_classify, auto_protect
  • b.5: compaction, flash_attention, graph, embedding_cache, embedding_viz
  • b.6: MemoryStorage trait + StateStore impl
  • b.7: MemoryManager move
  • b.8: SQLite backend
  • b.9: migrate, dream, auto_memory_bridge

oxios-kernel depends on this crate (not the other way around) for all memory types and modules.

Usage

use oxios_memory::MemoryEntry;
use oxios_memory::MemoryType;
use oxios_memory::chunk_fixed;
use oxios_memory::HyperbolicEmbedding;
use oxios_memory::cosine_similarity_f32;