mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
829f5b6b59
## Why The app-server and exec-server expose separate JSON-RPC APIs, but exec-server currently sources its serialized protocol and envelope types through app-server-oriented code. Giving each API an explicit owner makes the crate boundary legible without introducing shared generic envelopes. ## What changed - Added `codex-exec-server-protocol` to own exec DTOs, process IDs, and JSON-RPC envelopes. - Updated exec-server clients, transports, handlers, and tests to use the new crate. - Exposed app-server's existing JSON-RPC types through a public `rpc` module while retaining root re-exports. - Preserved existing wire shapes, including exec `PathUri` behavior. ## Stack This is PR 1 of 6. Next: [PR #29721](https://github.com/openai/codex/pull/29721), which moves auth mode below the app wire boundary. ## Validation - Exec-server protocol and server coverage passed in the focused protocol test runs. - App-server protocol schema fixtures passed.
15 lines
669 B
Plaintext
15 lines
669 B
Plaintext
# Core crate ownership.
|
|
/codex-rs/core/ @openai/codex-core-agent-team
|
|
/codex-rs/exec-server-protocol/ @openai/codex-core-agent-team
|
|
/codex-rs/ext/extension-api/ @openai/codex-core-agent-team
|
|
/codex-rs/prompts/ @openai/codex-core-agent-team
|
|
/codex-rs/utils/path-uri/ @openai/codex-core-agent-team
|
|
|
|
# Keep macOS AKV signing changes reviewed by Codex maintainers.
|
|
/.github/actions/setup-akv-pkcs11-codesigning/ @openai/codex-core-agent-team
|
|
/.github/scripts/macos-signing/ @openai/codex-core-agent-team
|
|
/.github/workflows/rust-release.yml @openai/codex-core-agent-team
|
|
|
|
# Keep ownership changes reviewed by the same team.
|
|
/.github/CODEOWNERS @openai/codex-core-agent-team
|