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 progress bar with token counter during generation
8//! - Thinking/reasoning indicators
9//! - Elapsed time tracking
10//! - Interactive tool confirmation prompts
11//! - Diff rendering for file changes
12//! - ANSI scroll regions for split layout (output + fixed input)
13
14pub mod autocomplete;
15pub mod colors;
16pub mod confirmation;
17pub mod diff;
18pub mod hadolint_display;
19pub mod helmlint_display;
20pub mod hooks;
21pub mod input;
22pub mod kubelint_display;
23pub mod layout;
24pub mod plan_menu;
25pub mod progress;
26pub mod response;
27pub mod shell_output;
28pub mod spinner;
29pub mod streaming;
30pub mod tool_display;
31
32pub use autocomplete::*;
33pub use colors::*;
34pub use confirmation::*;
35pub use diff::*;
36pub use hadolint_display::*;
37pub use helmlint_display::*;
38pub use hooks::*;
39pub use input::*;
40pub use kubelint_display::*;
41pub use layout::*;
42pub use plan_menu::*;
43pub use progress::*;
44pub use response::*;
45pub use shell_output::*;
46pub use spinner::*;
47pub use streaming::*;
48pub use tool_display::*;