cd /news/artificial-intelligence/claude-fable-5-vs-gpt-5-5-should-you… · home topics artificial-intelligence article
[ARTICLE · art-26230] src=blog.kilo.ai pub= topic=artificial-intelligence verified=true sentiment=· neutral

Claude Fable 5 vs GPT-5.5: Should You Use the New Model for Everything?

Anthropic released Claude Fable 5, a Mythos-class model for long-running agentic work and coding. In a test comparing it to GPT-5.5 for building a feature flag service, Claude Fable 5 produced a better plan (9.1 vs 8.3) but GPT-5.5 implemented the same plan at 59% lower cost ($6.30 vs $16.66), suggesting planning with Claude Fable 5 and implementing with GPT-5.5 can save costs without sacrificing quality.

read12 min publishedJun 13, 2026

Anthropic released Claude Fable 5, a Mythos-class model positioned for long-running agentic work and ambitious coding. Instead of doing yet another end-to-end coding comparison against GPT-5.5, we split the work into two rounds. Both models planned the same service, we scored the plans against a rubric, and then both models implemented the winning plan from identical starting points in Kilo Code CLI.

TL;DR: Claude Fable 5 wrote the better plan (9.1 vs 8.3 on our rubric), but when both models implemented that same plan, both passed all 15 of our acceptance checks and produced identical rollout behavior, with GPT-5.5 spending $6.30 to Claude Fable 5’s $16.66. Planning with Claude Fable 5 and implementing with GPT-5.5 produced the same service for 59% less than using Claude Fable 5 for both phases.

Most model comparisons run end-to-end, which makes it hard to tell whether a bad result came from a bad plan or bad execution. Separating the phases lets us measure three things with the same inputs. How do the models compare at planning? How do they compare when implementing the exact same plan? And does mixing them (one model plans, the other implements) actually work?

That last question matters for cost. The two models sit at meaningfully different price points:

Both of these are frontier models. GPT-5.5 is OpenAI’s newest flagship and a strong coding model in its own right, at a lower per-token price. The question is whether the most expensive model on the market needs to be in both phases of the workflow.

We asked both models to plan a feature flag service, an of internal tool where you turn features on for a percentage of your users and ramp that percentage up over time.

We picked this task because it hides a real correctness trap. Percentage rollouts must be sticky (the same user always gets the same answer) and growing a rollout from 20% to 40% must keep the original 20% of users enabled, all without storing any per-user state. A plan that hand-waves this with “use a hash” leaves the hard decision to the implementer. A plan that specifies the exact bucketing math removes it.

Each model got the same prompt in a fresh Kilo Code CLI session, both at High reasoning:

I’m building a feature flag service using Bun, Hono, TypeScript, and better-sqlite3. It needs to support boolean flags and percentage-based rollouts, scoped per environment (dev, staging, production). Requirements:

CRUD endpoints for managing flags and their per-environment configurations

An evaluation endpoint that takes a flag key, environment, and user ID, and returns whether the flag is on for that user. Percentage rollouts must be sticky, meaning the same user ID always gets the same result for the same flag at the same rollout percentage, with no per-user state stored in the database

Increasing a rollout from 20% to 40% must keep the original 20% of users enabled

An in-memory cache for flag configs on the evaluation path, with invalidation when a flag changes

An audit log recording every flag change (who, what, when, before/after values)

API key authentication for the management endpoints, with keys stored hashed

Please write me a very detailed plan in plan.md that I can hand to a developer to build from.

Let’s see the results.

Both planning runs finished in about two and a half minutes.

Both Fable 5 and GPT-5.5 got the hard requirement right, and they converged on the same core algorithm: Hash the flag key and user ID into one of 10,000 buckets, then enable the user if their bucket falls below the rollout percentage. Raising the percentage only adds buckets, so the original users stay enabled. Both plans explained the math and specified tests to prove it.

The gap came from everything around the algorithm. We scored both plans against a weighted rubric covering rollout correctness, reliability design, security, decomposition, implementability, operational clarity, and communication. We defined the criteria when we designed the prompt, before either plan existed, since each requirement in the prompt maps to one of them.

Two criteria drove the result.

Reliability design. Claude Fable 5’s plan caught failure modes that GPT-5.5’s never mentioned.

