claudy 0.2.2

Modern multi-provider launcher for Claude CLI
1
2
3
4
5
6
7
8
9
10
/// Config overlay pipeline: injects provider-specific settings via env vars
/// so Claude Code can reuse its own ~/.claude/ directory (skills, plugins)
/// while overriding model, base URL, and auth per-provider.
///
/// The pipeline is decomposed into typed stages (see `stages.rs`) so each
/// boundary is testable and auditable independently.
pub mod pipeline;
pub mod stages;

pub use pipeline::prepare_provider_env;