mermaid-cli 0.5.1

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
14
// Gateway module for widgets - follows the Train Station Pattern
// All external access must go through this gateway

mod attachment;
mod chat;
mod input;
mod status;
mod status_line;

pub use attachment::AttachmentWidget;
pub use chat::{ChatState, ChatWidget};
pub use input::{InputState, InputWidget};
pub use status::StatusWidget;
pub use status_line::StatusLineWidget;