From aafb9533781acd7ef5ab55b0322c8940a68321ff Mon Sep 17 00:00:00 2001 From: "Andrei G." Date: Fri, 29 May 2026 17:16:26 +0200 Subject: [PATCH] docs(context): add missing modules to zeph-context lib.rs module index fidelity, tool_result_compress, and typed_page were declared as pub mod but omitted from the # Modules docstring section. Closes #4559 --- crates/zeph-context/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/zeph-context/src/lib.rs b/crates/zeph-context/src/lib.rs index 15d61c430..33f8675cb 100644 --- a/crates/zeph-context/src/lib.rs +++ b/crates/zeph-context/src/lib.rs @@ -19,6 +19,9 @@ //! - [`turn_context`] — [`turn_context::TurnId`], [`turn_context::TurnContext`] per-turn carrier //! - [`compression_feedback`] — context-loss detection and failure classification //! - [`microcompact`] — low-value tool detection helpers for time-based microcompact +//! - [`fidelity`] — heuristic fidelity scorer for Context-Adaptive Memory (CAM) +//! - [`tool_result_compress`] — per-result and batch-level token budget enforcement for tool outputs +//! - [`typed_page`] — typed page classification and minimum-fidelity invariants for compaction //! - [`error`] — [`error::AssemblerError`] pub mod assembler;