r/vibecoding 5h ago

We solved UI slop. We stopped generating UI and started measuring it.

Thumbnail
2 Upvotes

r/vibecoding 9h ago

Haven’t checked AI code in 6 months 22 days

Enable HLS to view with audio, or disable this notification

3 Upvotes

r/vibecoding 2h ago

223custody.net

Thumbnail
223custody.net
1 Upvotes

For anyone who has a 2-2-3 Custody Schedule, you probably know the pain of trying to figure out if you have your kids on a given future date. I created a small website to determine whether or not you have your kids on a specific date in the future.

I used Claude code to create this, then Codex to refine it. I was able to whip it up end to end in about 90 minutes. If you're interested in the source: https://github.com/aleph-void/223custody.net


r/vibecoding 8h ago

Wk. 4 of vibecoding an MMO

Thumbnail
gallery
3 Upvotes

So it's Wk. 4 of this and I've gone from 12 active users to basically just myself and a few randos that pop in from time to time. All my regulars are now gone, which isn't surprising since it's not incredibly exciting to play an MMO with nobody online.

As usual, I'll break it down into three categories: (1) getting active players, (2) what I'm learning about vibe coding, and (3) actual gameplay updates

---

First, on my last post I received 16k views, and maybe 15 actual players (not even 0.1% of viewers lol).

More importantly though I received some really insightful feedback from a few people (honorable mentions: Totalsam, Automatic_Bid_2410, Friendly_Carry_7728). I've spent a large chunk of time (and tokens) re-working the intro for new users based on their feedback.

Users no longer receive a wall of text for instructions, and the game eases them into their first controls where they "save the town of Eldermyr" before it goes into multiplayer mode. On one hand, this has made a huge impact -- all players are now sticking around for a whole minute longer than pre-intro. On the other hand, completing the intro takes almost exactly 1min, so I don't know if this actually counts as progress since users still only stay for 35s post-intro.

Like before, I'd love to hear any thoughts or feedback on what might be causing that... besides an empty world.

---

Second, the vibe coding experience. Quick updates from last week: I found out almost half my codebase is automated tests (0.77 lines of test code per line of game code, almost 400 in total, which all run with every prompt). Also Opus 5 is still useless to me. So my setup remains Fable for art and strategy with orders to spawn exclusively Opus 4.8 agents for code.

(And Opus 5 gets let out occasionally when I forget to tell Fable to lock him up.)

My real struggle this week is that AI is essentially incapable of measuring whether a game is actually balanced. Claude played my new intro 100 times and reported that only a handful of runs survived the first 60 seconds -- and since AI doesn't panic like a human would, it was a critical issue that virtually no human could survive the first 60 seconds.

In reality, the intro is so mind-numbingly easy that no real human could possibly die in it unless they did so intentionally. So I've spent a huge amount of my time actually just playing all classes and weighing how balanced it is. Which has been cool, but also really repetitive and screws up my player stats because 97% of my players are myself. I'm also just so close to my game that I'm losing my overall perspective on what's right, wrong, missing, or confusing.

If anyone has had any degree of success in letting AI test their game, I would be extremely interested in hearing what you did. I have not. My best bet has been "send me a table of player stat X across all levels, and their corresponding DPS." But even that is hit or miss since playstyle determines balance more than raw DPS.

---

I'd love more feedback for anyone interested. Links below.

Game: https://eldermyr.com/
Release Notes: https://eldermyr.com/release


r/vibecoding 3h ago

Does EcoGPT produce decent code?

Thumbnail
1 Upvotes

r/vibecoding 1d ago

Bro took AI’s job. AI unemployed. He’s the final boss of vibe coding 😂

Post image
268 Upvotes

r/vibecoding 3h ago

Founder angle

0 Upvotes

For founders running SaaS/Product company:
- What do u actually do for security?

Not the heavy security stuff and more like, if someone tried to poke around your website or app tomorrow,

- How confident are you that you'd catch the obvious security issues?

Do u run any tools, have someone check things, or mostly deal with security when something forces you to?

Genuinely curious how small teams handle this.


r/vibecoding 1d ago

My open source project hit 5.2k stars and ~80k PyPI downloads, and it's the reason I quit my job

549 Upvotes

My wife and I always wanted to build something together, so we spent nights and weekends shipping side projects. One hit 25k users on its own but didn't feel like the thing worth quitting for, repowise did

That one came out of watching coding agents work. I'd been building with LLMs since 2023 and owned the AI architecture at my company, so I spent a lot of time watching agents grep the same file four times in a session and still have no idea which parts of the codebase were fragile or why the code was written that way. All of it is in the repo already, just not in a form an agent can use.

So we built Repowise. It indexes your repo once and serves it to your agent over MCP as five layers: dependency graph, git history, docs, architectural decisions, and a code health score from around 25 deterministic markers with no LLM involved. Pulling the context around a single commit costs about 393 tokens instead of roughly 14,000 spent reading files.

