TL;DR
Anthropic shipped Fable 5 and a June 22 subscription cliff. OpenAI shipped GPT-5.5 inside Codex plus automations, browser use, and computer control. Here is the honest June 2026 update on which tool fits which developer.
Direct answer
Anthropic shipped Fable 5 and a June 22 subscription cliff. OpenAI shipped GPT-5.5 inside Codex plus automations, browser use, and computer control. Here is the honest June 2026 update on which tool fits which developer.
Best for
Developers comparing real tool tradeoffs before choosing a stack.
Covers
Verdict, tradeoffs, pricing signals, workflow fit, and related alternatives.
Read next
Anthropic gave subscribers two weeks of free Fable 5 access, then it moves to usage credits. Here's what's actually changing, what the real-world burn rates look like, and what to do depending on how you use Claude.
6 min readEvery major AI coding tool just went through a pricing shift. Here are the exact numbers for Cursor, GitHub Copilot, Claude Code, Windsurf/Devin, and the Anthropic API - verified from live pricing pages on June 10, 2026.
9 min readFable 5 drains the 5-hour rolling window dramatically faster than Opus or Sonnet. Here is what the plan multipliers actually mean in practice, what changes on June 22, and how to make your allocation last.
9 min readOur April comparison of Codex and Claude Code became one of the most-read posts on this site - and since then, both tools shipped faster than a junior dev merges PRs. Anthropic launched Claude Fable 5, a Mythos-class model priced at $10/$50 per million tokens, with a hard deadline of June 22 before it exits flat subscription plans. OpenAI pushed GPT-5.5 into Codex as the default model and shipped automations, computer use, in-app browser control, and a Codex SDK for headless workflows.
The tools are not the same tools they were two months ago. This update covers what genuinely changed and what that means for your actual choice in June 2026.
Last updated: June 10, 2026
In April, Claude Code held a clear model quality advantage with Opus 4.8. That gap has widened - but the access story got complicated.
Claude Code side. Fable 5 launched June 9, 2026 as a Mythos-class model sitting above Opus in Anthropic's capability hierarchy. According to the Anthropic announcement, it reaches state-of-the-art on nearly every tested benchmark, with particular strength in long-horizon coding tasks. Stripe reported it compressed months of engineering into a single day on a 50-million-line Ruby codebase. Cursor benchmarked it as the highest-scoring model on CursorBench, citing "a class of long-horizon problems that were out of reach for earlier models." At $10 input / $50 output per million tokens via the API, it is less than half the cost of Claude Mythos Preview.
The catch: Fable 5 is included in Pro, Max, Team, and seat-based Enterprise plans only through June 22. On June 23, accessing it requires usage credits with no committed timeline for re-inclusion in flat plans. Claude Code on consumer subscription plans reverts to Opus 4.8 as the workhorse model after that date unless you pay per use. The fallback is still excellent - Opus 4.8 leads most production coding benchmarks among non-Mythos-class models - but the ceiling drops.
Fable 5 also ships with effort levels that let you trade speed for depth. At medium effort it already beats Opus 4.8; at maximum effort it does its own verification pass before returning an answer. Partners report that "the extra thinking pays for itself" on complex autonomous operations.
Codex side. The Codex models page now lists GPT-5.5 as the recommended default for "complex coding, computer use, knowledge work, and research workflows," with GPT-5.4 as the flagship for general professional work and GPT-5.4-mini for fast subagent tasks. GPT-5.3-codex-spark remains available to ChatGPT Pro subscribers as a research preview optimized for near-instant iteration. Because Codex is bundled with ChatGPT Plus, Pro, Business, Edu, and Enterprise plans, you get GPT-5.5 inside your existing ChatGPT subscription - no separate API cost, no usage-credit cliff on the horizon.
On the official (self-reported) numbers: Fable 5 posts 95.0% on SWE-bench Verified against GPT-5.5's 88.7%, and GPT-5.5 counters on Terminal-Bench 2.0 at 82.7%. No independent verification exists for either set yet - but the direction matches what early partners are reporting.
The headline in June 2026: Claude Code has the higher ceiling model. Codex has the more bundled pricing floor - though note that Codex itself moved to token-based credits on April 2, and the most-discussed open issue on the Codex repo is credit burn rate, so "predictable" deserves an asterisk on both sides.
Both tools have moved well past "coding assistant" but they invested differently.
Claude Code deepened its orchestration stack. The core primitives are now: skills (packaged slash-command workflows your team shares), hooks (shell commands that fire before or after any file edit or commit), subagents (parallel Claude instances coordinated by a lead agent - as of the June 10 release they can nest five levels deep), routines (cloud-managed schedules that run even when your laptop is off), and channels (inbound events from Telegram, Discord, iMessage, or webhooks). The Agent SDK lets you build fully custom orchestration pipelines on top of Claude Code's tool set. Remote Control means you can hand off a terminal session to a phone or browser mid-task without losing state. The surface matrix - CLI, VS Code, JetBrains, Desktop app, Web, iOS - all share the same CLAUDE.md files, settings, and MCP servers.
Codex went wide on environmental access. The big June additions per the developers.openai.com/codex docs are: automations (scheduled background tasks that triage findings into your inbox, supporting cron syntax and worktree isolation), computer use (mouse and keyboard control of macOS or Windows GUIs, currently outside the European Economic Area), an in-app browser, a Chrome extension, and worktrees for keeping automation changes isolated from local work. Codex also added Appshots (visual snapshots of app state), a Codex SDK for programmatic automation, and an App Server for self-hosted deployments. Integrations with GitHub, Slack, and Linear are documented and stable.
The practical difference: Claude Code's agentic model is agent-to-agent coordination with persistent cloud infrastructure. Codex's is task-to-environment with strong local desktop control. If you need Claude to run a multi-agent fan-out on a monorepo refactor and report back tomorrow morning, Claude Code's routines and subagents are built for that. If you need to automate a GUI-only workflow or reproduce a visual bug that only shows up in a real browser, Codex's computer use and in-app browser are the tools that exist for that today.
Get the weekly deep dive
Tutorials on Claude Code, AI agents, and dev tools - delivered free every week.
From the archive
Jun 10, 2026 • 7 min read
Jun 10, 2026 • 8 min read
Jun 10, 2026 • 8 min read
Jun 10, 2026 • 9 min read
Both tools are genuinely usable in pipelines now.
Claude Code ships a claude -p flag for non-interactive execution, a GitHub Actions integration, and GitLab CI/CD support. The Agent SDK handles fully custom orchestration. Pipe logs, diff output, or file lists into claude -p and it works. Example from the docs: git diff main --name-only | claude -p "review these changed files for security issues". The GitHub Code Review feature runs automatic review on every PR without any pipeline config.
Codex exposes a codex exec command for headless runs, a Codex SDK, a GitHub Action, and a non-interactive mode documented at developers.openai.com/codex/noninteractive. Both tools support AGENTS.md / CLAUDE.md context files so CI agents pick up project conventions automatically.
No meaningful difference here for most pipelines. Claude Code has a slight edge on GitHub PR automation (the Code Review feature is turnkey); Codex has the App Server option if you want to host your own instance.
Claude Code sits at the center of the Model Context Protocol ecosystem. MCP is an open standard for connecting tools to external data - Google Drive, Jira, Slack, custom tooling - and Claude Code's MCP support means the same server configuration works across all its surfaces. The ecosystem of third-party MCP servers is large and growing because MCP is open-spec.
Codex supports MCP connectors as well, but also ships its own plugin system (including a Codex Security plugin), its own skills system documented at developers.openai.com/codex/skills, and a memories system that builds a Chronicle of what the agent has learned across sessions. The Codex SDK lets you build programmatic integrations. Amazon Bedrock deployment is available for enterprise teams that need managed infrastructure.
The ecosystem story is closer than in April. MCP is a genuine differentiator for Claude Code because any MCP server you build or install works everywhere. Codex's plugin and skills architecture is well-documented but proprietary.
The long-running HN thread "Is Codex really on par with Claude Code?" captures the June mood better than any benchmark. The case for Codex, from a developer who switched: "Codex has become superior probably due to its sandbox concept. It can complete tasks reliably without intervention whereas claude would have stalled asking permissions." The case for staying, from another: "The things that make Claude Code powerful for me are the persistent session with tool access, the ability to run background tasks on schedules, and the hook/skill system for customization."
The pragmatic consensus came from a team lead: "If you have a good workflow with CC I wouldn't switch, but if you're deciding whether to use one or the other, maybe give Codex a shot." That tracks with our read: switching costs are real, and both tools are past the threshold where the model alone decides it.
| Dimension | Claude Code (June 2026) | Codex (June 2026) |
|---|---|---|
| Top model | Fable 5 (Mythos class) | GPT-5.5 |
| Model access | Fable 5 on plans until June 22, then usage credits; Opus 4.8 standard | GPT-5.5 bundled with all ChatGPT plans |
| API pricing (top model) | $10 input / $50 output per MTok | Via ChatGPT plans or API |
| Agentic orchestration | Subagents, routines, Agent SDK, channels | Automations, worktrees, Codex SDK |
| Computer/GUI control | No | Yes (macOS + Windows, outside EEA) |
| Scheduled tasks | Routines (cloud-managed) + desktop scheduled tasks | Automations (local, with cron) |
| Context protocol | MCP (open standard) | MCP connectors + proprietary plugins |
| Headless / CI | claude -p, GitHub Actions, GitLab CI | codex exec, GitHub Action, App Server |
| IDE support | VS Code, JetBrains, Desktop app | IDE extension (VS Code + others) |
| Integrations | Slack, GitHub, custom channels | GitHub, Slack, Linear |
| Memory / context | CLAUDE.md + auto-memory | AGENTS.md + Chronicle memories |
| Mobile / remote | Remote Control, iOS/Android as remote clients | Codex in ChatGPT iOS/Android (May 14), /goal + inline review on mobile (June 9) |
| Enterprise self-host | - | App Server, Amazon Bedrock |
This is where the landscape genuinely shifted since April.
Individual developer on a flat subscription. If you are on Claude Max ($100/month) or Pro ($20/month), Fable 5 access ends June 22 unless you buy usage credits. After that date, Opus 4.8 is your Claude Code model at no extra charge - which remains strong - but you lose the top model. Codex on ChatGPT Plus ($20/month) gives you GPT-5.5 with no similar cliff in sight. For budget-conscious solo devs, Codex just became the more predictable value.
API/power user. At $10/$50 per MTok, Fable 5 is priced below Mythos Preview and accessible through the API from day one. If you are building production agents and can afford metered usage, Claude Code plus Fable 5 is the highest raw-capability option available. GPT-5.5 API pricing is competitive but Fable 5 holds the benchmark lead for long-horizon coding.
Enterprise team using CI heavily. Both tools have solid GitHub Actions and headless modes. Claude Code's routines run on Anthropic infrastructure (no machine required to stay on). Codex automations run locally and require the Codex app to be running. For always-on CI automation, Claude Code routines have a structural advantage. Codex App Server is the answer for enterprises that want local control and can manage the infrastructure.
Team that needs GUI automation. Codex has computer use today. Claude Code does not. This is not close if you have workflows that involve desktop apps, legacy GUIs, or browser state that cannot be reached programmatically.
In April, the comparison was mostly about model quality and surface polish. Today the decision tree is different:
The model gap is larger - Fable 5 is meaningfully ahead of GPT-5.5 on long-horizon coding in early partner benchmarks - but that gap is gated behind usage credits for most subscription users after June 22. Codex's GPT-5.5 is strong and fully included in existing ChatGPT plans with no announced deadline.
The agentic feature sets have diverged intentionally. Codex went environmental (GUI, browser, local automations). Claude Code went infrastructural (cloud routines, multi-agent coordination, open MCP ecosystem). These are not competing for the same use case anymore; they are complementary tools that happen to overlap on "write code."
The pricing model changed in Anthropic's favor for API users (Fable 5 at half the Mythos Preview cost) and against subscription users (Fable 5 leaving plans). OpenAI made no similar change.
Pick Claude Code if: You are an API user or team with metered usage budgets and want the highest-capability model available for long-horizon agentic work. You want cloud-managed scheduled agents that keep running without a local machine. You are invested in the MCP ecosystem and want tool integrations that work across every Claude surface. You run multi-agent fan-outs where a lead agent coordinates parallel workers.
Pick Codex if: You are on a ChatGPT plan and want the best possible model access on a flat budget after June 22. You need GUI automation, computer use, or visual browser control. You want a single subscription that covers both chat and code. You have workflows that involve Linear, Slack, or GitHub integrations with a stable GUI application layer.
Run both if: Most teams with serious agentic workflows will end up here. Codex for environmental tasks and local GUI automation; Claude Code for complex orchestration and long-horizon agentic coding with the best available model when budget allows. The AGENTS.md and CLAUDE.md conventions are close enough that project context can be kept in sync.
Yes, but it requires usage credits after June 22 on Pro, Max, Team, and seat-based Enterprise plans. It is available immediately with no cliff on the Claude API (metered). Anthropic has stated intent to restore Fable 5 as a standard plan feature when capacity allows, with no committed date. See the Anthropic announcement for the exact rollout terms.
GPT-5.5 is the recommended default for Codex as of June 2026, per the Codex models page. GPT-5.4 is the flagship general model and GPT-5.4-mini is available for fast subagent tasks. GPT-5.3-codex-spark is a research preview for ChatGPT Pro subscribers optimized for near-instant iteration.
Codex has computer use in its app on macOS and Windows (outside the European Economic Area, UK, and Switzerland at launch), documented at developers.openai.com/codex/app/computer-use. This is a Codex-specific feature for controlling desktop GUIs and is distinct from general Claude computer use on the API.
Both are production-ready for CI in June 2026. Claude Code has a turnkey GitHub Code Review feature that needs no pipeline configuration and cloud-managed routines that run without a local machine. Codex has codex exec, a GitHub Action, and an App Server for self-hosted deployments. The right choice depends on whether you need always-on cloud execution (Claude Code routines) or prefer self-managed infrastructure (Codex App Server).
Technical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
OpenAI's coding agent for terminal, cloud, IDE, GitHub, Slack, and Linear workflows. Reads repos, edits files, runs comm...
View ToolOpenAI's flagship. GPT-4o for general use, o3 for reasoning, Codex for coding. 300M+ weekly users. Tasks, agents, web br...
View ToolOpenAI's open-source terminal coding agent built in Rust. Runs locally, reads your repo, edits files, and executes comma...
View ToolInteractive TUI dashboard that shows exactly where your Claude Code and Cursor tokens are going, in real time.
View ToolEvery coding agent in one window. Stop alt-tabbing between Claude, Codex, and Cursor.
View AppTurn a one-liner into a working Claude Code skill. From idea to installed in a minute.
View AppUnlock pro skills and share private collections with your team.
View AppThe primary command-line entry point for Claude Code sessions.
Claude CodeReal-time prompt loop with history, completions, and multiline input.
Claude Code50+ customizable shortcuts for cancel, history, transcript, and more.
Claude Code
Nimbalyst Demo: A Visual Workspace for Codex + Claude Code with Kanban, Plans, and AI Commits Try it: https://nimbalyst.com/ Star Repo Here: https://github.com/Nimbalyst/nimbalyst This video demos N...

Claude Fable 5 Released: Benchmarks, Pricing, Availability, and Real-World Examples Anthropic has released Claude Fable 5, the first general-use “Mythos class” model, and the video reviews the announ...

Composio: Connect AI Agents to 1,000+ Apps via CLI (Gmail, Google Docs/Sheets, Hacker News Workflows) Check out Composio here: http://dashboard.composio.dev/?utm_source=Youtube&utm_channel=0426&utm_...
Anthropic gave subscribers two weeks of free Fable 5 access, then it moves to usage credits. Here's what's actually chan...
Every major AI coding tool just went through a pricing shift. Here are the exact numbers for Cursor, GitHub Copilot, Cla...
Fable 5 drains the 5-hour rolling window dramatically faster than Opus or Sonnet. Here is what the plan multipliers actu...
Windsurf is now Devin Desktop, owned by Cognition after a turbulent 2025 acquisition saga. If the ownership shuffle has...
Anthropic broke its own naming ladder when it introduced the Mythos class and Claude Fable 5. Here is what the shift mea...
A practical comparison of the two most capable terminal-native AI coding agents in 2026 - covering pricing, model flexib...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.