//! Shipped [`Critic`] and [`Reflector`] implementations.
//!
//! All impls behind cargo features — the trait crate stays dep-free by
//! default. See the module-level docs on each type for the feature flag.
// NullReflector and LlmReflector don't need extra deps beyond oharness-llm,
// which is already a required dep of this crate. They're always available.
pub use NullReflector;
pub use LlmReflector;
pub use RegexDenyCritic;
pub use TestCritic;
pub use LlmJudgeCritic;