rag-rat 0.12.0

CLI and MCP entrypoint for indexing repositories into local source, graph, history, and memory evidence.
//! Step functions — render, handle_key, validate. No traits, no widget abstractions.
//!
//! This module is a curated index over the per-step siblings:
//! - [`types`] — step-state enums + shared result/state types ([`StepId`], [`Outcome`], [`Sev`],
//!   [`CheckResult`], [`StepState`], [`EmbedFocus`], [`IndexZone`]).
//! - [`dispatch`] — step titles/footers, state init, and the render/handle_key/validate fan-out.
//! - [`indexing`] / [`oracle`] / [`embedding`] / [`integration`] — the per-step logic.
//! - [`hooks`] — git-hook conflict choices + the chained-hook renderer.

pub(crate) mod hooks;

mod dispatch;
mod embedding;
mod indexing;
mod integration;
mod oracle;
mod types;

#[cfg(test)]
mod tests;

pub(crate) use dispatch::{
    init_step, render_step, scroll_step, step_footer, step_handle_key, step_title, validate_step,
};
pub(crate) use types::{CheckResult, Outcome, Sev, StepId, StepState, can_write};