mermaid-cli 0.18.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
//! Compatibility re-export for the internal runtime crate.
//!
//! New daemon, CLI, and TUI code should depend on the
//! `mermaid-runtime` crate boundary. The `mermaid_cli::runtime` module is
//! retained so existing call sites and downstream code do not need a
//! flag-day import rewrite.

pub mod client;
pub mod protocol;

pub use client::*;
pub use mermaid_runtime::*;
pub use protocol::DaemonRequest;