Add codex-exec-server crate

This adds the standalone exec-server stdio JSON-RPC crate and its
smoke tests without wiring it into the CLI or unified-exec yet.

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
starr-openai
2026-03-16 23:10:50 +00:00
parent 580f32ad2a
commit 144c3593db
9 changed files with 1281 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#[tokio::main]
async fn main() {
if let Err(err) = codex_exec_server::run_main().await {
eprintln!("{err}");
std::process::exit(1);
}
}