mermaid-cli 0.7.1

Open-source AI pair programmer with agentic capabilities. Local-first with Ollama, native tool calling, and beautiful TUI.
Documentation
//! Pure-function reducer: `fn update(State, Msg) -> (State, Vec<Cmd>)`.
//!
//! Heart of the MVU architecture. Everything here is synchronous,
//! does no I/O, and is testable without tokio or a terminal. The
//! effect runner (`crate::effect`) takes the `Cmd` values the reducer
//! emits and performs the actual work; results come back as `Msg`
//! events that feed into another `update` call.
//!
//! The split is load-bearing: stale events racing with cancellation,
//! lost tool results, and two event loops competing for input are all
//! impossible to express against these types.

pub mod action;
pub mod cmd;
pub mod compaction;
pub mod ids;
pub mod msg;
pub mod reducer;
pub mod runtime;
pub mod slash_commands;
pub mod state;
pub mod transition;

pub use action::{ActionDetails, ActionDisplay, ActionResult};
pub use cmd::{ChatRequest, Cmd, ToolDefinition};
pub use compaction::{
    CompactionArchive, CompactionPolicy, CompactionRecord, CompactionRequest, CompactionResult,
    CompactionTrigger, PreparedCompaction, build_replacement_messages, build_summary_request,
    build_verification_request, combine_usage, compaction_receipt, context_exceeds_hard_limit,
    format_compact_count, normalize_summary, prepare_compaction, should_auto_compact,
};
pub use ids::{IdAllocator, ToolCallId, TurnId};
pub use msg::{Key, KeyCode, KeyMods, Msg, MsgKind, Paste, SlashCmd, StartupConfig};
pub use reducer::{build_chat_request, update};
pub use runtime::{
    ManagedProcess, ManagedProcessStatus, ProviderCapabilitySnapshot, RuntimeSignal, RuntimeState,
    RuntimeTimelineEvent, RuntimeTimelineKind, ToolArtifact, ToolMetadata, ToolRunMetadata,
    ToolStatus,
};
pub use slash_commands::{COMMAND_REGISTRY, SlashCommand, filter_by_prefix};
pub use state::{
    Attachment, Confirmation, ConfirmationTarget, ContextUsageSnapshot, ConversationSummary,
    GenPhase, IdAllocatorBundle, McpServerEntry, McpServerStatus, McpState, McpToolSpec,
    PendingToolCall, PromptTokenBreakdown, Session, State, StatusKind, StatusLine,
    TokenUsageTotals, ToolOutcome, TurnState, UiMode, UiState, estimate_context_usage_for_request,
};
pub use transition::{
    action_display_for, commit_assistant_message, fill_outcome, start_executing_tools,
    start_generating, tool_result_messages, try_complete_outcomes,
};