One-Shotting a Raccoon Heist Game with Claude Fable 5
Anthropic
OpenAI
Simon Willison revisited a 2022 tweet to test if Claude Fable 5 in Claude Code for web could build a full 3D browser game from scratch, and it succeeded. The game, Raccoon Heist, features generated textures, automated testing, and a scent-tracking guard dog, all built with minimal human input. Despite being an impressive technical feat, Willison notes it's not a great game but works as a starting point.
In 2026, Simon Willison attempted to have Claude Fable 5, running in Claude Code for web, build a complete game from a 2022 tweet that contained GPT-3-generated text and DALL-E images about a raccoon heist game. He gave Claude a prompt with the images and instructions to work independently, commit often to a GitHub Pages branch for previewing, and use an OpenAI API key for image generation. Claude built a 3D browser game using Three.js, generated textures with gpt-image-2, and conducted automated tests with Playwright to fix bugs like the raccoon being invisible on mobile. The game features gameplay mechanics such as collecting loot, avoiding a patrol dog with scent tracking, and a police cruiser, all while managing a time limit. The project was completed in 7 commits, with all assets generated procedurally or via API, and the final game is playable at the link provided. Willison notes the game is an impressive proof of concept but not particularly fun, yet highlights the potential of such autonomous AI development.
- Abbreviations
- GPT-3 = Generative Pre-trained Transformer 3 — Генеративный предобученный трансформер 3
- DALL-E = DALL-E (name, no expansion) — DALL-E (название, без расшифровки)
- API = Application Programming Interface — программный интерфейс приложения
- 3D = Three-Dimensional — трёхмерный
- HTML = HyperText Markup Language — язык гипертекстовой разметки
- CLI = Command Line Interface — интерфейс командной строки
- CSS = Cascading Style Sheets — каскадные таблицы стилей
- JSON = JavaScript Object Notation — нотация объектов JavaScript
- WASD = W, A, S, D keys — клавиши W, A, S, D
Source: Simon Willison —
original
