noos 0.4.1

Reliability layer for Rust LLM agents: scope drift, cost circuit breaks, and procedural correction memory as event-driven Decisions.
Documentation
//! Kernel — plugin system + pipeline infrastructure (Phase 4).
//!
//! Provides a typed event bus, pluggable extension points, and sequential
//! pipeline execution for applications building richer flows on top of Noos.
//!
//! ## Relationship to `CognitiveSession`
//!
//! This module is **infrastructure**, not part of the core cognitive flow.
//! `CognitiveSession` does not use it. Applications that need to:
//! - Chain multiple processing steps (tokenization → retrieval → generation)
//! - Broadcast cognitive events (Global Workspace analog, Dehaene 2001)
//! - Load pluggable processors (custom detectors, external enrichment)
//!
//! ...can build those on top of Noos using these types. For simple use
//! cases, `CognitiveSession::process_message()` alone is sufficient.
//!
//! Brain analog: Global Workspace broadcast (Dehaene & Changeux 2011) for
//! `events`; modular plug-in architecture for `plugin`.

pub mod events;
pub mod plugin;
pub mod pipeline;