codexBackend implements Backend by spawning `codex app-server --listen stdio://` and communicating via JSON-RPC 2.0 over stdin/stdout.
| 99 | // codexBackend implements Backend by spawning `codex app-server --listen stdio://` |
| 100 | // and communicating via JSON-RPC 2.0 over stdin/stdout. |
| 101 | type codexBackend struct { |
| 102 | cfg Config |
| 103 | } |
| 104 | |
| 105 | func buildCodexArgs(opts ExecOptions, logger *slog.Logger) []string { |
| 106 | args := []string{"app-server", "--listen", "stdio://"} |
nothing calls this directly
no outgoing calls
no test coverage detected