casting_cli/
lib.rs

1/// Casting CLI - Cast a Persona onto your CLI or API
2///
3/// This library provides functionality to wrap command-line tools and APIs
4/// with AI-powered personas using Claude Code.
5pub mod api;
6pub mod cli;
7pub mod commands;
8pub mod error;
9pub mod prompt;
10pub mod tool_config;
11pub mod utils;
12
13// Re-export commonly used types
14pub use cli::{Cli, Commands, TypeArg};
15pub use commands::{handle_completion, handle_list, handle_make, handle_repl};
16pub use tool_config::{ToolConfig, ToolType};