outrig-cli 0.1.0

Command-line tool for running LLM agents with podman-isolated MCP servers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Internals of the `outrig` CLI binary, exposed as a library so the
//! integration tests in `tests/` can reach them. End users should depend
//! on the [`outrig`] crate (the library) instead.

pub mod cli;
pub mod config_init;
pub mod error;
pub mod hf;
pub mod image_setup;
pub mod init;
pub mod llm;
pub mod mcp_self;
pub(crate) mod paths;
pub mod repl;
pub mod rig_tool;
pub mod session;