//! Plan 05-04 — opinionated v0 recipes (helios-rfc §5.3 surface).
//!
//! Per blueprint §7 "opinionation lives here". v0 ships only [`CodingSessionMemory`];
//! the other 9 recipes (`RECIPE-V1-01..11`) ship in v1.
//!
//! See [`coding_session_memory`] for the canonical helios-rfc §5.3 file-tool surface
//! (write / read / edit / grep / ls / forget / time-travel via `as_of`).
pub use ;
/// Deprecated alias for [`CodingSessionMemory`].
///
/// v0.4 consumers importing `lunaris::HeliosScratchpad` continue to compile;
/// they receive a `#[deprecated]` warning. Remove in v0.7.
// allow(deprecated): re-exporting the deprecated alias is the whole point —
// without the allow, the defining crate trips its own deprecation lint and
// `clippy -D warnings` fails. Downstream importers still get the warning.
pub use HeliosScratchpad;