//! # Brainwires Reasoning
//!
//! Structured reasoning primitives for the Brainwires Agent Framework.
//!
//! Re-exports the plan and output parsing utilities from `brainwires-core`
//! as a single, discoverable reasoning crate for Layer 3 consumers.
//!
//! ## Available
//! - **plan_parser** — Extract numbered task steps from LLM plan output
//! - **output_parser** — Parse structured data (JSON, regex) from raw LLM text
// Re-export from core — canonical source of truth lives in brainwires-core
pub use output_parser;
pub use plan_parser;
// Flat re-exports for convenience
pub use ;
pub use ;