core-agent-ide/codex-rs/core
Michael Bolin aa36a15f9f
fix: make all fields of Session struct private again (#840)
https://github.com/openai/codex/pull/829 noted it introduced a circular
dep between `codex.rs` and `mcp_tool_call.rs`. This attempts to clean
things up: the circular dep still exists, but at least all the fields of
`Session` are private again.
2025-05-06 16:21:35 -07:00
..
src fix: make all fields of Session struct private again (#840) 2025-05-06 16:21:35 -07:00
tests feat: make cwd a required field of Config so we stop assuming std::env::current_dir() in a session (#800) 2025-05-04 10:57:12 -07:00
Cargo.toml feat: support mcp_servers in config.toml (#829) 2025-05-06 15:47:59 -07:00
prompt.md feat: initial import of Rust implementation of Codex CLI in codex-rs/ (#629) 2025-04-24 13:31:40 -07:00
README.md feat: initial import of Rust implementation of Codex CLI in codex-rs/ (#629) 2025-04-24 13:31:40 -07:00

codex-core

This crate implements the business logic for Codex. It is designed to be used by the various Codex UIs written in Rust.

Though for non-Rust UIs, we are also working to define a protocol for talking to Codex. See:

You can use the proto subcommand using the executable in the cli crate to speak the protocol using newline-delimited-JSON over stdin/stdout.