Skip to main content

codex_codes/
protocol.rs

1//! App-server protocol types for the Codex CLI.
2//!
3//! Every wire type is generated from the upstream JSON Schema bundle by
4//! `scripts/codegen_protocol.py` and lives in [`crate::protocol_generated::types`].
5//! This module re-exports them and adds the JSON-RPC method-name constants
6//! the dispatch layer matches against.
7//!
8//! # Parsing notifications
9//!
10//! Prefer the typed dispatch in [`crate::messages`] over manual `method` checks:
11//!
12//! ```
13//! use codex_codes::{Notification, ServerMessage};
14//!
15//! fn handle(msg: ServerMessage) {
16//!     if let ServerMessage::Notification(Notification::TurnCompleted(c)) = msg {
17//!         println!("Turn on thread {} completed", c.thread_id);
18//!     }
19//! }
20//! ```
21
22pub use crate::protocol_generated::types::*;
23
24/// JSON-RPC method names used by the app-server protocol.
25///
26/// Use these constants when matching on [`crate::ServerMessage::Notification`] or
27/// [`crate::ServerMessage::Request`] method fields to avoid typos.
28pub mod methods {
29    // Client → server requests
30    pub const INITIALIZE: &str = "initialize";
31    pub const INITIALIZED: &str = "initialized";
32    pub const THREAD_START: &str = "thread/start";
33    pub const THREAD_ARCHIVE: &str = "thread/archive";
34    pub const THREAD_DELETE: &str = "thread/delete";
35    pub const TURN_START: &str = "turn/start";
36    pub const TURN_INTERRUPT: &str = "turn/interrupt";
37    pub const TURN_STEER: &str = "turn/steer";
38    pub const THREAD_RESUME: &str = "thread/resume";
39    pub const THREAD_FORK: &str = "thread/fork";
40    pub const THREAD_UNSUBSCRIBE: &str = "thread/unsubscribe";
41    pub const THREAD_NAME_SET: &str = "thread/name/set";
42    pub const THREAD_METADATA_UPDATE: &str = "thread/metadata/update";
43    pub const THREAD_UNARCHIVE: &str = "thread/unarchive";
44    pub const THREAD_COMPACT_START: &str = "thread/compact/start";
45    pub const THREAD_SHELLCOMMAND: &str = "thread/shellCommand";
46    pub const THREAD_APPROVEGUARDIANDENIEDACTION: &str = "thread/approveGuardianDeniedAction";
47    pub const THREAD_ROLLBACK: &str = "thread/rollback";
48    pub const THREAD_LIST: &str = "thread/list";
49    pub const THREAD_LOADED_LIST: &str = "thread/loaded/list";
50    pub const THREAD_READ: &str = "thread/read";
51    pub const THREAD_INJECT_ITEMS: &str = "thread/inject_items";
52    pub const SKILLS_LIST: &str = "skills/list";
53    pub const HOOKS_LIST: &str = "hooks/list";
54    pub const MARKETPLACE_ADD: &str = "marketplace/add";
55    pub const MARKETPLACE_REMOVE: &str = "marketplace/remove";
56    pub const MARKETPLACE_UPGRADE: &str = "marketplace/upgrade";
57    pub const PLUGIN_LIST: &str = "plugin/list";
58    pub const PLUGIN_READ: &str = "plugin/read";
59    pub const PLUGIN_SKILL_READ: &str = "plugin/skill/read";
60    pub const PLUGIN_SHARE_SAVE: &str = "plugin/share/save";
61    pub const PLUGIN_SHARE_UPDATETARGETS: &str = "plugin/share/updateTargets";
62    pub const PLUGIN_SHARE_LIST: &str = "plugin/share/list";
63    pub const PLUGIN_SHARE_CHECKOUT: &str = "plugin/share/checkout";
64    pub const PLUGIN_SHARE_DELETE: &str = "plugin/share/delete";
65    pub const APP_LIST: &str = "app/list";
66    pub const APP_READ: &str = "app/read";
67    pub const APP_INSTALLED: &str = "app/installed";
68    pub const FS_READFILE: &str = "fs/readFile";
69    pub const FS_WRITEFILE: &str = "fs/writeFile";
70    pub const FS_CREATEDIRECTORY: &str = "fs/createDirectory";
71    pub const FS_GETMETADATA: &str = "fs/getMetadata";
72    pub const FS_READDIRECTORY: &str = "fs/readDirectory";
73    pub const FS_REMOVE: &str = "fs/remove";
74    pub const FS_COPY: &str = "fs/copy";
75    pub const FS_WATCH: &str = "fs/watch";
76    pub const FS_UNWATCH: &str = "fs/unwatch";
77    pub const SKILLS_CONFIG_WRITE: &str = "skills/config/write";
78    pub const PLUGIN_INSTALL: &str = "plugin/install";
79    pub const PLUGIN_UNINSTALL: &str = "plugin/uninstall";
80    pub const REVIEW_START: &str = "review/start";
81    pub const MODEL_LIST: &str = "model/list";
82    pub const MODELPROVIDER_CAPABILITIES_READ: &str = "modelProvider/capabilities/read";
83    pub const EXPERIMENTALFEATURE_LIST: &str = "experimentalFeature/list";
84    pub const EXPERIMENTALFEATURE_ENABLEMENT_SET: &str = "experimentalFeature/enablement/set";
85    pub const MCPSERVER_OAUTH_LOGIN: &str = "mcpServer/oauth/login";
86    pub const CONFIG_MCPSERVER_RELOAD: &str = "config/mcpServer/reload";
87    pub const MCPSERVERSTATUS_LIST: &str = "mcpServerStatus/list";
88    pub const MCPSERVER_RESOURCE_READ: &str = "mcpServer/resource/read";
89    pub const MCPSERVER_TOOL_CALL: &str = "mcpServer/tool/call";
90    pub const WINDOWSSANDBOX_SETUPSTART: &str = "windowsSandbox/setupStart";
91    pub const WINDOWSSANDBOX_READINESS: &str = "windowsSandbox/readiness";
92    pub const ACCOUNT_LOGIN_START: &str = "account/login/start";
93    pub const ACCOUNT_LOGIN_CANCEL: &str = "account/login/cancel";
94    pub const ACCOUNT_LOGOUT: &str = "account/logout";
95    pub const ACCOUNT_RATELIMITS_READ: &str = "account/rateLimits/read";
96    pub const ACCOUNT_SENDADDCREDITSNUDGEEMAIL: &str = "account/sendAddCreditsNudgeEmail";
97    pub const FEEDBACK_UPLOAD: &str = "feedback/upload";
98    pub const COMMAND_EXEC: &str = "command/exec";
99    pub const COMMAND_EXEC_WRITE: &str = "command/exec/write";
100    pub const COMMAND_EXEC_TERMINATE: &str = "command/exec/terminate";
101    pub const COMMAND_EXEC_RESIZE: &str = "command/exec/resize";
102    pub const CONFIG_READ: &str = "config/read";
103    pub const EXTERNALAGENTCONFIG_DETECT: &str = "externalAgentConfig/detect";
104    pub const EXTERNALAGENTCONFIG_IMPORT: &str = "externalAgentConfig/import";
105    pub const CONFIG_VALUE_WRITE: &str = "config/value/write";
106    pub const CONFIG_BATCHWRITE: &str = "config/batchWrite";
107    pub const CONFIGREQUIREMENTS_READ: &str = "configRequirements/read";
108    pub const ACCOUNT_READ: &str = "account/read";
109    pub const FUZZYFILESEARCH: &str = "fuzzyFileSearch";
110    pub const ACCOUNT_USAGE_READ: &str = "account/usage/read";
111    pub const PERMISSION_PROFILE_LIST: &str = "permissionProfile/list";
112    pub const PLUGIN_INSTALLED: &str = "plugin/installed";
113    pub const SKILLS_EXTRA_ROOTS_SET: &str = "skills/extraRoots/set";
114    pub const THREAD_GOAL_GET: &str = "thread/goal/get";
115    pub const THREAD_GOAL_SET: &str = "thread/goal/set";
116    pub const THREAD_GOAL_CLEAR: &str = "thread/goal/clear";
117    pub const THREADSECTION_LIST: &str = "threadSection/list";
118    pub const THREADSECTION_CREATE: &str = "threadSection/create";
119    pub const THREADSECTION_UPDATE: &str = "threadSection/update";
120    pub const THREADSECTION_DELETE: &str = "threadSection/delete";
121    pub const THREAD_SECTION_MOVE: &str = "thread/section/move";
122    pub const ACCOUNT_RATELIMITRESETCREDIT_CONSUME: &str = "account/rateLimitResetCredit/consume";
123    pub const ACCOUNT_WORKSPACEMESSAGES_READ: &str = "account/workspaceMessages/read";
124    pub const EXTERNALAGENTCONFIG_IMPORT_READHISTORIES: &str =
125        "externalAgentConfig/import/readHistories";
126    pub const EXTERNALAGENTCONFIG_IMPORT_RECORDHISTORY: &str =
127        "externalAgentConfig/import/recordHistory";
128
129    // Server → client notifications
130    pub const THREAD_STARTED: &str = "thread/started";
131    pub const THREAD_STATUS_CHANGED: &str = "thread/status/changed";
132    pub const THREAD_TOKEN_USAGE_UPDATED: &str = "thread/tokenUsage/updated";
133    pub const TURN_STARTED: &str = "turn/started";
134    pub const TURN_COMPLETED: &str = "turn/completed";
135    pub const ITEM_STARTED: &str = "item/started";
136    pub const ITEM_COMPLETED: &str = "item/completed";
137    pub const AGENT_MESSAGE_DELTA: &str = "item/agentMessage/delta";
138    pub const CMD_OUTPUT_DELTA: &str = "item/commandExecution/outputDelta";
139    pub const FILE_CHANGE_OUTPUT_DELTA: &str = "item/fileChange/outputDelta";
140    pub const REASONING_DELTA: &str = "item/reasoning/summaryTextDelta";
141    pub const ERROR: &str = "error";
142    pub const ACCOUNT_RATE_LIMITS_UPDATED: &str = "account/rateLimits/updated";
143    pub const MCP_SERVER_STARTUP_STATUS_UPDATED: &str = "mcpServer/startupStatus/updated";
144    pub const MCP_SERVER_OAUTH_LOGIN_COMPLETED: &str = "mcpServer/oauthLogin/completed";
145    pub const REMOTE_CONTROL_STATUS_CHANGED: &str = "remoteControl/status/changed";
146    pub const FILE_CHANGE_PATCH_UPDATED: &str = "item/fileChange/patchUpdated";
147    pub const PLAN_DELTA: &str = "item/plan/delta";
148    pub const TURN_PLAN_UPDATED: &str = "turn/plan/updated";
149    pub const TURN_DIFF_UPDATED: &str = "turn/diff/updated";
150    pub const REASONING_SUMMARY_PART_ADDED: &str = "item/reasoning/summaryPartAdded";
151    pub const REASONING_TEXT_DELTA: &str = "item/reasoning/textDelta";
152    pub const ACCOUNT_LOGIN_COMPLETED: &str = "account/login/completed";
153    pub const DEPRECATION_NOTICE: &str = "deprecationNotice";
154    pub const GUARDIAN_WARNING: &str = "guardianWarning";
155    pub const WARNING: &str = "warning";
156    pub const THREAD_ARCHIVED: &str = "thread/archived";
157    pub const THREAD_CLOSED: &str = "thread/closed";
158    pub const THREAD_DELETED: &str = "thread/deleted";
159    pub const THREAD_UNARCHIVED: &str = "thread/unarchived";
160    pub const THREAD_GOAL_CLEARED: &str = "thread/goal/cleared";
161    pub const THREAD_NAME_UPDATED: &str = "thread/name/updated";
162    pub const SKILLS_CHANGED: &str = "skills/changed";
163    pub const FS_CHANGED: &str = "fs/changed";
164    pub const CONFIG_WARNING: &str = "configWarning";
165    pub const ACCOUNT_UPDATED: &str = "account/updated";
166    pub const APP_LIST_UPDATED: &str = "app/list/updated";
167    pub const COMMAND_EXEC_OUTPUT_DELTA: &str = "command/exec/outputDelta";
168    pub const EXTERNAL_AGENT_CONFIG_IMPORT_COMPLETED: &str = "externalAgentConfig/import/completed";
169    pub const FUZZY_FILE_SEARCH_SESSION_COMPLETED: &str = "fuzzyFileSearch/sessionCompleted";
170    pub const FUZZY_FILE_SEARCH_SESSION_UPDATED: &str = "fuzzyFileSearch/sessionUpdated";
171    pub const HOOK_COMPLETED: &str = "hook/completed";
172    pub const HOOK_STARTED: &str = "hook/started";
173    pub const ITEM_AUTO_APPROVAL_REVIEW_COMPLETED: &str = "item/autoApprovalReview/completed";
174    pub const ITEM_AUTO_APPROVAL_REVIEW_STARTED: &str = "item/autoApprovalReview/started";
175    pub const ITEM_COMMAND_EXEC_TERMINAL_INTERACTION: &str =
176        "item/commandExecution/terminalInteraction";
177    pub const ITEM_MCP_TOOL_CALL_PROGRESS: &str = "item/mcpToolCall/progress";
178    pub const MODEL_REROUTED: &str = "model/rerouted";
179    pub const MODEL_VERIFICATION: &str = "model/verification";
180    pub const PROCESS_EXITED: &str = "process/exited";
181    pub const PROCESS_OUTPUT_DELTA: &str = "process/outputDelta";
182    pub const SERVER_REQUEST_RESOLVED: &str = "serverRequest/resolved";
183    pub const THREAD_COMPACTED: &str = "thread/compacted";
184    pub const THREAD_GOAL_UPDATED: &str = "thread/goal/updated";
185    pub const THREAD_REALTIME_CLOSED: &str = "thread/realtime/closed";
186    pub const THREAD_REALTIME_ERROR: &str = "thread/realtime/error";
187    pub const THREAD_REALTIME_ITEM_ADDED: &str = "thread/realtime/itemAdded";
188    pub const THREAD_REALTIME_OUTPUT_AUDIO_DELTA: &str = "thread/realtime/outputAudio/delta";
189    pub const THREAD_REALTIME_SDP: &str = "thread/realtime/sdp";
190    pub const THREAD_REALTIME_STARTED: &str = "thread/realtime/started";
191    pub const THREAD_REALTIME_TRANSCRIPT_DELTA: &str = "thread/realtime/transcript/delta";
192    pub const THREAD_REALTIME_TRANSCRIPT_DONE: &str = "thread/realtime/transcript/done";
193    pub const WINDOWS_WORLD_WRITABLE_WARNING: &str = "windows/worldWritableWarning";
194    pub const WINDOWS_SANDBOX_SETUP_COMPLETED: &str = "windowsSandbox/setupCompleted";
195    pub const THREAD_SETTINGS_UPDATED: &str = "thread/settings/updated";
196    pub const TURN_MODERATION_METADATA: &str = "turn/moderationMetadata";
197    pub const EXTERNAL_AGENT_CONFIG_IMPORT_PROGRESS: &str = "externalAgentConfig/import/progress";
198    pub const MODEL_SAFETY_BUFFERING_UPDATED: &str = "model/safetyBuffering/updated";
199    pub const THREAD_ENVIRONMENT_CONNECTED: &str = "thread/environment/connected";
200    pub const THREAD_ENVIRONMENT_DISCONNECTED: &str = "thread/environment/disconnected";
201
202    // Server → client requests (approval flow, v2 envelope)
203    pub const CMD_EXEC_APPROVAL: &str = "item/commandExecution/requestApproval";
204    pub const FILE_CHANGE_APPROVAL: &str = "item/fileChange/requestApproval";
205    pub const TOOL_REQUEST_USER_INPUT: &str = "item/tool/requestUserInput";
206    pub const MCP_SERVER_ELICITATION_REQUEST: &str = "mcpServer/elicitation/request";
207    pub const PERMISSIONS_REQUEST_APPROVAL: &str = "item/permissions/requestApproval";
208    pub const ITEM_TOOL_CALL: &str = "item/tool/call";
209    pub const CHATGPT_AUTH_TOKENS_REFRESH: &str = "account/chatgptAuthTokens/refresh";
210    pub const ATTESTATION_GENERATE: &str = "attestation/generate";
211    pub const APPLY_PATCH_APPROVAL: &str = "applyPatchApproval";
212    pub const EXEC_COMMAND_APPROVAL: &str = "execCommandApproval";
213}
214
215// ──────────────────────────────────────────────────────────────────────────
216// Ergonomic constructors over the generated wire types.
217//
218// The types themselves are code-generated from the upstream schema; these
219// hand-written impls live here so they survive regeneration. (`Default` for
220// params whose fields are all serde-defaultable is derived by the codegen
221// itself since #203.) They cover one pain point for downstream consumers:
222//
223//   * `accept` / `decline` / `approved` / `denied` constructors for the
224//     approval-response payloads, so callers don't hand-roll `serde_json`
225//     objects and can't typo the wire `decision` string.
226// ──────────────────────────────────────────────────────────────────────────
227
228impl FileChangeRequestApprovalResponse {
229    /// Approve this file-change request (`{"decision":"accept"}`).
230    pub fn accept() -> Self {
231        Self {
232            decision: FileChangeApprovalDecision::Accept,
233        }
234    }
235
236    /// Approve this and future file changes for the session.
237    pub fn accept_for_session() -> Self {
238        Self {
239            decision: FileChangeApprovalDecision::AcceptForSession,
240        }
241    }
242
243    /// Decline this file-change request (`{"decision":"decline"}`).
244    pub fn decline() -> Self {
245        Self {
246            decision: FileChangeApprovalDecision::Decline,
247        }
248    }
249
250    /// Cancel the turn in response to this request.
251    pub fn cancel() -> Self {
252        Self {
253            decision: FileChangeApprovalDecision::Cancel,
254        }
255    }
256}
257
258impl CommandExecutionRequestApprovalResponse {
259    /// Approve this command execution (`{"decision":"accept"}`).
260    pub fn accept() -> Self {
261        Self {
262            decision: CommandExecutionApprovalDecision::Accept,
263        }
264    }
265
266    /// Approve this and future command executions for the session.
267    pub fn accept_for_session() -> Self {
268        Self {
269            decision: CommandExecutionApprovalDecision::AcceptForSession,
270        }
271    }
272
273    /// Decline this command execution (`{"decision":"decline"}`).
274    pub fn decline() -> Self {
275        Self {
276            decision: CommandExecutionApprovalDecision::Decline,
277        }
278    }
279
280    /// Cancel the turn in response to this request.
281    pub fn cancel() -> Self {
282        Self {
283            decision: CommandExecutionApprovalDecision::Cancel,
284        }
285    }
286}
287
288impl ExecCommandApprovalResponse {
289    /// Approve the exec command (`{"decision":"approved"}`).
290    pub fn approved() -> Self {
291        Self {
292            decision: ReviewDecision::Approved,
293        }
294    }
295
296    /// Approve the exec command for the rest of the session.
297    pub fn approved_for_session() -> Self {
298        Self {
299            decision: ReviewDecision::ApprovedForSession,
300        }
301    }
302
303    /// Deny the exec command (`{"decision":{"denied":{"rejection":...}}}`).
304    pub fn denied(rejection: impl Into<String>) -> Self {
305        Self {
306            decision: ReviewDecision::Denied {
307                rejection: rejection.into(),
308            },
309        }
310    }
311
312    /// Abort the turn in response to the request.
313    pub fn abort() -> Self {
314        Self {
315            decision: ReviewDecision::Abort,
316        }
317    }
318}
319
320impl ApplyPatchApprovalResponse {
321    /// Approve the patch (`{"decision":"approved"}`).
322    pub fn approved() -> Self {
323        Self {
324            decision: ReviewDecision::Approved,
325        }
326    }
327
328    /// Approve this and future patches for the session.
329    pub fn approved_for_session() -> Self {
330        Self {
331            decision: ReviewDecision::ApprovedForSession,
332        }
333    }
334
335    /// Deny the patch (`{"decision":{"denied":{"rejection":...}}}`).
336    pub fn denied(rejection: impl Into<String>) -> Self {
337        Self {
338            decision: ReviewDecision::Denied {
339                rejection: rejection.into(),
340            },
341        }
342    }
343
344    /// Abort the turn in response to the request.
345    pub fn abort() -> Self {
346        Self {
347            decision: ReviewDecision::Abort,
348        }
349    }
350}
351
352#[cfg(test)]
353mod tests {
354    use super::*;
355
356    #[test]
357    fn thread_start_params_default_is_empty_object() {
358        let p = ThreadStartParams::default();
359        assert_eq!(serde_json::to_value(&p).unwrap(), serde_json::json!({}));
360    }
361
362    #[test]
363    fn turn_start_params_default_round_trips() {
364        let p = TurnStartParams::default();
365        let v = serde_json::to_value(&p).unwrap();
366        // thread_id + input are required-but-defaulted; everything else omits.
367        assert_eq!(v["threadId"], "");
368        assert_eq!(v["input"], serde_json::json!([]));
369    }
370
371    #[test]
372    fn thread_resume_and_fork_params_default() {
373        let _ = ThreadResumeParams::default();
374        let _ = ThreadForkParams::default();
375    }
376
377    #[test]
378    fn file_change_approval_response_wire_shape() {
379        assert_eq!(
380            serde_json::to_value(FileChangeRequestApprovalResponse::accept()).unwrap(),
381            serde_json::json!({"decision": "accept"})
382        );
383        assert_eq!(
384            serde_json::to_value(FileChangeRequestApprovalResponse::decline()).unwrap(),
385            serde_json::json!({"decision": "decline"})
386        );
387    }
388
389    #[test]
390    fn command_execution_approval_response_wire_shape() {
391        assert_eq!(
392            serde_json::to_value(CommandExecutionRequestApprovalResponse::accept()).unwrap(),
393            serde_json::json!({"decision": "accept"})
394        );
395        assert_eq!(
396            serde_json::to_value(CommandExecutionRequestApprovalResponse::cancel()).unwrap(),
397            serde_json::json!({"decision": "cancel"})
398        );
399    }
400
401    #[test]
402    fn exec_and_apply_patch_approval_response_wire_shape() {
403        assert_eq!(
404            serde_json::to_value(ExecCommandApprovalResponse::approved()).unwrap(),
405            serde_json::json!({"decision": "approved"})
406        );
407        assert_eq!(
408            serde_json::to_value(ApplyPatchApprovalResponse::denied("keep the original file"))
409                .unwrap(),
410            serde_json::json!({"decision": {"denied": {"rejection": "keep the original file"}}})
411        );
412    }
413}