Claw field notebook
last updated 2026-05-15 edit on GitHub colophon
OpenAI / Codex CLI / CDX.8 · 3 min read

Updates feed — what's been shipping

Codex CLI ships roughly weekly. This page summarises the last six months of major releases — what landed, what got deprecated, what's pre-release — plus where to subscribe to the official changelog.

Where to track releases#

SurfaceUse for
github.com/openai/codex/releasesTagged releases with full notes per version (tag format rust-v0.130.0)
developers.openai.com/codex/changelogCurated changelog with the human-readable summary per release
github.com/openai/codex commitsDay-by-day churn — useful when you’re chasing a specific issue

Release cadence: roughly weekly during 2025-26, sometimes multiple releases in a single week. The CLI is actively maintained and individual features ship frequently.

Recent releases (last 6 months)#

0.130.0 — 8 May 2026#

  • Plugin share metadata + discoverability — first cut at letting plugins discover and advertise each other.
  • codex remote-control headless entrypoint — new way to drive Codex programmatically.
  • App-server thread pagination — handles long-running sessions better.
  • Bedrock AWS console-login credentials — auth via existing AWS profiles instead of static keys.
  • Windows sandbox binary cache fix — addresses a class of “sandbox binary missing” errors.
  • Built-in MCPs become “first-class runtime servers” (PR #21356) — auto-start without explicit config.

0.129.0 — 7 May 2026#

  • Modal Vim editing in TUI (/vim) — vim-mode for the terminal input box.
  • Redesigned resume/fork picker — resume a session or fork a new one more clearly.
  • /hooks for hook browsing — see what hooks are loaded in the current session.
  • Linux standalone bwrap bundled with npm and DotSlash releases — system bwrap no longer required.
  • Windows: named pipe + ConPTY + PowerShell improvements — better Windows-native experience.
  • Fix: large MCP tool outputs truncated in rollouts (PR #20260) — prevents context blowouts.

0.128.0 — 30 April 2026#

  • Persisted /goal workflowscreate, pause, resume, clear for long-running goals.
  • codex update command — Codex ships a built-in codex update self-update subcommand (alternative to npm i -g @openai/codex@latest). It’s stable as of 0.128 per the CLI reference.
  • Configurable TUI keymaps — remap the terminal UI shortcuts.
  • Expanded permission profiles with built-in defaults:
    • :read-only — pure observation, no writes
    • :workspace — write inside the project directory only
    • :danger-no-sandbox — no sandbox at all (use with care)
  • Combined entry covers 0.125–0.127 — the changelog notes individual sub-releases happened but were rolled up into 0.128.0’s notes.

Earlier in 2026 — themes#

  • WSL1 dropped at 0.115 — Linux sandbox moved to bwrap; WSL2 only from that point.
  • GPT-5.4 for Codex landed 5 March 2026 — became the top-tier general-purpose model.
  • Desktop Codex app released February 2026 — managing multiple parallel agents over longer periods.
  • GPT-5.3-Codex released 5 February 2026 — coding-specialised model that powers cloud tasks and /review.
  • GPT-5.3-Codex-Spark released ~12 February 2026 — Cerebras hardware. InfoQ reported it ran about 15× faster than earlier Codex versions; the spec is documented at developers.openai.com/codex/models as the near-instant research preview for ChatGPT Pro.

History#

  • April 2025 — Codex CLI initial release (per Wikipedia / press coverage of the Codex line).
  • 16 May 2025 — Codex Cloud research preview announced, powered by codex-1 (an o3-derived reasoning model).
  • June 2025 — ChatGPT Plus users gained Codex access (initially Plus + Pro only).
  • March 2026 — OpenAI announced ChatGPT desktop app + Codex + Atlas would be merged into a single unified “superapp” desktop application.

Pre-releases#

As of 15 May 2026 there are several 0.131.0-alpha.* tags on GitHub Releases. Alpha releases are reasonable to try if you’re chasing a specific feature; expect rough edges.

# Pin a specific alpha
npm install -g @openai/codex@0.131.0-alpha.16

How to keep up#

  • GitHub Releases watch — star/watch the repo, choose “Releases only” in watch settings.
  • Changelog page bookmarkdevelopers.openai.com/codex/changelog is the human-readable summary.
  • Subscribe to OpenAI’s developer-newsletter — major model launches are also announced there.

Recent breaking changes worth knowing#

VersionWhat changed
0.115WSL1 support dropped (Linux sandbox moved to bwrap).
0.128--full-auto flag is now deprecated; use --sandbox workspace-write explicitly.
MultipleChat Completions API path is deprecated; use the Responses API (default in all current configs).
0.130Built-in MCPs auto-start as first-class servers; if you had explicit config for OpenAI Docs MCP or Memories MCP, the explicit entry is redundant now.

What’s “stable” vs “experimental”#

FeatureStatus (15 May 2026)
codex interactive CLIStable
codex exec non-interactiveStable
codex login (OAuth + API key)Stable
Config file (~/.codex/config.toml)Stable
MCP via configStable
codex mcp <subcommand> CLIExperimental
codex mcp-server (Codex as MCP server)Experimental
ProfilesExperimental
SubagentsStabilising
codex updateStable (added in 0.128 per the CLI reference)
/goal persistent workflowsStabilising (added in 0.128)
/vim modal editingStable (added in 0.129)

When picking up Codex CLI for the first time, lean on the “stable” surface. The experimental commands work but may rename or change between releases.

A reminder#

This page goes stale fast. The canonical reference is developers.openai.com/codex/changelog. When you depend on a specific behaviour, link to that — not to this page.

What to do next#

Sources