Skip to content

Vibe Coding Games: What It Is and How to Start (2026)

Last updated: June 2026.

"Vibe coding" went from a tweet to the Collins Dictionary Word of the Year in under a year. For games, it's one of the most fun ways to build right now: you describe what you want, the AI writes it, and you steer by feel instead of by syntax. Here's what the term actually means, how to vibe-code a game, and where it works and where it bites.

Where the term came from

The phrase comes from Andrej Karpathy, a co-founding member of OpenAI, in a February 2025 post. He described "a new kind of coding where you fully give in to the vibes, embrace exponentials, and forget that the code even exists," possible because AI coding models had gotten good enough that you could "just see stuff, say stuff, run stuff, and copy-paste stuff, and it mostly works." He framed it for throwaway weekend projects, which is worth remembering.

The developer Simon Willison sharpened the definition: true vibe coding means building software with an LLM without reviewing the code it writes. If you read, test, and understand every line, you're using AI as a typing assistant, which is something different. By late 2025 the term had spread far enough that Collins named it Word of the Year.

For games, this maps cleanly: you describe a game, the AI builds it, you play it and ask for changes, and you mostly don't look at the code. That's vibe-coding a game.

Why games are a great fit for it

Games are visual and immediately testable, which is exactly the loop vibe coding rewards. You can see in two seconds whether the jump feels right or the enemy is too fast, so the "say stuff, run stuff" cycle is tight and satisfying. And the famous proof point is a game: in early 2025 the indie developer Pieter Levels vibe-coded a browser 3D flight simulator in a few hours using an AI code editor and Three.js, with no game-dev background, and it became a viral hit. (His revenue figures are self-reported, so take the dollar amounts with a grain of salt, but the build itself is real and well-documented.)

Two ways to vibe-code a game

There are two flavors, depending on how much you want to touch.

General AI coding tools. Cursor, Claude Code, and GitHub Copilot let you build a game the way Karpathy described: prompt an AI coding agent, usually with a web framework like Three.js, and iterate. You don't have to read the code, but the project is a real codebase you can take anywhere. This is the most flexible route and the most powerful, with the most rope to hang yourself.

Game-specific prompt-to-game tools. Cinevva, Rosebud, Summer, Replit, and Nilo wrap the whole loop into a purpose-built environment. You describe a game, it builds a playable one, and you refine by chatting, with assets generated for you. This is the easiest on-ramp and the fastest to a shareable result. Our AI game generator comparison breaks down which is which.

How to vibe-code a game, step by step

  1. Pick a small idea. Vibe coding shines on weekend-size scope. Name a genre, one twist, and a goal.
  2. Write a one-sentence prompt. "Make a neon snake game that speeds up as you grow." Let the tool build a first version. You can try a one-click prompt to skip the blank page.
  3. Play, then ask for one change. "Make it faster," "add a score," "the controls feel sticky, make them snappier." Change, play, repeat.
  4. Generate assets by asking. "Give it a low-poly look," "add upbeat music," "use a desert skybox."
  5. Publish the link. Browser tools share in one click. Get it in front of people and let their reactions drive the next round.

You can start vibe-coding a 3D game free in your browser right now if you want to learn by doing.

The pitfalls (and how to dodge them)

Vibe coding is powerful, but the honest picture from 2026 has real warning signs:

  • "Almost right, but not quite." Two-thirds of developers cite this as their top AI frustration. The fix for games is small, specific requests and a willingness to revert when a change makes things worse.
  • Security and quality debt. Studies in 2025 found a large share of AI-generated code samples introduced security flaws, and that duplicated, un-refactored code is rising. For a throwaway game this rarely matters; for anything that handles user data or money, review the code or have someone who can.
  • It works until it doesn't. In one widely-reported incident, an AI coding agent deleted a production database during a code freeze. The lesson: keep backups, separate experiments from anything important, and don't point a vibe-coding agent at systems you can't afford to lose.

Karpathy himself later called the original post "a throwaway tweet" and prefers more careful language for serious work. The takeaway isn't that vibe coding is bad, it's that it's brilliant for prototypes and small games and risky as your only method for things that need to be correct.

Is vibe coding "real" game development?

It's a real and useful way to build, especially for prototypes, jams, and small games, and it's how a lot of people are getting into games for the first time. It's not a replacement for understanding what you're building when the stakes are high. The most productive stance in 2026 is to vibe-code to explore and prototype fast, then slow down and understand the parts that have to be reliable. For most browser games, that line sits comfortably in your favor.

Common Questions

What does vibe coding mean?

Vibe coding is building software by describing what you want to an AI and letting it write the code, without reviewing the code yourself. The term was coined by Andrej Karpathy in February 2025 and named Collins Word of the Year in 2025. For games it means describing a game in plain language and refining it by chatting, instead of writing code.

How do I start vibe coding a game?

Pick a small idea, describe it in one sentence to a prompt-to-game tool or an AI code editor, play the first version, and ask for one change at a time. Browser-based AI game creators are the easiest starting point because they build a playable game and let you share it instantly with no setup.

Is vibe coding good for making games?

Yes, especially for prototypes and small or casual games, where the fast describe-play-refine loop is a great fit. It's weaker for large, complex, or correctness-critical projects, where unreviewed AI code can introduce bugs and security issues. Use it to move fast, and review the code for anything that has to be reliable.

What tools do people use to vibe-code games?

Two kinds. General AI coding tools like Cursor, Claude Code, and GitHub Copilot (often with Three.js for the web), and game-specific prompt-to-game tools like Cinevva, Rosebud, Summer, Replit, and Nilo. The game-specific tools are the easier on-ramp; the coding tools are more flexible.