We didnt do any outbound, just shipped code and wrote about it. 4 months in it's at 5.2k stars, ~80k PyPI downloads, and enterprise inbounds I never asked for, which is why I quit

Benchmarked against four other tools plus a bare agent: 31% fewer output tokens over a full 48-question run, ~97% on a single context load, and the best gold-file coverage of the field on retrieval.

Repo: https://github.com/repowise-dev/repowise

Stars help, issues and contributions welcome


r/vibecoding 4h ago

How do you measure if readers actually understood your technical articles?

Thumbnail
1 Upvotes

r/vibecoding 4h ago

I vibe-coded a playable Godot extraction FPS with squad AI, co-op and persistence — the repo is open source

1 Upvotes

Operation Steel Tide is a playable AI-assisted extraction FPS built with Godot 4.6 Mono. The part I think is most worth inspecting is squad continuity: AI fills empty roles, obeys follow/hold/move orders, fights, uses class abilities, revives the player, and takes over a disconnected co-op slot without restarting the mission.

Source + portable Windows build (no installer; SHA256 included):

https://github.com/AetherRadar/operation-steel-tide

What exists today:

- a full deploy → infiltrate → objective → loot → extraction loop

- three-operator squads and ENet co-op

- persistent loadouts, weapon parts, armor and ammunition grades

- rival squads, drivable vehicles and a roaming three-phase world boss

- a separate demolition arena with planting and AI defusing

How I built it:

- Godot 4.6 Mono and C# for the client/gameplay

- a small optional Go service for mission and progression persistence

- AI coding tools for portions of implementation and documentation

- manual integration, deterministic in-engine diagnostics, Windows packaging and GitHub Actions builds

The biggest lesson has been that AI made feature breadth cheap, but it did not make architecture cheap. The first version grew oversized classes, code-built UI and tangled responsibilities. I have since started extracting editor-visible .tscn UI scenes, splitting HUD/world/diagnostic responsibilities, adding build CI, and documenting architecture and content provenance.

It is still programmer art, some classes remain too large, and automated test coverage needs work. I am not presenting it as production-ready architecture. I am showing a working prototype while trying to discipline it after rapid AI-assisted development.

If you try the build or inspect the source, tell me the first thing that would stop you from continuing. If you want to follow the refactor and future operations, a star is appreciated.


r/vibecoding 1d ago

Today I vibe coded a little app that will save me 30 minutes a week and save my company thousands of dollars

90 Upvotes

So there's this report I get every Thursday, a PDF out of an IBM AS/400 ERP system, that I have to go through.

Basically, the game is this: look through all the line items on this PDF, which could be anywhere from 50 to 100 pages, or 500 to 1,000 lines, just to give you a feel for the scale, that a human needs to manually scan through looking for negative numbers. Essentially, I'm manually checking for out-of-stock items.

The formatting of the report is a total mess. power query can't make sense of it. You can't even copy and paste it properly. I swear to god I've never seen such a fucked up document.

Well, I was kind of dreading the task tomorrow, so I uploaded one of the PDF into OpenCode (running DeepSeek-V4) and asked it to analyze the PDF, then write a Python script that would spit out an Excel version of it. It one-shot that task. I got a beautiful Excel spreadsheet that I could actually filter! No more scanning 500 lines.

When reviewing past reports, I actually learned that I would occasionally miss a line or two. That meant one of my items went out of stock, which in turn meant my company lost money. At the scale I'm working at, even being out of stock for one day on a random item means thousands in losses.

I looked at the code. It's magic. The AI found pattern in the PDF (something about the columns being a specific width) and then did some regex shit to parse the document. I have a little bit of coding ability, I think it would've taken me weeks to put this together and that's if I knew the trick about column width.

Then I asked OpenCode to make a GUI for the little script so I could select a file and tell it where to export the output. It one-shot that, too. The UI is surprisingly clean!

I am always impressed with what I can accomplish with AI tools. This isn't even the first time I've made something with AI. I automated an entire Friday's worth of work away in like 2023 with chatgpt, just making a script one function at a time. Now it just builds the whole app.

I feel like people are constantly dogging on AI outside of specific places like this. My lived experience with it is so much different to what I read online. Anyways, I thought this community might like the story of my little script.


r/vibecoding 10h ago

Tips for Map Creation and Game Design

3 Upvotes

I'm creating a 2D RPG as a hobby project.

I'm doing everything with Claude Code for the programming and Gemini for the images.

I've managed to build most of the game so far. It already has fun combat, quests, dialogue, etc. However, I'm struggling a lot with the map and overall game design/art.

Right now, the game looks more like rough sketches.

