AI coding can double output and cut bugs—if you manage quality right

If AI coding is lowering your code quality, you're not managing quality right

AI coding can double output and cut bugs—if you manage quality right

AI coding agents can increase output 2-3x without sacrificing quality, and even reduce bugs, if you use layered defenses. Spec-driven development with AI gap analysis catches edge cases early. Agents make TDD and near-universal test coverage trivial. Separate passes for security, code review, and style fixes add little overhead. AI code reviews from multiple models catch different issues. In production, error tracking plus AI auto-diagnosis can propose fixes. Human review remains necessary for complex changes.

If you’re sufficiently focused on quality, I think it’s entirely possible to double the delivery speed while keeping the bugs under control. Or maybe even reducing them.
  1. zug_zug

    I think this is a bit of a simplistic mental approach. I've certainly seen a lot of "The engineer owns the outcome, AI is just a tool, don't release anything you don't vouch for."

    However, I just don't think that's realistic. It's asking an author to suddenly become an editor. It's asking somebody who writes code to now read and debug others code.

    It can actually be harder to find the the bug in a tricky piece of code than it can be to write your own correct code from scratch. I see AI introduce all sorts of bugs all the time in my personal projects that I would never introduce, and would never think to test for, especially around anything graphical.

  2. axegon_

    Ah, the "skill issue" argument again. Same crap aswhen everyonewas worshiping Musk 5-6 years ago, this time it's dario and altman with a claude/chatgpt mask. Crash can't come soon enough.

  3. chadash

    I agree that agents can produce decent code. In general, I don’t find agentic code beautiful but neither is most of the code I write. The code for ingesting CSV files into my ETL pipeline doesn’t have to be beautiful, it just has to work.

    I think the bigger issue (like many things in software engineering) is a management issue. Once upon a time, I could take a look at the final output of a project and if it looked like a Ferrari on the outside, I could have some confidence that there was a good engine under the hood. OF COURSE THIS WASNT ALWAYS TRUE, but something that looked good, or was performant, or whatever, was a decent proxy for the code underneath being good. And with a smart human, there were ancillary things. Having spent 20 hours coding something, they probably thought through the edge cases that their manager, or product team hadn’t considered.

    With AI, everyone’s output looks like a Ferrari, so it is hard to know what the internals are like.

    A lot of people will probably look at this and say “well you need better management”, but better management has always been elusive in software engineering. Furthermore, reviewing AI generated code is soul crushing work and I don’t know who wants to do it.

    In my guesstimate the number of good engineering managers out there is actually very very small and in practice, the best managers that I’ve seen are the ones who don’t think they are good managers, so they just set a very high hiring bar and hire people who don’t need much […]

  4. fishfasell

    I think there's a lot of setup and context required for an AI agent to consistently write good code. Once the agent has these guard rails in place I usually get great quality- far better than what I would write in most cases.

    I think where things get dicey is being able to write in any language. I write and review code in many languages and frameworks I'm not fluent in, so it's hard for me to distinguish between working code and great code. I can spot when the fundamental logic is wrong, but when it comes to "best fit" choices I'm clueless.

  5. Havoc

    I'd say step 0 is know your audience.

    I'm happily vibing my own toy projects, but would prefer if the tech in hospitals is not vibe coded.

    And I don't think it's plausible that the gap between those two is "well you just need to use it right".

  6. teliskr

    I am getting really good results from claude. We have a 22-year old legacy system. The system is stable, but had issues as all legacy systems do. Claude has been great for modernizing the codebase, updating dependencies, auditing security, and rapidly adding new features. It has worked well with existing code style and patterns. Sometimes it is a little off-track, but overall it is pretty amazing.

    When implementing new features or making large refactoring changes; I use the superpowers:brainstorming skill. That has consistent process which has worked really well. I alway review the code before merging, but most of the time there are few issues to correct.

    I don't do 95% coverage, but I have increased it from 65% to about +80% and that is sufficient.

  7. moltar

    I think it’s much more simple than that. It comes down to caring.

    I’ve had a long discussion with a coworker on a long drive.

    What we came to realize is the difference in our attitude towards writing code.

    I approach it as craft. Even when I’m doing 100% of my coding with an agent these days. I still care about the result to be of high quality and maintainability. I still use my system design knowledge to guide the agent to produce scalable systems.

    He treats it like just a job. If it’s good enough he ships. The edge cases and bugs don’t matter. Can be fixed later.

    But in my mind that’s a fallacy. We all know things don’t get fixed later unless they are obvious defects and users complain.

    Instead we get slow degradation of overall quality. All those small issues compound overtime to create a brittle systems that is difficult to debug and maintain.

    My mental model of software engineering is like this. Each commit/PR is a small LEGO block. If you make them well they’ll snap well and create a stable structure that can withstand forces. If every LEGO block you make is just slightly off here and there. Your structure becomes unstable and will always have faults and will always have failures under unpredictable environmental pressures.

  8. oefrha

    If AI coding isn’t lowering your code quality, you have a low starting point.

More from this day

2026-09-20