mermaid-cli 0.6.0

Open-source AI pair programmer with agentic capabilities. Local-first with Ollama, native tool calling, and beautiful TUI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Gateway module for app - follows the Train Station Pattern
// All external access must go through this gateway

// Private submodules - not directly accessible from outside
mod config;
pub mod instructions;

// Public re-exports - the ONLY way to access app functionality
pub use config::{
    Config, McpServerConfig, UserProviderConfig, get_config_dir, init_config, load_config,
    persist_default_reasoning, persist_last_model, persist_reasoning_for_model, resolve_model_id,
    save_config,
};