Skip to main content

rho_coding_agent/
lib.rs

1mod agent;
2mod app;
3mod auth;
4mod cancellation;
5mod cli;
6mod clipboard_image;
7mod commands;
8mod config;
9mod config_writer;
10mod credentials;
11mod diagnostics;
12mod export;
13mod herdr;
14mod keybindings;
15mod model;
16mod paths;
17mod prompt;
18mod prompt_templates;
19mod provider;
20mod provider_backend;
21mod reasoning;
22mod session;
23mod skills;
24mod tool;
25mod tools;
26mod transcript;
27mod tui;
28mod update;
29mod usage_limits;
30mod workspace;
31
32pub use app::run;
33pub use cli::Cli;