syncable_cli/agent/ui/mod.rs
1//! Terminal UI module for agent interactions
2//!
3//! Provides a rich terminal UI experience with Syncable's brand colors:
4//! - Beautiful response formatting with markdown rendering
5//! - Real-time streaming response display
6//! - Visible tool call execution with status indicators
7//! - Animated spinners with witty phrases during processing
8//! - Thinking/reasoning indicators
9//! - Elapsed time tracking
10
11pub mod colors;
12pub mod hooks;
13pub mod response;
14pub mod spinner;
15pub mod streaming;
16pub mod tool_display;
17
18pub use colors::*;
19pub use hooks::*;
20pub use response::*;
21pub use spinner::*;
22pub use streaming::*;
23pub use tool_display::*;