terraphim_agent 1.16.7

Terraphim AI Agent CLI - Command-line interface with interactive REPL and ASCII graph visualization
Documentation
//! REPL (Read-Eval-Print-Loop) interface for Terraphim TUI
//!
//! This module provides a command-line interface that matches the functionality
//! available in the Tauri desktop application, with commands for search, chat,
//! configuration management, and MCP tools integration.

#[cfg(feature = "repl")]
pub mod commands;

#[cfg(feature = "repl")]
pub mod handler;

#[cfg(feature = "repl-web")]
pub mod web_operations;

#[cfg(feature = "repl-chat")]
pub mod chat;

#[cfg(feature = "repl-mcp")]
pub mod mcp_tools;

#[cfg(feature = "repl")]
pub use handler::run_repl_offline_mode;

#[cfg(all(feature = "repl", feature = "server"))]
pub use handler::run_repl_server_mode;