VIBETOPLIST

Toplist for Vibe-Coded Games

Discover amazing AI vibe-coded games. Vote for your favorites and earn rewards — or list your own free for a permanent backlink (SEO), organic traffic, and engaged players.

5Listed Games
35,743Total Votes
0Unique Voters
7,616This Month

What is vibe coding?

A plain-language guide to the practice that's reshaping how indie games get built — where the term came from, how it differs from AI-assisted coding, the tools people actually use, and how to ship a vibe-coded game of your own.

Updated May 2026 · ~9 min read

1. The definition (in one sentence)

Vibe coding is the practice of building software by describing what you want to an AI coding assistant in plain language — and shipping the result without reading or hand-editing every line.

You are the director. The AI is the implementer. You tell it what game, app, or feature you want; it writes the code; you run it, look at the output, and respond to it like you would respond to a draft from a teammate. If the vibe is right, you ship it. If it isn't, you describe the next change and repeat. The defining trait isn't the AI — it's that you've given up on inspecting every diff.

That trade-off is the whole point. You move at a speed traditional coding can't match, in exchange for some loss of precision over what the code is doing line by line. For small projects — game jams, browser toys, prototypes, marketing pages, one-off internal tools — that trade is wildly favorable. For mission-critical systems, it isn't.

2. Origin: Andrej Karpathy's February 2025 tweet

The term was coined by Andrej Karpathy — co-founder of OpenAI, former director of AI at Tesla — on X in February 2025. He described a new style of working in which you "fully give in to the vibes, embrace exponentials, and forget that the code even exists," explaining that the LLMs had finally gotten "too good" not to.

The framing landed because everyone working in code already knew the feeling. They just hadn't had a name for it. By March 2025, the phrase had been picked up by indie developers, design Twitter, and game-dev communities. By the end of that year, it was the headline of essays from Y Combinator partners, Cursor case studies, and a wave of "I built X in a weekend" threads on social.

What turned a tweet into a movement was timing. Tools like Cursor, Claude Code, and Replit Agent had reached a level where you could describe a small game in two paragraphs and get a working build back in a few minutes. The bottleneck stopped being how fast you could type and started being how clearly you could describe what you wanted.

3. Vibe coding vs. AI-assisted coding

These two often get conflated. They're not the same thing.

  • AI-assisted coding means the developer is still driving. The AI is faster autocomplete: it suggests the next line, refactors a function, fills in a regex. The dev reads, accepts, edits. Productivity climbs maybe 2–3×, but the workflow is recognizably the same one engineers have used for thirty years.
  • Vibe coding means the developer has handed the implementation off. The AI is the writer; the human gives intent, judges output, and steers the next iteration. The dev may not read the code at all. Productivity, on the right kind of project, climbs 10–50×, but the workflow looks more like prompting than programming.

Most professional engineers move between both modes during a workday: vibe coding for a throwaway script, AI-assisted coding for production code in a system they own. The label "vibe coder" usually refers to people whose primary mode — for the projects they share publicly — is the first one.

4. The vibe-coding community in 2026

Within a year, vibe coding turned from a tweet into a small, recognizable scene. The clearest pillars:

  • Pieter Levels (@levelsio) — early popularizer, prolific builder, host of the first widely-attended Vibe Jam in 2025. His "ship in a weekend, charge for it on Monday" ethos became the template most newcomers absorb without realizing it.
  • The Cursor Vibe Jam — recurring game-jam event organized around the workflow. Entries must be built primarily with AI coding assistance and are typically web-playable.
  • Y Combinator — partners began publicly describing their winter 2025 batch as overwhelmingly AI-generated; the framing crossed over into mainstream tech press and gave the practice a "real startups are doing this" stamp.
  • The "indie hacker" subset of X / Bluesky / Threads — daily showcases of small games, weather apps, single-purpose tools. The community norm is to ship publicly the same day you start.

The cultural overlap with browser-game and game-jam scenes is enormous. People who shipped Flash games in 2010 and itch.io entries in 2018 are exactly the people shipping vibe-coded games in 2026; the tooling caught up with the intent.

5. Tools landscape

There is no single "vibe coding tool" — there's a small family of overlapping ones. The major ones in 2026:

IDE-style

  • Cursor (Anysphere) — by far the most-used. Forked from VS Code, with Composer for multi-file edits and Tab for inline completion. Pairs with whatever frontier model you point it at; Anthropic's Claude Sonnet is the default in most setups.
  • Claude Code (Anthropic) — agentic CLI tool that runs Claude on your shell. Designed for "describe a task, watch it work" loops; particularly strong for projects with a lot of file shuffling, infra, or multi-step refactors.
  • GitHub Copilot Workspace — Microsoft's entry. More AI-assisted than vibe-coded by default, but the agentic mode is closing the gap.

Browser-only

  • Replit Agent — full project lifecycle in a browser tab. Best for "I have an idea and a phone" sessions.
  • Lovable, Bolt.new, v0 by Vercel — front-end-leaning. You describe a web app or page; you get a deployable app or a UI you can drop into your own project.

