← Blog
DESIGN

We built the same neon brick breaker with 10 AI models - Opus 5 wins on craft, loses on one rule

Opus 5, DeepSeek V4 Pro, Fable 5, GLM 5.2, GPT-5.5, GPT-5.6 Sol, Kimi K3, Gemini 3.6 Flash, Laguna S 2.1, and Ling 3.0 Flash all built the same neon brick-breaker. Here is what a line-by-line code read found.

Team Command Code
Team Command Code
6 min read
Sep 8, 2026

Ten models, one prompt, one shot each, no follow-up corrections. This round of our ongoing /design benchmark series in Command Code is a neon cyberpunk brick breaker.

The prompt

Create a complete single HTML file for a neon brick breaker game using Canvas. Neon cyberpunk aesthetic with glowing bricks, mouse or touch to move paddle, ball with trail effect, particle explosions on brick break, score, lives, start and game over screens. Make it visually striking with glow effects and smooth gameplay. Output only the full code.

Models and cost

ModelEst. costLOC
Opus 5 (Anthropic)~$0.26 (floor)1,243
GPT-5.6 Sol~$0.52768
Fable 5 (Claude)~$0.60546
GPT-5.5~$0.35400
Gemini 3.6 Flash~$0.45 (~5 prompts)1,311
Kimi K3~$0.10953
GLM 5.2~$0.03592
DeepSeek V4 Pro~$0.0017575
Qwen 3.8-27B~$0.0051,311
Laguna S 2.1 / Ling 3.0 Flashnot estimated931 / 669

Cost figures are one-shot floors from output bytes, not metered invoices - treat them as a lower bound, not a bill.

Method

Only opus-5/index.html got a full line-by-line read this round, cited by line number throughout. The other nine builds were checked mechanically - grepped for external URLs, localStorage, devicePixelRatio, delta-time, mute/pause, substepping, and glow technique (shadowBlur vs. real compositing). That's factual but shallower than a full read, which is why only Opus 5 gets a per-axis craft score below - assigning 1-5 scores to code that wasn't fully read would be inventing precision.

Verified feature matrix

Presence/absence, mechanically checked across every build:

BuildOffline-safeBest score savedDPR-awareDelta-timeSubstepped collisionMutePause
Opus 5✗ (fonts)
DeepSeek V4 Pro
Fable 5
GLM 5.2
GPT-5.5
GPT-5.6 Sol
Kimi K3✗ (fonts)
Gemini 3.6 Flash✗ (fonts)
Laguna S 2.1
Ling 3.0 Flash

Why this comparison is worth running yourself

The result that stands out here isn't "which model wins" - it's that the strongest build in the entire set still shipped with a real gap (no saved high score), while three much cheaper models got that detail right. No single model in this table is safe to assume "complete" without checking. That's the case for running your own prompt across a few models before you commit to one, rather than trusting a single vendor's demo reel.

/design in Command Code is built for exactly that: the same prompt, any model, one CLI, with cost tracked per run so you can see the price-to-quality tradeoff for yourself instead of taking someone else's word for it.

Scorecard: Opus 5

AxisScoreBasis
Spec fidelity5Every prompt clause present
Glow / visual craft5Only real two-pass bloom in the set, with a fallback
Collision5Substepped, correct normals, degenerate-case handled
Architecture5Sectioned, delta-time loop, responsive re-layout
Polish / features58 levels, 4 power-ups, combo system, 10 SFX, mute, pause
Offline-safe2Three Google Fonts <link> tags
Mean4.50

Verdict

Opus 5 is the strongest build in this directory on every axis that involves rendering or physics, and it fails the one constraint this benchmark applies to every demo. Both facts are load-bearing - if you want the best-looking brick breaker in the set, it's this one, after you inline the fonts and add four lines of localStorage.

Gemini 3.6 Flash took the more interesting side path: its one-shot output wasn't playable and needed 4-5 follow-up prompts, but what it landed on has a genuinely unique drop system - falling coin power-ups, one that widens the paddle, one that boosts ball speed. Opus 5's drop system is the only comparable one, and it arrived in a single shot.

On price, Opus 5's $0.26 floor undercuts GPT-5.6 Sol ($0.52), Fable 5 ($0.60), and GPT-5.5 ($0.35) while shipping more than any of them - though DeepSeek V4 Pro ($0.0017) and GLM 5.2 (~$0.03) remain in a different cost class entirely for anyone optimizing purely on spend.

Try this yourself

1npm i -g command-code
1/model opus-5 2/design Create a complete single HTML file for a neon brick breaker game using Canvas. Neon cyberpunk aesthetic with glowing bricks, mouse or touch to move paddle, ball with trail effect, particle explosions on brick break, score, lives, start and game over screens. Make it visually striking with glow effects and smooth gameplay. Output only the full code.

Swap /model to compare against any other model you have access to. Full command reference: commandcode.ai/docs/slash-commands/design. More one-shot comparisons: CommandCodeAI/slash-design-showcase.