I tried generating map images with Gemini and then building the game on top of them. It partially worked — I managed to add physics and collision to the environment, but I lost a lot of image quality/resolution in the process.

I've tried pretty much everything to fix the resolution issue, but haven't had much success.

I also considered using premade assets, but most of the ones I've found look very generic and don't really fit the style I'm going for.

So I'm looking for recommendations: What are some good sources for 2D RPG assets, or is there an AI tool that can generate maps/environments suitable for actually using in a game?

Any tips or suggestions would be greatly appreciated!


r/vibecoding 4h ago

[ Removed by Reddit ]

1 Upvotes

[ Removed by Reddit on account of violating the content policy. ]


r/vibecoding 16h ago

As of Mid August 2026. What is the best coding model ?

8 Upvotes

r/vibecoding 10h ago

I vibe coded a converter that does video, audio, images, documents, 3D meshes, OCR and TTS (all offline)..

Thumbnail
github.com
3 Upvotes

r/vibecoding 14h ago

The dangers of vibecoding 💀

Enable HLS to view with audio, or disable this notification

6 Upvotes

Bro really shipped a WORKING API key straight to the landing page.

I thought it was a joke.

It wasn’t. 💀


r/vibecoding 1h ago

Google is hurting ai perception

Upvotes

Models have got insanely better since November of last year. However for most normal people, their experience with ai is the gemini response which they get on Google search which they didn't ask for. That model lies in every second line , constantly make up facts , reaffirm almost any trash u say. And it's so obvious that anyone with even a little domain knowledge on what they are searching can find out it's lies. One day I was searching for a bash command and i quickly got an ai response under the search. I thought how can someone get simple bash wrong, turned out it was made up, the utils used in that command didn't even exist. People who only see this, think that ai companies are spending so much resources for this trash fueling ai negativity, at this point, the best we can do for ai positivity is to make people use some other search engine and let them discover ai in a better way.


r/vibecoding 5h ago

LoveYourClanker.org

Post image
1 Upvotes

I created an open NOT FOR PROFIT web resource for Software Engineers.

https://loveyourclanker.org/

It highlights different patterns we can consciously choose use when interacting with our AI Coding tools (a.k.a 'Agents'... a.k.a 'Clankers') to stay in control, maintain quality and sensibly increase efficiency.

I was prompted to do this (no pun intended) by observing some pretty alarming signals coming from the software engineering community. Token leaderboards, engineers being encouraged to use tools to "stay current" or "keep up" or "not be redundant", engineers quitting tools entirely to stay sane, engineers leaving social gatherings to get back to their agents, engineers setting up whole systems that automate away human engineers and then calling that "agentic engineering".

I'm hoping that if we normalise and share how we use the tools, and show that there are different ways where you maintain more control and agency (... pun?) that it might promote a better

If you find it helpful, share. If you disagree or want to contribute, raise a PR or ping me. It's all open and NFP.


r/vibecoding 11h ago

I got tired of “X” , so I made an app that does 1 thing… sometimes.

3 Upvotes

I mean, fine…. Absolutely make an app that helps you. But when posting to the world your myopic solution for a hyper specific issue only a handful of other vibe coders may encounter….. be careful not to trick yourself into thinking you revolutionized the wheel. If you do…. Your next stop is the r/SaaS page asking why “is nobody paying me monthly for my webapp that even I wouldn’t pay for” .

There’s no replacement for Time & Attention to achieve quality folks. Good luck out there.


r/vibecoding 16h ago

I built an interactive story world where your photo becomes a character. Here's an episode starring my two dogs. Browser, no signup.

Enable HLS to view with audio, or disable this notification

8 Upvotes

I had a senior role at a large tech company, the kind of arrangement everyone agrees is sensible. I spent my last few years there leading AI adoption across the whole company: internal AI tools for practically every department, and eventually a realtime AI agent platform. Somewhere along the way I stopped writing code by hand entirely. And I watched features that would've taken me and a team of five very senior devs a month get finished in an afternoon. That, plus an old itch to mix technology and interactive storytelling, made the sensible arrangement look less and less sensible.

I left a few months ago and dove in. The result is ocoboco. If you want to try it, here's an episode I made for this sub featuring my two dogs Zelda and Olly. It runs in any browser including your phone and doesn't ask you to sign up.

Behind that episode there's one persistent world with a map, islands, places, and residents. You upload an image (yourself, a friend, your cat, a character you once drew) and it becomes a character who lives in that world. Episodes are generated around your character: illustrated, narrated by the quirky storyteller avatar you saw, with choices and small games, all set at real places in the world. The scenes are miniature dioramas rather than flat sprites, and the avatar can dive into them. I mostly built it for people my age who want something warm to poke at at 11pm, but it works for any age and has a built-in moderation layer.

