1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Newt-Agent TUI — two screens, ratatui-driven. //! //! - `code` mode: chat / file pane / diff preview / apply-or-reject. //! - `pilot` mode: drake-swarm dashboard (per-rung status, scorecards). //! //! v0 stubs only — surfaces wired in v0.2 / v0.4. pub fn run_code(_path: Option<&std::path::Path>) -> anyhow::Result<()> { anyhow::bail!("newt-tui::run_code not yet implemented") } pub fn run_pilot(_flight_id: &str) -> anyhow::Result<()> { anyhow::bail!("newt-tui::run_pilot not yet implemented") }