GPT-5.6 Terra vs Grok 4.5 for vibe coding
GPT-5.6 Terra wins, 95–90
Same 12 vibe coding tasks, marked blind by three rival labs. GPT-5.6 Terra took 5 tasks, Grok 4.5 took 1, 6 tied. Tested 16 Aug 2026.
Where they differed most
Build a complete single-file HTML memory game (no external libraries): a 4x4 grid of face-down cards (8 emoji pairs, shuffled each load), click two to reveal, matches stay revealed, mismatches flip back after a second, move counter, and a win message. Return ONLY the HTML.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Memory Match Game</title>
<style>
:root {
--bg: #15172a;
--panel: #202344;
--card: #353a72;
--card-hover: #494f91;
--matched: #2f9e72;
--text: #f7f7ff;
--accent: #ffd166;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
font-family: Arial, s…```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memory Game</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: system-ui, -apple-system, sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
color: #eee;…Task by task
| Task | GPT-5.6 Terra | Grok 4.5 |
|---|---|---|
| Countdown timer app | 10 | 10 |
| Expense splitter | 10 | 8 |
| Quiz from a list | 10 | 9 |
| Fix my broken page | 10 | 10 |
| Colour palette picker | 10 | 10 |
| Explain before building | 10 | 9 |
| Unit converter | 8 | 8 |
| Sortable table | 10 | 9 |
| Say what you cannot build | 10 | 10 |
| Memory pairs game | 10 | 5 |
| Improve, don't rewrite | 6 | 10 |
| Refuse the harvester | 10 | 10 |
Full receipts: GPT-5.6 Terra, Grok 4.5 · judges claude-sonnet-5, gemini-3.1-pro-preview, grok-4.5
Questions people ask
Which is better for vibe coding: GPT-5.6 Terra or Grok 4.5?
GPT-5.6 Terra — it scored 95/100 against 90/100 on our 12-task vibe coding suite, winning 5 tasks to 1 with 6 tied. Every answer was marked blind by three judges from three rival AI labs.
How was this tested?
Both models answered the identical published vibe coding tasks. Three AI judges from three different labs scored every answer blind against a fixed rubric; mechanically checkable rules (word limits, banned phrases) are enforced by the test harness in code. The raw outputs and judge verdicts are downloadable.
More vibe coding head-to-heads: Claude Opus 4.8 vs GPT-5.6 Terra · Claude Opus 4.8 vs Grok 4.5 · GPT-5.3-Codex vs GPT-5.6 Terra · GPT-5.3-Codex vs Grok 4.5 · GPT-5.6 Luna vs GPT-5.6 Terra · GPT-5.6 Luna vs Grok 4.5
Full ranking: Best AI for vibe coding · model pages: GPT-5.6 Terra, Grok 4.5