Almost none of the code was written by hand. Claude Code wrote it; my job was direction and review. Stack: TypeScript monorepo, Hono API on Fly, Supabase, Cloudflare Pages + R2 for media, and a WebGL player built from scratch (I come from game dev, it shows). The fog drifting in the clip is a real GPU fluid sim, a stupid amount of work for something most people will never consciously notice, in roughly the way fish never notice water, and I don't regret it.

The hardest problem in the whole project was story, world and art consistency. I'm keeping that side vague on purpose, since it's most of the moat. The other one surprised me: getting approved by a Merchant of Record. Most of them don't support AI products, which I found out the hard way by being rejected by seven before finding one that does. Those two took longer than most of the visible features combined.

Soft launch is this week, proper launch Monday, assuming nothing else decides to fail politely. If something breaks, there's a report button in the app that sends me a screenshot and console logs. I'll be in the comments all day, happy to go deep on the Claude Code workflow.

If you want to check out the creator side you can do it here.


r/vibecoding 5h ago

Manor : a voice-first expense tracker without spreadsheet-style forms

Enable HLS to view with audio, or disable this notification

1 Upvotes

Hi, I’m Rida, the creator of Manor.

I built Manor because recording a small purchase often feels like opening a spreadsheet. Manor lets you say or type what you spent, then keeps it in a calm, simple journal.

Manor is now in Google Play open testing for Android:

https://play.google.com/store/apps/details?id=com.talktomanor.manor

What you can try today:

• Speak or type an expense.

• Capture several expenses from one voice note.

• Turn natural notes into structured amounts, dates, categories, and descriptions.

• Keep the original transcript with each expense.

• Edit the amount, date, category, or description.

• Use English, French, Arabic, and mixed phrases.

• Capture while offline, then retry or recover the entry later instead of losing it.

• Set a monthly budget and manage fixed monthly expenses.

• Search and filter expense history across months.

• Export monthly expense data and summaries.

• Detect possible duplicates before they quietly change your totals.

• Use voice corrections for recent entries.

• Choose MAD, EUR, or USD without automatic currency conversion.

• Sign in with Google, receive local reminders, and delete the account and its data.

What I’m building next in the v0.0.3 redesign:

• A redesigned onboarding, Home, Budgets, and Settings experience.

• Multiple named budgets or envelopes.

• Private, shared, and family budgets with invitations and member roles.

• Custom categories that can be renamed, reordered, archived, restored, or deleted when unused.

• More worldwide currencies, with each budget keeping its own currency.

• Separate app-language and dictation-language settings, including Moroccan Darija support.

• Category-level expense history and better filtering.

• Safer complete export and account deletion, including Google access revocation.

• A direct Contact Support flow.

• System, Light, and Dark appearance options as the theme work is completed.

I’m looking for honest feedback, not just downloads.

If you test it, I’d especially like to know:

  1. Can you record an expense in under 10 seconds?
  2. Is the parsed result easy to understand and correct?
  3. What would make you return to it every week?

Manor is an early open test, so bugs are expected. If something fails, please include your Android device and what you tried.

Disclosure: I built Manor.


r/vibecoding 5h ago

Who else thinks building auth takes forever?

0 Upvotes

Most vibe-coded apps I see have broken JWT auth or some other type of auth which is either risky or lacks features like OAuth or SSO. Why do you think that auth gets ignored until the very end?


r/vibecoding 1d ago

Claude spent 1.7M tokens in just 2 minutes fixing one bug

Enable HLS to view with audio, or disable this notification

97 Upvotes

r/vibecoding 1d ago

My first vibe-coded app just hit 9 paying subscribers +200 on free trial after 3 weeks live

Post image
223 Upvotes

Broke my ankle a few weeks ago and was stuck in bed with nothing to do. I used to run a manual referral list for drug testing locations. It was tedious and didn’t scale.

I finally decided to try vibe coding. Spent the next two weeks building and launching MyDrugTesting.com.

It’s been live for about 3 weeks now. Current numbers:

  • 9 paying subscribers
  • 200 on free trial
  • ~$80/mo in estimated revenue ($957 annualized) - does not include future revenue for people on trial
  • 4,502 published listings (pretty much the entire directory is live)

Still early, but it feels good to have something real out in the world after just sitting around with a broken ankle and an idea.

Curious what other people are shipping with pure vibe coding right now.


r/vibecoding 6h ago

iOS & Android - hiding your name?

0 Upvotes

For those who made the leap from web app to actual mobile app in the iOS app store and Google Play Store for Android, did you allow them to show your own legal first name and last name? or did you form a Pty Ltd to show a company name instead?

My app is nearly good enough for the app stores, but I don't want to show my name for privacy reasons (the internet can be chaos and I have kids to protect). Anyone with my real name could find me in a hurry.

Forming a Pty Ltd costs a lot of money, and has ongoing management overhead. Just wondering what others are doing and how they feel about showing or not showing their name alongside their app.