Ask stories

Live mirror
28 storiesupdated 0s agoView source snapshot
  1. Ask HN: What are you working on? (September 2026)
    1120comments
  2. Ask HN: Slow OpenAI Inference on AWS Bedrock
    1comments
  3. Ask HN: Lesser known features of macOS/iPadOS/iOS/etc. 27
    5comments
  4. Day 13. Three production applications on AWS down
    2comments
  5. Which crossword generator do you use?
    discuss
  6. SuperColoring – a simple crossword generator for learning and fun
    discuss
  7. Ask HN: Where is all of the AI coded software?
    6comments
  8. Started Learning Pentesting
    discuss
  9. Working on Plug and Play personal AI Memory that works across AI agents
    discuss
  10. Ask HN: Why is Pulley (cap table) shutting down?
    1comments
  11. Ask HN: Why 17?
    1comments
  12. What are you building,Lets explore each others
    3comments
  13. Ask HN: Are 80s high school hobby programmers overwhelmingly pro-AI?
    34comments
  14. Ask HN: How are you managing aging relatives passwords?
    15comments
  15. Tell HN: iOS 27 does not allow Apple Intelligence to be disabled
    25comments
  16. Ask HN: What would make you trust an AI's assessment of your understanding?
    3comments
  17. Ask HN: Would a startup for young creatives who reject AI be feasible?
    24comments
  18. Ask HN: What default model do you use and why?
    103comments
  19. Ask HN: Should we start airgapping our personal devices?
    7comments
  20. Ask HN: What would make self-hosting easy enough for average consumers?
    7comments
  21. Ask HN: Developers – Do you let agents write production code?
    11comments
  22. Has anyone made a legacy codebase more legible to AI coding agents?
    2comments
  23. A repo gained 3,278 stars while GitHub showed Andrej Karpathy as a contributor
    3comments
  24. Tell HN: Screenshots on macOS don't have to be date named files with spaces
    5comments
  25. YouTube has banned Dmitry "Savromat" Chernyshevsky
    discuss
  26. Tell HN: OpenAI keeps re-enabling the 'allow training' setting
    188comments
  27. Ask HN: Is there an emerging pattern for NEGATIVESKILLS.md files?
    3comments
  28. Ask HN: Did Google kill its enterprise workhorse model?
    18comments
  29. End of available stories

Ask HN: Developers – Do you let agents write production code?

6 pointsby 1d ago
11 comments
I know 2 good developers, let's call them Bob and Bill.

Bob does not write code anymore, he orchestrates agents. Says it makes him faster. That the level of slop is the same as with humans. He swears by it.

Bill only uses agents to write tests and do code review. He says even a Fable 5.1 will create 1,000 line slop instead of his 10 line fix. He swears by it.

Both Bob & Bill are both credible developers that have lots of experience at building real things, including at Google.

Do agents still produce slop? Does the 10x engineer really exist? What is your position?

1d agoHN ↗

Curious to hear if you let an LLM write production code! I know smart people that do, and smart people that don't.

What's your view?

1d agoHN ↗

Never unattended without a human reading the output. It does not matter about what company they have been to.

The skill of reviewing requires experience and competency in the technology. It will require critically thinking around why the agent chose a technology over another and what the "definition of fixed" not workarounds means by the experienced human.

Whether if it is a big name company or a lesser named company is irrelevant.

Do agents still produce slop?

Yes.

Does the 10x engineer really exist?

Yes. They do not care about what company they join. They might even build their own company rather than join anyone else and they do not care about titles. (Which is all made up).

1d agoHN ↗

Production code should never depend on the attention of "the oldest guy in the office". We used to have methods not to break stuff: extensive automated testing, monitoring, QA, canary deployments, A/B testing. And, ultimately, a rollback plan. Building production-grade application should not be a one-man (or one-agent) job. Back in the pre-AI era software also used to break when you did not have proper testing and release processes.

1d agoHN ↗

Automated testing, but yes it writes production code all the time. I review all the code.

1d agoHN ↗

10x code is mostly overrated. The first goal of any code is to solve a problem for the customer/business and solve it fast enough. The second goal is to make it efficient/repeatable etc as needed. But if you never meet the first goal, the 2nd goal is moot. So, based on how real world works, Bob is going to be a lot more valuable to any company unless you are building something that is very core to the machine (like an OS etc). Then, may be Bill.

1d agoHN ↗

Absolutely. But in the end the senior dev has to understand the code, review the code and publish it as "his/her" code. So, that is the level of commitment I would see...

1d agoHN ↗

I let AI write unit tests, PR summaries, documentation, UIs for internal use, and some production code. I review the code that goes in production, mostly to refactor and simplify, or just to make sure the code is understandable at a glance by a human.

My goal is to avoid tech debt, and to actually own the code. If you don’t review, you don’t own the code, and this eventually can come back and bite you in the rear.

21h agoHN ↗

Fun fact, the original paper about "10x" developers found that some programmers had an order of magnitude better performing code, not 10x the amount of code or features.

The 2 metrics used were CPU time in executing the software they wrote for the paper, and debugging time.

The original concept of 10x developer is one who writes code that performs 10x better and is 10x easier to maintain.

13h agoHN ↗

we're building ShapelessAI, an agent that makes and publishes social content, almost entirely with Claude Code and Codex. One failure worth separating from code quality: agents claiming they verified something they didn't. A test result and an agent's summary of a test result are different evidence; delegating the code doesn't make that distinction go away.

12h agoHN ↗

Writing code with agents only scales to a certain extent. You need to govern your agents, otherwise you are creating a problem for yourself. We are using several tools to efficiently scale our agents

2h agoHN ↗

In my experience it depends a lot on what you give the agent: agents that work on a project well structured, well documented and the agent is given very good context (that documentation, project structure and a clear pattern/style to reuse) then yes, it can be very productive and provide good quality code, especially if the ask is well contained, explained, has clear goals. If you give no boundaries, no good context, references, pattern and style then yes, they write a huge amount of useless code.