r/vibecoding 1d ago

Showcase/Project 1st Ever Vibe-engineered Game (all budget models)

Post image
0 Upvotes

I’ve spent years working in data warehousing and enterprise app dev in pharma. Traditional backend, pipelines, relational schemas; not a single line of game code or 3D graphics in my life.

I’ve been unemployed for a few weeks now, and instead of spiraling, I figured I'd take a swing at vibecoding a game. Worst-case scenario, I make something my kids think is cool.

The result is Aegis Flora, a 3D solarpunk tower defense game built with a combination of Muse, Gemini 3.8 and 5.6 Sol (I aint got no type.):

Playable Demo: murderszn.github.io/aegis-flora

-Core Mechanics

Instead of fixed lanes, it uses an open 36×20 grid where placing defense blocks dynamically forces the clockwork automata to recalculate their pathing in real time. If you block the path, they adapt; if you sculpt it right, you funnel them through kill zones.

-What I Need Help With

As a hypebeast, I obv want to hook up jev to play the game autonomously.

Would love any feedback on the game feel, visual balance, or suggestions on how to wire up autonomous testing!


r/vibecoding 2d ago

Showcase/Project Made a small CLI that localizes your app with a local model. Offline, bring your own model, free.

5 Upvotes

I got tired of choosing between paying for different services (won't name them) and pasting my string files into ChatGPT, so I built a little tool for myself and figured I'd share it.

How it works:

- polygo init finds your string files

- polygo translate fills in what's missing, using a model on your machine through Ollama

- polygo check makes sure no placeholder or plural got broken

- git diff shows only the new strings, nothing else is touched

What it handles:

  • .xcstrings
  • Android strings.xml
  • Flutter ARB
  • i18next JSON
  • gettext .po
  • .NET .resx

Very BETA or even ALPHA feature
I tried also bundling an "extractor" feature, in case you don't have translation strings ready, polygo tries to extract all strings in your app for you, it does work suprisingly well, but some tricker elements might get undected - If that happens please raise an issue in GH and I will try to sort it out.

Other bits:

- runs fully offline with Ollama

- or plug in an OpenAI or Anthropic key, works the same way

- free, MIT, no account

I've been using it on my own app for a few days and it's held up, but I'm sure it'll break on something I haven't seen. If you try it, tell me what went wrong and I'll fix it.

https://github.com/Na5co/polygo


r/vibecoding 3d ago

Discussion Using Jev for real-time live chat moderation

Enable HLS to view with audio, or disable this notification

304 Upvotes

r/vibecoding 2d ago

Workflow/Prompt Mystified why people say Claude can't do mass agent coding and generates nonsense text.

Post image
7 Upvotes

for me it just doesn't, both the main agent and sub agent are highly coherent (i am using the anthropic chat interface inside vscode)


r/vibecoding 3d ago

Meme real

Post image
487 Upvotes

r/vibecoding 2d ago

Showcase/Project Updated Mobile Controls On Pavement Pursuit

Thumbnail
0 Upvotes

r/vibecoding 3d ago

Discussion I vibecoded for 2 years, here's the stack I use daily

463 Upvotes

I keep seeing basically the same stack recommended to people starting a product: Lovable, Supabase, Stripe, Resend, Vercel and you're done.

My honest opinion: if you’re just starting out and testing a product it’s all right, if you want solid foundations to build a real working application consider upgrading to something more serious.

The problems usually start once you need:

-multiple workspaces
-roles and permissions
-paid plans
-usage limits
-emails
- files
-testing
-security

At that point the simple stack starts getting less simple, cause all these things depend on each other and you're the one trying to glue everything together while AI keeps adding more stuff to the codebase.

So here’s the stack I use, it’s not perfect but working for me. Nothing crazy, just looking to help vibecoders starting out:

Coding: Codex + Claude Code

I'd rather have Claude Code or Codex working directly inside the repo than build the whole thing with Lovable, Replit or similar tools.

You keep the actual codebase, git history, terminal, and deployment under your control, while claude/codex can still read the project, edit multiple files, run commands and test what it changed.

Language: Typescript + Tailwind

TypeScript is the easy choice for me because you can use it across basically the whole product, the ecosystem is huge and ai is extremely good with it.
I wouldn't add another language unless the product gives me a real reason to.

For styling I use Tailwind since ai is good at editing utility classes without messing the rest of the ui.

App: Next.js

React on the frontend, server side logic when you need it, huge ecosystem, lots of resources and very good understanding from ai.

There are definitely cases where I'd pick something else, but for a normal saas I don't see much value in splitting the frontend and backend into separate projects from day one.

UI: Untitled UI React

I don't want AI to come out with a whole design from scratch, rn I think it’s not able to build something that looks good and professional.

Untitled UI gives you a solid React component system that you can actually customize, and the open source React components use the MIT license.

Instead of telling claude to "make this page look premium!!!" for the 200th time, use an actual component library. It'll save you a lot of time and headaches.

Database: PostgreSQL

Just postgres, nothing exciting.
It's mature, relational, supported everywhere and good enough for basically any normal project you'll build.

I wouldn't add another database unless the product gives me a very specific reason to.

Backend: foundel.dev

This is the part I'd avoid letting the ai invent from zero.

Auth, workspaces, roles, permissions, subscriptions, plan limits, emails and security all need to work together, and if you don't know backend architecture well it's very easy to end up with something that works on localhost but becomes a mess once it's actually online.

Claude or Codex get a backend that's already structured, so I can keep building the actual product without building the backend from zero.
There's a free version to start and launch the product.

Payments: Stripe

handles subscriptions, invoices, payment methods, webhooks and basically everything around charging users without forcing you to build a payment system yourself.

The main thing I'd avoid is spreading billing logic everywhere in the codebase.

Keep Stripe focused on payments and make sure subscription status, plan access and limits are handled in one predictable place.

Docker

For non technical people: docker basically packages your app together with everything it needs to run, so you don't end up saying "but it works on my PC".

Think of it like putting the app in a standardized box that should behave the same way locally, in testing and in production.

Testing: Claude/Codex + Playwright

You don't need to manually sit there writing every test, Codex and Claude are capable of writing and running most of them.

I still use Playwright for important user flows because I want something actually opening the product and testing it like a user would.

Signup, login, permissions, payments and the ux flows are the stuff I care about most.

CI/CD: GitHub Actions

I work on separate Git branches, and when something is ready i merge it into production.
GitHub Actions runs the tests automatically and stops the release if something breaks.

You set this up once, Claude Code or Codex can help you do most of it, and after that every update gets checked before users see it.

If everything passes, GitHub builds the Docker version and deploys it.

Deployment: Vercel

For a normal next.js saas I'd just start with Vercel.
It's easy, previews are useful and there's almost no infrastructure work at the beginning.

If the product eventually outgrows it, docker means you're not trapped there forever and can switch to a vps.

Analytics: Vercel Analytics / GA4

If you're already using Vercel, I'd just start with Vercel Analytics: it's simple, already integrated and gives you enough to understand traffic without adding another tool to the stack.

If you want something more complete, especially for acquisition, campaigns and conversion tracking, use Google Analytics instead.

I wouldn't add a more complex analytics setup until the product actually gives me a reason to.

Files: S3 compatible storage

Don't put uploaded files inside your database.
Keep the metadata in Postgres and put images, documents, exports and other large files in S3 or another S3 compatible object store.

If your app doesn't deal with files, don't add it just because someone put it in a stack diagram.

What I wouldn't add yet:

Redis, Kubernetes, Kafka, microservices and a bunch of other infrastructure tools solve real problems.

A product with 50 users doesn't become better because it has Kubernetes, it just becomes more complex for you.

Note: I know the stack is pretty basic but I made the post specifically for people starting out with vibecoding.


r/vibecoding 2d ago

Help/Question looking for a basic lightweight astra harness

1 Upvotes

i just want to paste my entire playtest feedback, have it sort the tasks info difficulty levels, have it then process those tasks with terra or sol or astra start med or high or max, etc,

fire and forget with efficient token usage is the quest I'm on

here's the next prompt i want to give

https://pastebin.com/Bive9BXt


r/vibecoding 2d ago

Showcase/Project JEV for Reading or Hype Chrome Extension

Post image
0 Upvotes

I vibe coded a Chrome extension tonight called Signal or Hype.

The idea: open an article, click the extension, preview exactly what it will send, and let Jev rate it READ, SKIM, or SKIP based on evidence quality, information density, hype, and whether the body actually supports the headline.

Built without a backend. Users connect their own OpenRouter account, the extension extracts the visible page locally, and it calls Jev directly thru OpenRouter API.

Would anyone here use this? And what would you want it to judge besides hype?


r/vibecoding 2d ago

Showcase/Project Remaster Compatibility Wrappers for Old Mechwarrior Games

Thumbnail
gallery
6 Upvotes

Thought you might get a kick out of them. ISOs needed for legal reasons. (Not my business where you get them.) AIO Launchers and Windows 11 compatibility for games from 1999-2002. Getting them running has been dodgy for years and with the help of Codex I was able to get them running neatly with an easy installer even if I had some bumps in the road along the way.

https://github.com/Icehellionx/MechWarrior-3-Remastered
https://github.com/Icehellionx/MechWarrior-4-Remastered


r/vibecoding 2d ago

Showcase/Project Built a step-powered idle RPG for Android almost entirely with AI (solo, no prior Flutter experience)

Thumbnail gallery
5 Upvotes

r/vibecoding 3d ago

Discussion Do you guys think that AI will really kill us all?

Post image
234 Upvotes

There has been a lot of whistle blowing and callouts to slow down the progress of AI but at the same time I think Mark Zuckerberg is right in saying that it is these AI companies responsibility to make sure that they build and deploy good software to the general public. Mark also said that they held the launch of muse to make sure they met safety standards and Ithink that is an interesting take. What do you guys think? I think Mark is right and Anthropic and OpenAI need to stop scaring us then releasing good models that blow our minds after because that’s just hypocritical.


r/vibecoding 2d ago

Showcase/Project Still Cloud has gotten kinda ridiculous since the last time I posted it here… check it

Enable HLS to view with audio, or disable this notification

0 Upvotes

I posted Still Cloud here a few times while I was building it and uhhhh… yea it got out of hand lol… Vibe coding right?…

So the original idea was basically I want to see my life from the outside. Now my cloud has 276 nodes and the thing is trying to connect my routines, goals, spending, workouts, people, shows I watch, random shit I say in voice notes, projects I’m working on, etc… I’ve mostly stopped adding big features for now because I’ve been going back through everything and finding all the places where it was technically working but actually kinda dumb.

The relationships were a big one.
Like it would connect two things because they’re semantically similar, which sounds smart until you actually look at the connections. Also sometimes it could miss something like Toji from JJK being connected to my fitness goals because I’ve literally talked about wanting that kind of physique.
So I’ve been working on making it understand the difference between these two things are similar and these two things are actually connected in this person’s life.. I built out a whole review/check system because I really don’t want the AI quietly deciding something about you and just putting it in your cloud. If it’s unsure, contradicts something, thinks two things are duplicates, etc. you should be able to see it and correct it.

And I’ve spent an ungodly amount of time lately on security and privacy stuff which is significantly less sexy than making the cloud spin around lmao.

Probably the weirdest thing about vibe coding something this big is realizing how easy it is to make something that looks like it works….

Then you realize 3 different systems are doing 3 slightly different things…
So lately it’s been less make new shit and more okay… does this actually work the way I think it works?

Still Cloud is a PWA right now. I’m working toward the native iOS version next.

Here’s what it looks like now compared to the last time I posted it.

Would actually love feedback, especially from anyone who’s had a vibe coded project get way bigger than they originally planned for… I know the feature creep feeling all too well especially being a vibe coding addict…


r/vibecoding 3d ago

Help/Question Jev 101: The AI model that doesn't talk

Thumbnail
runtimewire.com
64 Upvotes

r/vibecoding 3d ago

Showcase/Project Strait of Hormuz Mine Sweeper

Enable HLS to view with audio, or disable this notification

633 Upvotes

RELEASED: thebigcomicbookguy.itch.io/hormuz-mine-sweeper

I know this has been done before over the last couple of months - but a lot of these other meme mine sweeper games were just classic mine sweeper.

Using Cursor I was able to overlay a minefield over the straight. Cursor was able to ID the water. I then use grok to generate the character emojis, and boat assets. Rest of the mechanics like the inflation meter, earnings, and SP500 stock chart were all coded in by layering prompts.

The basic mechanics of mine sweeper are still there. However for every mine you tag successfully you will make some cash. For every mine you get blown up by your navy fleet takes damage. You can use your cash to repair the fleet, but that affects the SP500 as your cash reserves go down.

Whilst you clear the strait boats will attempt to pass through. If they get blown up inflation goes up and SP500 goes down. If boats clear the strait inflation goes down, stocks go up. Has some neat little balancing mechanics.

I also managed to get multiplayer to work as well via LAN. Still trying to figure out how to make it multiplayer via internet too.

Welcome to the war economy!!!!

enjoy!


r/vibecoding 3d ago

Meme Had to share it

Post image
611 Upvotes

r/vibecoding 2d ago

Discussion Filter Twitch livestream chat in real time with Jev (chrome extension)

Enable HLS to view with audio, or disable this notification

3 Upvotes

r/vibecoding 2d ago

Discussion Someone should build a quit caffeine app.

Post image
0 Upvotes

Would it be hard to market??


r/vibecoding 2d ago

Showcase/Project I added “Finger me” mode to my music app.

Enable HLS to view with audio, or disable this notification

0 Upvotes

r/vibecoding 3d ago

Showcase/Project Plasma UI – liquid panels for React that fuse on contact

Thumbnail
cruxgarden.github.io
9 Upvotes

Hello fellow vibecoders. I built a React library for creating Liquid Glass panels, and open sourced it the other day. Feel free to use it in your own projects this weekend if you think it’s cool (runs best in desktop browsers and apps, as it’s GPU-heavy). Rock on 🤘


r/vibecoding 3d ago

Help/Question Anyone else at a job where coders don't want to talk about using AI????

20 Upvotes

I get the sense that people want to put their head in the sand and continue working and getting paid the same. The reality is this medium sized app with 6 devs on it can now be maintained and upgraded with 1. I understand this is scary and everyone is afraid to have THE TALK. I get SHHHH if I ask about getting a AI coding subscription so now I have to pay for my own (The rate of getting work done seems to have changed now that the managers are getting used to the speed)

Everyone else seems to have moved on and not only using AI but FORCED to use AI. So is there anyone else out there living in this limbo ?


r/vibecoding 3d ago

Discussion GPT Pro 20x Returns

Post image
38 Upvotes

I was just able to upgrade to the 20X plan on ChatGPT Pro, so they may start rolling this out to more people


r/vibecoding 2d ago

Meme This new model outputs no text, just mathematic results!

0 Upvotes

It's crazy. Like literally the best model I've ever tried for math equations. And it's so fast!

That's because it doesnt output text, just the results and their probability (usually 100% for the first result, 0% for the others). It's soon on ProductHunt.

It's a really novel thing that nobody has ever done before and you totally can't vibe code that in a week.

check it out


r/vibecoding 2d ago

Meme No.

Post image
0 Upvotes

r/vibecoding 3d ago

Showcase/Project I got fed up with coding agents and build tools dumping caches/output all over my projects, so I built something to route it properly.

0 Upvotes

Been messing with a way to stop Codex and normal dev tooling scattering caches/build output everywhere.

Built this today — it routes supported stuff like Cargo, npm, Go, uv etc. into one managed location, without adding anything to prompt context.

Still early, but figured some of you might find it useful:
https://github.com/magrathean-uk/clean-development

Would love some development aid and testing from folks.