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//! - Interactive tool confirmation prompts
11//! - Diff rendering for file changes
12
13pub mod autocomplete;
14pub mod colors;
15pub mod confirmation;
16pub mod diff;
17pub mod hooks;
18pub mod input;
19pub mod response;
20pub mod shell_output;
21pub mod spinner;
22pub mod streaming;
23pub mod tool_display;
24
25pub use autocomplete::*;
26pub use colors::*;
27pub use confirmation::*;
28pub use diff::*;
29pub use hooks::*;
30pub use input::*;
31pub use response::*;
32pub use shell_output::*;
33pub use spinner::*;
34pub use streaming::*;
35pub use tool_display::*;