The clearest example involves caching lookups for flags that don’t exist. Without it, every request for an unknown or deleted flag skips the cache and hits the database. Claude Fable 5’s plan required caching those misses, then flagged the subtle follow-up that creating a flag must clear the stale “this flag doesn’t exist” entry, and marked it “the subtle one, don’t skip it”.

Fable 5 also specified pinned hash test values so that any accidental change to the bucketing math (which would silently reshuffle every user in production) fails the test suite loudly.Implementability. The prompt asked for a plan to hand to a developer, andClaude Fable 5’s plan made a decision at every fork and explained why. GPT-5.5’s plan hedged at several of them, with choices like “return not found or disabled depending on the product decision” left open for the developer to settle.

GPT-5.5’s plan was about three times longer (1,456 lines vs 431) and won on operational breadth, with metrics, log hygiene, and deployment notes that Claude Fable 5’s plan mostly skipped.It was a buildable plan. It just left more decisions on the table.

We went in expecting Claude Fable 5’s plan to win, and it did, but it won on judgment rather than completeness. The short version is that GPT-5.5 wrote a bigger plan and Claude Fable 5 wrote a sharper one.

Our prompt deliberately left some design decisions open, and the two plans disagreed on two of them.

The first was whether the environment belongs in the bucketing hash. GPT-5.5’s plan included it, so a user’s rollout position in staging differs from their position in production. Claude Fable 5’s plan excluded it, called the choice out as deliberate, and documented the trade-off. Both choices satisfy the requirements. The difference is that GPT-5.5’s plan made the decision silently inside its hash-input spec while Claude Fable 5’s surfaced it for the reader to veto. Keep this fork in mind for Round 2.

The second was how to hash the API keys. GPT-5.5’s plan specified bcrypt or Argon2, the standard answer for storing passwords. Claude Fable 5’s plan used a single fast SHA-256 and argued why. These keys are 256-bit random strings that cannot be brute-forced regardless of hash speed, so slow hashing buys no security here and adds cost to every authenticated request. GPT-5.5 reasoned from convention, Claude Fable 5 from the problem in front of it.

The pattern is the same in both forks, and it is why Claude Fable 5’s plan won. GPT-5.5 reached for the standard answer and left contested calls to the developer. Claude Fable 5 picked a position, argued it, and flagged it for review. For a document whose job is to remove decisions from implementation, the second style is worth more.

We took Claude Fable 5’s plan and gave it to both models as a plan.md

file in an otherwise empty directory, each in a fresh Kilo Code CLI session at High reasoning. Neither session had any other context and both got the same prompt:

Implement the plan in plan.md. Follow it as written. Run the tests to verify your work before finishing.

One thing we noticed during the runs is that both models independently finished by spinning up review sub-agents (security, performance, logic, deploy safety, duplication, dead code) and then fixing what the reviewers found. Kilo Code CLI offers this directly through its Review option.

We graded both services the same way. First we ran each implementation’s own test suite. Then we booted each server and ran a 15-check acceptance script we had written before either implementation existed. The checks covered the behaviors the plan promised, including authentication rejecting missing and revoked keys, rollout results staying identical across repeated calls and across a server restart, config changes showing up immediately despite the cache, the audit log recording correct before and after values, and no plaintext API keys appearing anywhere in the database.

Both implementations passed everything.

The result that surprised us most came from comparing the two services against each other. We evaluated the same 100 user IDs against the same flag at a 35% rollout on both servers and diffed the outputs. They were identical, down to which individual users were enabled. The plan specified the hash input exactly, both models implemented it exactly, and the two different models produced functionally interchangeable services.

Both models followed the plan closely enough. The file layouts match the structure the plan proposed nearly file for file. Every decision the plan made shows up in both codebases as written, including the bucketing math, the cache design with its subtle invalidation case, the fast key hashing, and the error response format. The hash fork from Round 1 is the sharpest evidence. GPT-5.5 implemented the hash exactly as the plan specified, leaving the environment out, and carried the plan’s reasoning for that choice into a code comment, even though this is the one decision where its own planning run had gone the other way.

Neither model overrode the plan anywhere. Both also crossed the plan’s boundary in the same spot, independently adding a database index the plan had missed for filtered audit log queries.

