prodex 0.32.0

OpenAI profile pooling and safe auto-rotate for Codex CLI and Claude Code
Documentation
use super::*;

mod execution;
mod plan;
mod profile;
mod proxy_args;
mod proxy_startup;

pub(super) use execution::{RuntimeLaunchStrategy, execute_runtime_launch};
use plan::cleanup_runtime_launch_plan;
pub(super) use plan::{ChildProcessPlan, RuntimeLaunchPlan};
pub(super) use profile::{
    ensure_path_is_unique, record_run_selection, resolve_profile_name,
    should_enable_runtime_rotation_proxy, validate_profile_name,
};
pub(super) use proxy_args::{normalize_run_codex_args, runtime_proxy_codex_passthrough_args};
#[cfg(test)]
pub(super) use proxy_args::{runtime_proxy_codex_args, runtime_proxy_codex_args_with_mount_path};
#[cfg(test)]
pub(super) use proxy_startup::start_runtime_rotation_proxy;
pub(super) use proxy_startup::start_runtime_rotation_proxy_with_listen_addr;