Game-specific

  • Rosebud AI — explicitly built for vibe-coding games. Browser-based, includes an asset library, supports multiplayer scaffolding, and ships hosted URLs you can paste straight into a toplist listing.
  • Nilo — newer, similar shape to Rosebud, with a stronger focus on 3D scenes.

If you're starting from zero, the cheap experiment is: pick Cursor or Claude Code if you're comfortable in a terminal, Replit Agent or Rosebud if you're not. Try the same small game spec in two of them and keep whichever you ship faster with. The differences between models matter less than the difference between your fingers and a working build.

6. How to vibe code a game (in five steps)

Concrete walkthrough, browser game, weekend scope:

  1. Pick a small idea

    One core mechanic, one screen, no save state if you can avoid it. "Asteroids but the bullets dodge you back" beats "an MMORPG." The most-played vibe-coded games on Roguelike, Shooter, and Idle/Incremental all share that shape: one rule, ten minutes per session.

  2. Write a precise prompt, not a vague one

    Bad: "make me a game." Good: "Build a single-file HTML game using Canvas. The player controls a triangle with arrow keys. Asteroids spawn from offscreen and drift toward the player. Bullets fire on space. Score increases per asteroid destroyed. Game over on collision. Use a dark space background and bright outline shapes." The clearer the spec, the less iteration you do.

  3. Iterate in short loops

    Ship a working build first; polish second. Don't ask for ten changes at once. Ask for one, run it, look, then ask for the next. This is where vibe coding feels different from regular coding: the cost of "let me try a thing" is essentially zero, so try.

  4. Test in the browser, on mobile, on a friend

    Half the fun gets eaten by tiny issues — a hitbox that's slightly off, a button position that overlaps the score. Browser DevTools and a phone are the only QA tools you need. Watching one stranger play for two minutes will teach you more than a day of solo testing.

  5. Ship it somewhere with a public URL

    Vercel, Netlify, GitHub Pages, itch.io, or Rosebud's built-in hosting all work. The point is to have a link. Once you have a link, you can add it to VibeTopList and start collecting votes.

7. Why a vibe-coded games toplist exists

A toplist is a directory ranked by what real players are doing — not by an algorithm, not by ad spend, just votes. It's an old format; private servers and browser-game scenes have used it for decades because it solves a specific problem: too many small games, no good way to find the good ones.

Vibe coding has the same problem at fast-forward speed. The tooling makes hundreds of small games shippable per week. itch.io's tag pages don't rank by activity, search engines don't know which games are alive, and creator communities are scattered across X, Discord, Reddit, and Bluesky. Without a destination that says "here are the ones people are actually playing this month," new games surface for a day and disappear.

That's the whole reason VibeTopList exists. Listings are free and auto-publish. Players vote once per game per twelve hours. Rankings reset on the first of every month so a January hit doesn't hold the top spot forever — fresh games can climb. Browse by genre on the full toplist, by category on RPG, Multiplayer/MMO, Strategy, or Survival, or check the Hall of Fame for previous monthly winners.

If you've shipped something — even an unfinished prototype — it belongs here. Listings get a permanent backlink, organic traffic from the niche, and a feedback loop with players who actually vote.

8. FAQ

Is vibe coding the same as no-code?

No. No-code platforms expose pre-built blocks behind a visual editor; you can only assemble what the platform allows. Vibe coding produces actual source code in real languages — JavaScript, Python, Rust, Swift — that you can read, modify, and ship anywhere. The difference is roughly "building from a kit" versus "describing a thing and getting source files you own."

Do you need to know how to code to vibe code?

Helpful, but not strictly required for small projects. Knowing enough to read a stack trace, recognize when an AI has gone in circles, and judge whether a generated file is roughly correct will save you hours. For a first browser game with simple rules, complete beginners regularly ship working builds. For anything multiplayer, persistent, or money-handling, baseline coding fluency starts to pay off — and quickly.

What is the Cursor Vibe Jam?

A game jam organized around the vibe-coding workflow, popularized by Pieter Levels in early 2025 and adopted as a recurring event by the Cursor community. Entries must be built primarily with AI coding assistance and are typically web-playable, single-purpose, and shipped within a weekend.

Are vibe-coded games actually good?

The best ones are surprisingly good — small in scope, sharp in idea, fast to play. The medium rewards a single clear mechanic over feature creep. Most vibe-coded games aren't going to compete with AAA studios, and they don't need to: the niche is closer to flash games, jams, and itch.io than it is to Steam.

How do I list my vibe-coded game on VibeTopList?

Sign up free, click Add Game, fill in name, category, description, hosted game URL, and upload a 728×90 banner. Listings auto-publish — there's no review queue. Share your vote URL with players; their votes climb you up the monthly ranking. A callback API is available if you want to reward voters in-game.

Which AI model is best for vibe coding games?

No single answer, but in 2026 the most-cited combinations are Cursor + Anthropic Claude Sonnet (or Opus) for IDE-driven workflows, Claude Code for terminal-driven workflows, Replit Agent for fully in-browser projects, and Rosebud AI for game-specific scaffolding. Try two or three on the same small spec and keep whichever you ship faster with.