aca 0.3.1

A Rust-based agentic tool that automates coding tasks using Claude Code and OpenAI Codex CLI integrations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! OpenAI Codex integration layer.
//!
//! This module mirrors the structure of the Claude integration while
//! providing CLI-based access to OpenAI's Codex agent.

pub mod codex_interface;
pub mod rate_limiter;
pub mod types;

#[cfg(test)]
mod tests;

pub use codex_interface::OpenAICodexInterface;
pub use rate_limiter::{OpenAIRateLimiter, RateLimiterStatus};
pub use types::*;