Codex Handbook
memories/read/src/lib.rs 15 lines
//! Read-path helpers for Codex memories.//!//! This crate owns memory injection, memory citation parsing, and telemetry//! classification for read access to the memory folder. It intentionally does//! not depend on the memory write pipeline.pub mod citations;mod metrics;pub mod usage;use codex_utils_absolute_path::AbsolutePathBuf;pub fn memory_root(codex_home: &AbsolutePathBuf) -> AbsolutePathBuf {    codex_home.join("memories")}