dejadb-context 1.0.0

Budget-aware context rendering (SML/TOON/Markdown/JSON) for DejaDB.
Documentation
//! dejadb-context โ€” LLM-ready context assembly.
//!
//! Context module: takes recall results (`SearchHit`s)
//! and renders budget-aware, provider-optimal context strings โ€” SML for
//! Claude, Markdown for GPT-class, TOON/JSON for machine consumers โ€” with
//! progressive disclosure (Full/Summary/Omit) and grain-type sections.
//! Docs frame this as infrastructure for context engineering (ยง1 stance).

pub mod assembly;
pub mod budget;
pub mod policy;
pub mod presets;
pub mod render;

pub use assembly::{ContextAssembler, FormattedContext, RenderingHints};
pub use budget::Allocation;
pub use policy::{
    FormatPolicy, GrainTypeOverride, MetadataLevel, Ordering, OutputFormat, SectionConfig,
};