core-agent-ide/codex-rs/core
Michael Bolin c9e2def494
fix: add true,false,nl to the list of trusted commands (#1676)
`nl` is a line-numbering tool that should be on the _trusted _ list, as
there is nothing concerning on https://gtfobins.github.io/gtfobins/nl/
that would merit exclusion.

`true` and `false` are also safe, though not particularly useful given
how `is_known_safe_command()` works today, but that will change with
https://github.com/openai/codex/pull/1668.
2025-07-24 12:59:36 -07:00
..
src fix: add true,false,nl to the list of trusted commands (#1676) 2025-07-24 12:59:36 -07:00
tests fix: create separate test_support crates to eliminate #[allow(dead_code)] (#1667) 2025-07-24 12:19:46 -07:00
Cargo.toml fix: create separate test_support crates to eliminate #[allow(dead_code)] (#1667) 2025-07-24 12:19:46 -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.