cc-switch 0.1.35

Manage multiple Claude / Codex configurations with an optional Rust daemon that transparently proxies traffic to a built-in aggregate dashboard (request inspection, structured conversation view, token stats — a Rust rewrite of ccglass). Zero background processes when the daemon is off. Cross-platform: Linux / macOS / Windows (x86_64 + ARM64).
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod codex_interactive;
#[allow(clippy::module_inception)]
pub mod interactive;

// Re-export functions for convenience
pub use crate::interactive::codex_interactive::handle_codex_interactive_selection;
pub use crate::interactive::interactive::{
    handle_current_command, handle_interactive_selection, launch_claude_with_env, read_input,
    read_sensitive_input,
};