mirror of
https://github.com/openai/codex.git
synced 2026-04-24 14:45:27 +00:00
- protocol: add Op::RunUserShellCommand to model a user-initiated one-off command - core: handle new Op by spawning a cancellable task that runs the command using the user’s default shell; stream output via ExecCommand* events; send TaskStarted/TaskComplete; track as current_task so Interrupt works - tui: detect leading '!' in composer submission and dispatch Op::RunUserShellCommand instead of sending a user message No changes to sandbox env var behavior; uses existing exec pipeline and event types.
21 lines
414 B
Rust
21 lines
414 B
Rust
// Aggregates all former standalone integration tests as modules.
|
|
|
|
mod cli_stream;
|
|
mod client;
|
|
mod compact;
|
|
mod compact_resume_fork;
|
|
mod exec;
|
|
mod exec_stream_events;
|
|
mod fork_conversation;
|
|
mod json_result;
|
|
mod live_cli;
|
|
mod model_overrides;
|
|
mod prompt_caching;
|
|
mod review;
|
|
mod rollout_list_find;
|
|
mod seatbelt;
|
|
mod stream_error_allows_next_turn;
|
|
mod stream_no_completed;
|
|
mod user_notification;
|
|
mod user_shell_cmd;
|