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 autocomplete;
12pub mod colors;
13pub mod hooks;
14pub mod response;
15pub mod spinner;
16pub mod streaming;
17pub mod tool_display;
18
19pub use autocomplete::*;
20pub use colors::*;
21pub use hooks::*;
22pub use response::*;
23pub use spinner::*;
24pub use streaming::*;
25pub use tool_display::*;