Type-safe Rust wrapper around the Codex CLI with a two-layer builder API.
```rust
use codex_wrapper::{Codex, CodexCommand, ExecCommand, SandboxMode};
let codex = Codex::builder().build()?;
let output = ExecCommand::new("summarize this repository")
println!("{}", output.stdout);
```