//! Idea-intake funnel — agentic-planning surface for nornir.
//!
//! See `.nornir/notes/2026-05-31-funnel-dag-handoff.md` for the
//! design discussion.
//!
//! Quick start:
//! ```no_run
//! use nornir::funnel::{Store, Event, IdeaId};
//! use chrono::Utc;
//! let mut store = Store::open(".nornir/todo.log").unwrap();
//! store.record(Event::IdeaSubmitted {
//! id: IdeaId::seq(store.funnel.next_idea + 1),
//! source: "human:rickard".into(),
//! text: "build the funnel itself".into(),
//! refs: vec![],
//! ts: Utc::now(),
//! }).unwrap();
//! let next = nornir::funnel::topo_ready(&mut store.funnel);
//! ```
pub use ;
pub use ;
pub use ;
pub use Store;
pub use ;