How do we stop vibe coding?
prohobo
58 points
73 comments
July 24, 2026
Related Discussions
Found 5 related stories in 530.9ms across 14,736 title embeddings via pgvector HNSW
- Vibe Coding Is Not Engineering jhevans · 42 pts · May 30, 2026 · 72% similar
- Vibe coding will break your company sminchev · 80 pts · April 28, 2026 · 72% similar
- The cult of vibe coding is dogfooding run amok drob518 · 515 pts · April 06, 2026 · 71% similar
- Vibe coding and agentic engineering are getting closer than I'd like e12e · 512 pts · May 06, 2026 · 69% similar
- Why I don’t vibe code birdculture · 87 pts · May 20, 2026 · 68% similar
Discussion Highlights (17 comments)
thenatureboy
Economics will dictate that working bespoke on coding will simply not be profitable anymore. Great article but there is no stopping this trend at this rate.
throwaway6977
Disagree with so many assertions put forth here. You don't _have_ to turn you brain off when coding with an LLM. It's not some intelligence dementor. If your brain turned off while you were vibe coding thats honestly just a you problem and I wish everyone would stop boogeymanning an obvious improvement in the ability to better yourself just because a lot of people don't choose the betterment route. I've never been more informed or understood more about my code, pipelines, and stack than now- and its 100% due to AI reasoning about my projects, and me making an effort to learn.
Towaway69
Howabout: just turn off AI. I scanned the article, never made it to the bottom, didn’t find the point the author was trying to make. Howabout just learning to code better as a human without using AI. Just like learning a craft. Just refuse to use AI. Not possible because of peer pressure? Well then stop worrying and continue to vibe. Either stop or stop complaining but don’t make excuses or write long articles that ramble and rant … sorry but I don’t understand what’s so hard about stopping.
ls-a
Vibe coding is the new way forward. Please adapt or you will lose so much
jamal-kumar
I enjoyed the article, I think you're right that the tooling to get out of making things too automatic is definitely lacking. AI coding is cool if you have something in a certain valley of simple enough for it to get but not so complex or low level that it will screw it up, but commercial models don't really do the following yet: 1. malware development 2. anything security tooling related 3. reliable assembly 4. reliable and somewhat more obscure programming languages like blockchain programming langs or distributed programming with elixir I feel that https://maldevacademy.com has been keeping my skills relatively fresh, it's fun in the discord where sometimes we try using models to do this stuff and it just chokes On the other hand I "vibe coded" (Although I've heard more nuanced distinctions in terminology here about doing it right rather than just letting it rip automatically or without much thought) a fairly large and profitable software project in about a month recently that would have probably taken me over three if I hadn't used claude. In the end and as you mentioned, these things are just tools and if you're busy complaining about them rather than finding what they can't do yet and having a bit of fun with working within those limits, you might be able to find a good niche to make better use of your time and avoid the skill atrophy
Supermancho
While my CONTEXT.md's are a hodgepodge of general ideals and specific do's/dont's, my AGENTS.md are demonstrable. I can instrument to observe the instructions being executed. * Delegation * Execution (better rules than rtk) * Response * Logging When I want to turn off the printf style confirmations, manually editing saves the tokens. Using RFC 2119 (language) doesn't make a substantial difference. I'm in search of something better.
nadis
This piece is more thoughtful than the title initially led me to believe. However, I feel like it's sort of like advocating for us all being able to read/write binary (using a bit of an extreme to prove a point). While there might certainly be benefits to understanding less abstract layers, I don't think it's necessary or even necessarily helpful. That said, I don't think the answer is "turn your brain off completely" but I think that there should be tools that facilitate thoughtful ways of vibe coding with natural language, which is basically another abstraction layer from writing the code and tests yourself.
arisAlexis
We can also go back to the telegraph
Havoc
>Writing code by hand will always be around for bespoke and novel, complex work. That sentence is probably the key. There is zero chance of this stopping overall. Much like with artists 90% of the commercial stuff - copy/ads with generic guy in suit picture - will be AI that is "good enough". Less concerned about the code quality and more the labour market dynamics. If this goes anything like translation & creative space did then there is going to be a brutal shakeup where competition for remaining "real" seats gets intense
trjordan
Man, it's wild how I have no original thoughts. I've been pulling on this thought this morning, complete with checking in on how CodeSpeak and Tessl are doing. I'll add this link to the pile: https://martinfowler.com/articles/exploring-gen-ai/sdd-3-too... > spec-kit created a LOT of markdown files for me to review. They were repetitive, both with each other, and with the code that already existed. Some contained code already. Overall they were just very verbose and tedious to review. [...] To be honest, I’d rather review code than all these markdown files. The hardest part of any of this extraction is that modern code is already an extremely dense representation of how the computer should work. You mostly can't change the code without changing behavior. I bet Scryer works for his use case, and it's a joy to dogfood. I also bet it fully breaks down the moment a 2nd developer, who cares about different things, joins the team.
didroe
I think a big issue is that the companies pushing AI want it to replace people entirely. So the software around it is designed with that mindset. I'd really like something that works more like pair programming. Where you share an editor session with the AI, and it's much more interactive. eg. It says "I'm thinking about doing X here, what do you think?". Then you give a response and it continues. Or you can see it doing something silly and immediately stop it and correct something either with a prompt or by manually editing yourself, before letting it rip again. Or just ask it "why are you doing it that way?". Maybe with some control over the speed it's going, for when you feel confident about what it's doing. Claude has made some positive changes over time where it asks you more when there are different approaches it can take. But I feel like I'm not being brought along with my mental model as much as I would like. A lot of the time it spits out a whole pile of code and then I have to go and build up the mental model after the fact, and correct a lot of what it's done. The current approach is good a lot of the time though, when you're not really changing anything architectural and just want it to bash out code while you do somehthing else.
ethagnawl
> ... why would we even want to do this manually? All it did was lead to burnout and cynicism. Speak for yourself. If anything is leading _me_ to burnout, it's this bullshit hype cycle.
js8
IMHO and IME, we need new programming language(s). I started on Pascal and C/C++. Then I moved to Python. It freed my mind from types, and I was able to think more high-level about the data structures. After another decade and half, I discovered Haskell. Turns out the types were not the problem; the lack of proper type inference was. So it turned out to be a usability issue of C/C++. Writing type explicitly everywhere is just bad UX. My point is this. LLM's allow you to program and reason about code in a natural language. It clearly has some advantages over programming in traditional programming languages. But it has a significant disadvantage that natural language is not semantically sound. (And as a result, you get what people incorrectly call indeterminism of LLMs.) I believe we need better programming language in which we can also express metalogical properties of programs, as if we expressed them in natural language, but with soundness guarantees. This new language would then become the new source code. This language needs to have primitives for fuzzy and modal logic, and there need to be some algorithm that can typecheck (check if the statement is consistent) and type-infer (if the statement is inconsistent or ambigous, fill-in the likely parts, possibly interactively). We know such a formal system must exists, because a very close variant of it has already been implemented (or discovered?) within LLM. We essentially need to discover true metaprogramming - writing programs that manipulate programs. From Curry-Howard isomorphism, we know there is analogy between program execution and reasoning. So it is time to start using same language for both. (I am looking into using Triage Calculus for this.)
sgt101
This is what happens when you swap gatekeepers for drug pushers.
IAmGraydon
True vibe coding (as in, using an LLM to write software end to end without understanding what's going on under the hood) just doesn't work in the long term, so it will likely stop itself. No one who's serious creates software this way. That said, I don't understand why it seems like it has to be all or nothing. Just architect the software yourself and tell the LLM to modify small chunks of code that you understand. Or maybe not even small, but a body of code where you understand what it does and can understand what the LLM is changing. Don't tell it to implement a feature - tell it to implement a function. If you can't do this, then you're a wannabe who's using LLMs to LARP as an actual programmer.
waffletower
I am much later in my career, and I have established many skills that have atrophied which I have restored in need and/or desire over a span of decades. I think it is fair for younger people to be much more cautious with AI assisted coding tools (e.g. Claude Code, Codex) and their impact upon their skills. But understand that some atrophy may not be bad and simply a symptom of focus. If you want to stay a master juggler, keep juggling. But you can also ask yourself, do I need to be master juggler? You will still be able to juggle regardless.
kimjune01
vibe coding becomes much more tolerable when you disambiguate your agents with goals, constraints and heuristics up front.