-
-
Notifications
You must be signed in to change notification settings - Fork 45
feat(model): update default model to codex 5.3 #110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,90 @@ | ||
| # Codex MCP Server - TODO | ||
|
|
||
| ## Features from Codex CLI v0.98.0 | ||
|
|
||
| These features were introduced/stabilized in Codex CLI v0.98.0 but are not yet implemented in this MCP server. | ||
|
|
||
| ### High Priority | ||
|
|
||
| #### [ ] Steer Mode Support | ||
| - **Status**: Stable & enabled by default in Codex CLI v0.98.0 | ||
| - **Description**: Allow redirecting agents during execution without stopping them | ||
| - **CLI Flag**: `--steer` (now default) | ||
| - **Implementation Notes**: | ||
| - Add `steerMode` parameter to CodexToolSchema | ||
| - Pass `--steer` flag to codex exec commands | ||
| - Consider whether MCP needs to handle streaming input for steering | ||
| - **Reference**: [v0.98.0 Release Notes](https://github.com/openai/codex/releases/tag/rust-v0.98.0) | ||
|
|
||
| ### Medium Priority | ||
|
|
||
| #### [ ] Collaboration Mode | ||
| - **Status**: Naming unified in v0.98.0 | ||
| - **Description**: Multi-agent parallel collaboration support | ||
| - **Implementation Notes**: | ||
| - Add `collaborationMode` parameter (enum: `none`, `collaborate`) | ||
| - Update command flags accordingly | ||
| - **Reference**: Collaboration mode naming synced across prompts, tools, and TUI | ||
|
|
||
| #### [ ] Enhanced Structured Content | ||
| - **Status**: Text + image content items for dynamic tool outputs in v0.98.0 | ||
| - **Description**: Better support for dynamic tool outputs with mixed content | ||
| - **Implementation Notes**: | ||
| - Current `structuredContent` support is partial | ||
| - May need enhancement to handle text + image content items | ||
| - **Reference**: #10567 | ||
|
|
||
| ### Low Priority | ||
|
|
||
| #### [ ] Personality Mode | ||
| - **Status**: Pragmatic restored as default in v0.98.0 | ||
| - **Description**: Control Codex's response personality | ||
| - **Options**: `pragmatic` (default), `verbose` | ||
| - **CLI Config**: `personality = "pragmatic"` or `personality = "verbose"` | ||
| - **Implementation Notes**: | ||
| - Add `personality` parameter to CodexToolSchema | ||
| - Pass via `-c personality="..."` | ||
| - **Reference**: #10705 | ||
|
|
||
| --- | ||
|
|
||
| ## Implemented in v1.3.4+ | ||
|
|
||
| ### ✅ GPT-5.3-Codex Model | ||
| - **Status**: Implemented | ||
| - **Description**: New default model | ||
| - **Changes**: | ||
| - Updated `DEFAULT_CODEX_MODEL` constant to `'gpt-5.3-codex'` | ||
| - Updated tool definitions to reflect new default | ||
| - Single source of truth for model updates | ||
|
|
||
| ### ✅ Reasoning Effort: 'none' and 'xhigh' | ||
| - **Status**: Implemented (commit 448fa3c) | ||
| - **Description**: Extended reasoning effort options | ||
| - **Changes**: | ||
| - Added `'none'` and `'xhigh'` to reasoningEffort enum | ||
| - Full range: `none`, `minimal`, `low`, `medium`, `high`, `xhigh` | ||
|
|
||
| --- | ||
|
|
||
| ## Future Considerations | ||
|
|
||
| ### Model Version Management | ||
| - Consider adding a `getAvailableModels()` tool to query Codex CLI for available models | ||
| - This would make the server more resilient to future model additions | ||
|
|
||
| ### Configuration File Support | ||
| - Codex CLI supports config files (`.codexrc.toml`) | ||
| - Consider whether MCP server should expose config file options | ||
|
|
||
| ### Streaming Support | ||
| - Codex CLI supports SSE streaming for responses | ||
| - Consider adding streaming support for long-running tasks | ||
|
|
||
| --- | ||
|
|
||
| ## References | ||
|
|
||
| - [Codex CLI Releases](https://github.com/openai/codex/releases) | ||
| - [Codex Changelog](https://developers.openai.com/codex/changelog/) | ||
| - [v0.98.0 Release](https://github.com/openai/codex/releases/tag/rust-v0.98.0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix Prettier formatting to unblock CI.
The pipeline reports a Prettier style issue. Run
prettier --writeon this file to resolve.🧰 Tools
🪛 GitHub Actions: CI
[warning] 1-1: Code style issues found by Prettier. Run 'prettier --write' to fix.
🤖 Prompt for AI Agents