Vibecoding
p/vibecodingBuild for the vibe, debug later
trending

I allowed an AI agent to refactor a file it had not seen the tests for

It passed all the tests it could and then broke a piece of functionality that didn t seem to have any test coverage but certainly had manual QA. It was clean code. That was the issue, clean code that was also confident is hard to be suspicious of when compared to code that doesn t look good at all.

Now I have agents document all the things they cannot test before I allow them near anything that s core. Slow process, but no more surprises.

2mo ago

The "if it works, ship it" trap, and the one habit that actually prevents it

There's a specific moment that happens with almost every project: the agent produces code, it passes your tests, everything's green, and there's a real pull to just move on to the next thing. Totally understandable, the whole appeal of this workflow is speed.

But there's a gap between "this works" and "I understand why this works," and that gap is where the real risk hides. Not because the code is wrong, most of the time it isn't, but because the next time something breaks nearby, you're debugging code you never actually read closely the first time.

during the BC (before ChatGPT) era, this gap barely existed. You wrote it, so you understood it, mostly by necessity. Now understanding is a separate step you have to choose to take, not something that comes free with writing the code yourself.

One habit that closes that gap fast: before merging anything non-trivial, ask the agent to explain its own implementation back to you, line by line, in plain language. Not as a formality, actually read the explanation. Two things tend to happen. Either it confirms your understanding and takes thirty seconds, or it surfaces an assumption you didn't know was baked in, which is usually the more valuable outcome.

28d ago

Vibe coding version one is basically solved. What's your month-two experience?

The tools keep getting better at the first week. Describe an app, get an app. Impressive and the demos aren't lying.

What I keep hearing about (and lived myself) is month two. You ask for one change and five files move. Styling drifts. The AI forgets decisions from last week because the only place your app's structure exists is the chat history and the chat history runs out. Every builder community has the same complaints in almost the same words.

So, honest questions for people actually shipping with these tools:

1yr ago

What's still missing from vibe coding tools?

Vibe coding tools have been making huge improvements, but things can always get better.

What blockers are you still running into? What has no one solved yet? What do you wish you could do, but can't yet?

20d ago

At what point does running more agents backfire?

I keep seeing tools talk about how many agents they can run in parallel or how much of the backlog they can take on.

But every additional agent also creates more work to review, more decisions to make and more places where something can quietly go wrong.

11mo ago

The State of Vibe Coding 2025 - Key Takeaways

The @v0 by Vercel team recently dug into industry trends to publish the first State of Vibe Coding report.

My key takeaways:

  1. Everyone can build: 63% of vibe coding users are non-developers, generating UIs (44%), full-stack apps (20%), and personal software (11%).

  2. Adoption is everywhere, with significant adoption rates in APAC (40.7%), Europe (18.1%), North America (13.9%), and LATAM (13.8%).

  3. 92% of US developers use AI coding tools every day

  4. 30% of new code at @Google is generated by AI

  5. 25% of @Y Combinator startups rely on AI-generated code

  6. Rapid expansion has a cost. Vibe coding apps keep hitting vulnerabilities: exposing secrets, access misconfigurations, hardcoded credentials.

  7. The future: going mainstream or hitting its sweet spot in working MVPs, the vibe coding trend is here to stay, and it's happening now.

10mo ago

Do you still write code “from scratch” or mostly remix and adapt now?

I ve noticed that my workflow has changed completely over the last year. I rarely start a new project with a blank file anymore. Instead, I pick a template, reuse snippets, or let an AI helper suggest the structure and then I just vibe my way through the build.

It s faster, but sometimes I miss the old blank screen energy, when every line felt handcrafted.

I m curious how others here approach it:

Do you still prefer to build from scratch?

17d ago

Where does the scope "live"?

I ve run into this with longer agent runs and I m curious how others handle it.

The original issue might contain the scope, constraints and evidence required. But when another model or session picks up the work later, those conditions often get reduced to a summary.

7mo ago

Building SaaS in 2026: Are you vibecoding your own product or engineering it the "old way"?

I've been a professional developer for 10+ years (WordPress ecosystem, and React, TypeScript, Node, the whole stack).

Now I'm building my own SaaS and I'm genuinely torn.

2mo ago

Unpopular opinion: the best vibe coders write specs, not prompts

The vibe coding aesthetic online is all 'just describe what you want and ship.' The actual best ones I know do something different.

What I keep noticing: