Files
codex/codex-rs/shell-command/src/lib.rs
viyatb-oai 2bd0700b76 refactor: share shell wrapper detection
Expose the known-shell detector from codex-shell-command and map it into codex-core's runtime shell type.

Co-authored-by: Codex <noreply@openai.com>
2026-04-15 14:09:45 -07:00

12 lines
269 B
Rust

//! Command parsing and safety utilities shared across Codex crates.
pub mod shell_detect;
pub mod bash;
pub(crate) mod command_safety;
pub mod parse_command;
pub mod powershell;
pub use command_safety::is_dangerous_command;
pub use command_safety::is_safe_command;