I’ve been thinking a lot about what we’re actually trying to measure with coding benchmarks. Almost every major leaderboard evaluates models on a simple binary: did the model complete the task? That pass/fail metric hides the qualitative properties of the solution. A single score doesn't tell you how the code was built, how fragile it is, or whether you would ever want to maintain it.
Opus 5 is a great example of this gap. On paper, it looks like a massive improvement: on Terminal Bench 4.0, Opus 4.8 scored 23.6%, while Opus 5 jumped to 51.8%, surpassing Fable 5. But once developers actually started using it, many called the model practically unusable.
We see this cycle constantly: a new model lands, benchmarks hit record highs, and real-world utility fails to match the headline.
One thing I think we are missing is subjective experience with a model. What happens after the task is solved? Does it produce clean, readable code, or does it dump a fragile, tangled mess into your codebase? Does it write clearly, or is reading its rationale a painful slog?
Because many benchmarks, including Terminal Bench, are open source, we don't have to treat model outputs as a black box. We can inspect the exact artifacts these models leave behind. While evaluating code quality involves subjective elements best judged by humans, static analysis and programmatic tooling already offer a far richer picture than a binary pass/fail score.
To move beyond single scores, I've settled on five programmatic views of model behavior:
- ReliabilityHow consistently does the model solve the same task?
- VerbosityHow much code does it generate to achieve a working solution?
- ComplexityHow structurally expensive, deeply nested, or fragile is that code?
- SpecializationWhere does the model disproportionately excel or struggle across domains?
- WritingHow clearly does it structure its code, comment its work, and explain its reasoning?
Not every Terminal Bench task can be evaluated this way, but I’ve selected 27 that produce measurable code either greenfield solutions or tasks involving debugging and repair.
View the 27 measured tasks
I’m by no means an expert in this domain, and others will likely find more insightful ways to analyze code quality, but I think it's a discussion worth starting. Feel free to critique or poke holes in what I've done here. I've made the code used to generate these graphs available in a Git repository here.
- Fable 5.1 is more reliable in solving the same task
- Opus 5 creates the most cognitive and cyclomatically complex code
- GPT models excel in Science; fall behind on hardware (CAD, RTL)
- Opus 5 produces the heaviest prose, Grok 4.6 the lightest