Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion articles/codex_exec_plans.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Using PLANS.md for multi-hour problem solving

Codex and the `gpt-5-codex` model can be used to implement complex tasks that take significant time to research, design, and implement. The approach described here is one way to prompt the model to implement these tasks and to steer it towards successful completion of a project.
Codex and the `gpt-5.2-codex` model (recommended) can be used to implement complex tasks that take significant time to research, design, and implement. The approach described here is one way to prompt the model to implement these tasks and to steer it towards successful completion of a project.

These plans are thorough design documents, and "living documents". As a user of Codex, you can use these documents to verify the approach that Codex will take before it begins a long implementation process. The particular `PLANS.md` included below is very similar to one that has enabled Codex to work for more than seven hours from a single prompt.

Expand Down
4 changes: 3 additions & 1 deletion examples/codex/build_code_review_with_codex_sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ With [Code Review](https://chatgpt.com/codex/settings/code-review) in Codex Clou

Luckily, we can replicate Codex's cloud hosted review process in our own CI/CD runners. In this guide, we'll build our own Code Review action using the Codex CLI headless mode with both GitHub Actions and Jenkins.

Model recommendation: use `gpt-5.2-codex` for the strongest code review accuracy and consistency in these workflows.

To build our own Code review, we'll take the following steps and adhere to them closely:

1. Install the Codex CLI in our CI/CD runner
Expand All @@ -16,7 +18,7 @@ Once implemented, Codex will be able to leave inline code review comments:

## The Code Review Prompt

GPT-5-Codex has received specific training to improve its code review abilities. You can steer GPT-5-Codex to conduct a code review with the following prompt:
GPT-5.2-Codex has received specific training to improve its code review abilities. You can steer GPT-5.2-Codex to conduct a code review with the following prompt:

```
You are acting as a reviewer for a proposed code change made by another engineer.
Expand Down
4 changes: 3 additions & 1 deletion examples/gpt-5-codex_prompting_guide.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"source": [
"## GPT-5-Codex Prompting Guide\n",
"\n",
"_This guide can also be used for `GPT-5.1-Codex` and `GPT-5.1-Codex-Mini`, we recommend to keep the same prompts and harness for `GPT-5.1-Codex` and `GPT-5.1-Codex-Mini` as `GPT-5-Codex`_\n",
"_This guide can also be used for `GPT-5.2-Codex`, `GPT-5.1-Codex` and `GPT-5.1-Codex-Mini`, we recommend to keep the same prompts and harness for `GPT-5.1-Codex` and `GPT-5.1-Codex-Mini` as `GPT-5-Codex`_\n",
"\n",
"NEW: We recommend upgrading to [GPT-5.2-Codex](https://openai.com/index/introducing-gpt-5-2-codex/), our most advanced agentic coding model yet for complex, real-world software engineering. \n",
"\n",
"Important details about `GPT-5-Codex` and this guide:\n",
"- This model is not a drop-in replacement for GPT-5, as it requires significantly different prompting.\n",
Expand Down