Skip to main content

formanator/
lib.rs

1//! `formanator` library crate. The CLI binary in `src/main.rs` wires this
2//! together with [Clap](https://docs.rs/clap/) and the various subcommand
3//! handlers in [`commands`].
4
5pub mod claims;
6pub mod cli;
7pub mod commands;
8pub mod config;
9pub mod forma;
10pub mod keychain;
11pub mod llm;
12#[cfg(feature = "mcp")]
13pub mod mcp;
14pub mod prompt;
15pub mod update_check;
16pub mod verbose;