ARC-AGI-3: Your Agentic Pipeline Has a Sub-1% Reasoning Floor
The Benchmark That Breaks Everything
ARC-AGI-3 launched with 135 interactive mini-games across ~1,000 levels, all verified as solvable by humans on first contact with no training. The results are devastating for anyone betting on agentic AI reasoning:
| Model | Lab | ARC-AGI-3 Score |
|---|---|---|
| Gemini Pro | 0.37% | |
| GPT-5.4 High | OpenAI | 0.26% |
| Opus 4.6 | Anthropic | 0.25% |
| Grok-4.20 | xAI | 0.00% |
| Humans | — | 100% |
The spread between first and last place among frontier models is 0.37 percentage points — statistically indistinguishable noise. This isn't a tuning gap; it's a structural limitation of current approaches. Chain-of-thought, tree-of-thought, and tool use are all insufficient for adaptive real-time reasoning in novel environments.
Why This Benchmark Is Different
ARC-AGI-3 tests zero-instruction game-like scenarios requiring rule discovery, goal formation, and strategy planning entirely from interaction. This is fundamentally different from standard benchmarks that test pattern completion over trained distributions. The critical context: labs spent millions training specifically on ARC-AGI-2 and pushed scores from 3% to ~50% in under a year. ARC-AGI-3 is designed to resist this Goodhart's Law dynamic.
A model that scores 90% on MMLU but <1% on ARC-AGI-3 has fundamentally different reasoning capabilities than its leaderboard position suggests.
Five independent sources corroborate these scores. The uniform failure across architecturally different models from four separate labs confirms this is not a prompt engineering problem — it's a capability ceiling. 25 games are publicly available for human play, and spending an hour with them calibrates your intuition about what these models genuinely cannot do.
What This Means for Your Agents
If your agentic architecture assumes the LLM can discover rules in unfamiliar environments, plan strategies without explicit instructions, or generalize from zero-shot interaction, the empirical evidence is now clear: it fails at rates above 99%. The competitive advantage isn't picking the "smartest" model — all models reason at roughly the same (near-zero) level on novel tasks. The advantage is in the scaffold design: tool-orchestrated pattern matching, structured fallback logic, and human-in-the-loop gates at reasoning boundaries.
Separately, new research shows step-wise RL rewards improve multi-step agent task success by up to 40% compared to terminal-only rewards. This is directly actionable: most agent training frameworks default to terminal rewards, and adding intermediate signals is a reward-architecture change, not a model change. The 40% figure lacks full methodology disclosure, but aligns with classical reward shaping theory and is worth a controlled experiment.
What to do
Run your production LLMs against ARC-AGI-3's 25 public games this sprint to establish a reasoning capability baseline
Add interactive reasoning tasks (rule discovery, goal formation from interaction) to your agent eval pipeline by end of quarter
Experiment with per-step RL rewards in your agent training pipelines — same agent, same tasks, dense vs. sparse rewards
Monitor ARC-AGI-3 leaderboard progression over 6 months to calibrate model selection decisions