rho-coding-agent 1.17.0

A lightweight agent harness inspired by Pi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Cohesive App-owned UI state groups for history, composer input, pending work,
//! and the live turn.

mod history_ui;
mod input_ui;
mod pending_work;
mod turn_ui;

pub(in crate::tui) use history_ui::HistoryUi;
pub(in crate::tui) use input_ui::InputUi;
pub(in crate::tui) use pending_work::PendingWorkUi;
#[cfg(test)]
pub(in crate::tui) use turn_ui::SessionUiPhase;
pub(in crate::tui) use turn_ui::TurnUi;