The two codebases came out close enough that a reviewer would attribute the differences to taste rather than ability. Source size is nearly identical (1,409 vs 1,360 lines, excluding tests). Both isolate the rollout math as pure functions with no database or network access, exactly where the plan drew the module boundaries. Both keep route handlers thin, run every mutation and its audit write inside a single transaction, return the same error format everywhere, and wrote the pinned hash tests the plan demanded. We found no correctness bugs in either codebase while grading, and both servers ran the full acceptance battery without a crash, a hang, or a wrong status code.

The differences are stylistic. Claude Fable 5’s code reads like an annotated build of the plan, with comments explaining which decision each piece implements and why, which made auditing it fast. GPT-5.5’s code is more compact, with less explanation and a few small conveniences of its own, like centralized handling for validation errors. The same contrast shows up in the tests. Claude Fable 5 wrote many small, named scenarios, while GPT-5.5 wrote fewer, denser tests that sweep more inputs per test. Either suite would catch a regression in the rollout math.

Claude Fable 5’s extra tokens went to three places.

Writing roughly twice the tests(966 lines vs 510), covering more distinct scenarios like rollout decreases reversing exactly and rollout independence between flagsAdding a defense the plan never asked for, by rejecting malformed flag keys on the public evaluation endpoint before they reach the cache, closing a path where junk requests could grow the cache unboundedCommenting the code with references back to the plan sections it was implementing

None of this changed the acceptance results. GPT-5.5 shipped the same functional service for about 62% less in two thirds of the time.

Both pipelines produced a service that passed every check. The mixed pipeline cost 59% less.

On a single task, $10.36 is easy to dismiss. However, it easily adds up. A team running 20 comparable tasks a week would pay about $10,800 a year more for the single-model pipeline, and our checks could not tell the two results apart. The exact dollars depend on your tasks, but the 2.4x gap between the pipelines is what scales.

The model-orchestration workflow here, routing the planning to Claude Fable 5 and the implementation to GPT-5.5, already saves you big time. And the timing matters: Fable 5 isn’t the only thing making headlines on cost this month. Agentic coding bills just became a lot more visible for a lot of teams.

On June 1, GitHub Copilot switched everyone to usage-based billing: your subscription now buys a credit pool, and agentic work like chat, agent mode, and tool calls is metered at standard per-model API rates beyond it. And the bills have been ugly, with org projections jumping from $50 to $3,000 in heavy agentic workflows. The flat subscription was the subsidy, and it’s gone (the full story here).

So how do you cut cost even more while still getting frontier models? Plenty of Copilot users are asking exactly that. Here’s the part that closes the gap: OpenAI’s frontier models, GPT-5.5 included, are covered by a ChatGPT subscription, and you can bring that subscription straight into Kilo. So the implementation half of the workflow runs on models you’re already paying a flat rate for, with no separate token charges. You save massively while keeping frontier capability, and the workflow is future-proof against the next pricing change.

For planning, Claude Fable 5 was worth the premium. The price difference was $0.49 on a sub-dollar task, and it brought the plan that decided every open question and caught the failure modes the other plan missed. The plan is the artifact everything downstream depends on, so it is the cheapest place to pay for quality.

For implementing a detailed plan, the premium was not needed. Given a plan that made every decision, GPT-5.5 matched Claude Fable 5 check for check at 2.6x lower cost. Claude Fable 5’s extra spending bought deeper tests and one unprompted hardening, not correctness.

For the mixed setup, the evidence here supports it. GPT-5.5 followed another model’s plan without drifting from its design decisions, including the one decision where its own planning run had gone the other way. If you plan with one model and implement with another in Kilo Code, switching models between the two phases is one click under the prompt box.

The benchmark-driven assumption would be to use the strongest model for everything. What we measured points somewhere narrower. The model gap showed up in planning, and once that judgment was written down as a plan, execution stopped depending on the model. The plan specified the hash input, so two different models produced services that agree down to individual users. It flagged the subtle cache case, so neither missed it. It decided everything else, so neither had to guess, and guessing is where implementations diverge.

── more in #artificial-intelligence 4 stories · sorted by recency
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/claude-fable-5-vs-gp…] indexed:0 read:12min 2026-06-13 ·