Skip to main content

outrig_cli/
lib.rs

1//! Internals of the `outrig` CLI binary, exposed as a library so the
2//! integration tests in `tests/` can reach them. End users should depend
3//! on the [`outrig`] crate (the library) instead.
4
5pub mod cli;
6pub mod config_init;
7pub mod error;
8pub mod hf;
9pub mod image_setup;
10pub mod init;
11pub mod llm;
12pub mod mcp_self;
13pub(crate) mod paths;
14pub mod repl;
15pub mod rig_tool;
16pub mod session;