pub(crate) mod compilation;
pub(crate) mod consolidation;
pub(crate) mod reinforcement;
mod command;
mod query;
mod render;
#[cfg(test)]
mod tests;
pub use command::{add_preference, list_preferences, remove_preference};
pub use query::{query_global_preferences, query_project_preferences};
pub use render::{
dedup_with_claude_md, render_preferences, render_preferences_with_limits,
render_preferences_with_limits_detailed, PreferenceRenderSummary,
};
pub(crate) use render::{render_preferences_with_context_details, PreferenceRenderDetails};