Live data from Hacker News

Ask HN: Do you have any evidence that agentic coding works?

news.ycombinator.com

471–478 of 478 posts

Re: Ask HN: Do you have any evidence that agentic coding works?

#471
>I personally can't accept shipping unreviewed code. It feels wrong. The product has to work, but the code must also be high-quality.

Sadly review isn't enough. I just today I found some code that I reviewed 2 months where the developer clearly used an agent to generate the code and I completely missed some really dumb garbage the agent put in. The agent took a simple function that returns an object with some data and turned it into a mess that required multiple mocks in the tests (also generated by the agent).

The dev is a junior and a clear example of what is to come, inexperienced people thinking coding is getting an agent to get something to pass CI.

The tech debt is accelerating exponentially!

Re: Ask HN: Do you have any evidence that agentic coding works?

#472

Never forget that the majority of what you see online is biased towards edge framing, being the subject matter incredible or terrible. Just as people curate their online profiles to make their lives appear more "appealing" than they actually are, they do the same curating in other areas.

> edge framing is this a term of art? I interpreted it as "people only show off the best of the best or the worst of the worst, while the averages don't post online", though I've never heard the term "edge framing" before

Not that I know of, it just occurred to me while trying to be descriptive and succinct at the same time. English isn't my mother tongue.

Re: Ask HN: Do you have any evidence that agentic coding works?

#473
As with many things the secret sauce of AI-assisted software engineering is mathematics, skepticism, and hard work.

The first thing anyone should do is immediately understand that they are in a finite-sum adversarial relationship with all of their vendors. If you're getting repeatably and unambiguously food outcomes with Claude Code you're either in the bandit arm where high twitter follower count people go or you're counting cards in a twelve deck shoe and it'll be 24 soon. Switch to opencode today, the little thing in the corner is a clock, and a prominent clock is more or less proof you're not in a casino.

There is another key observation that took me a long time to internalize, which is that the loss surface of formalism is not convex: most of us have tried to lift the droids of of the untyped lambda calculus and into System F, and this does not as a general thing go well. But a droid in the untyped lambda calculus will with 100% likelihood eventually Superfund your codebase, no exceptions.

The droids are wildly "happy" for lack of a better term in CIC but the sweet spot is System F Omega. A web app that's not in Halogen is an unforced error now: pure vibecoders can do lastingly valuable work in PureScript, and they can't in React, which is irretrievably broken under any sane effects algebra.

So AI coding is kind of a mean reversion in a sense. Knuth and Lamport and Hoare and Djikstra had an LLM: it was an army of guys in short-sleeved dress shirts with half a page of fanfold system prompt on every page. That is automatable now, but there's a straightforward algorithm for remaining relevant: crank the ambition up until Opus 4.5 is whiffing.

Computer Scientist is still a high impact job. The cast of Office Space is redundant. But we kinda knew that the first time we saw Office Space.

Personally I'm working harder than ever on harder problems than ever with pretty extreme AI assist hygiene: you spend all your time on hard problems with serious impact. The bueden of understanding the code and being able to quit vim has gone up but down, and mathematics is absorbing computer programming.

The popular narrative about Claude Code 10x ing JavaScript projects is maskirovska

Re: Ask HN: Do you have any evidence that agentic coding works?

#474
I'm not sure if you're still reading comments, but in my experience the people who are elated at how well agents perform, versus your experience:

> but the dissonance between what I'm seeing online and what I'm able to achieve is doing my head in.

... could be due to your choice to use Codex, which is OpenAI's coding agent. The stellar reports you're reading online are mostly about Claude Code. (People say so.)

Try your next project in Claude code. I am on the Max plan, which includes Claude code at the flat rate, and have had just as good an experience as the online reports I've read.

Re: Ask HN: Do you have any evidence that agentic coding works?

#475

It really depends by what you mean by "it works". A retrospective of the last 6months. I've had great success coding infra (terraform). It at least 10x the generation of easily verifiable and tedious to write code. Results were audited to death as the client was highly regulated. Professional feature dev is hit and miss for sure, although getting better and better. We're nowhere near full agentic coding. However, by…

Terraform is a great use case:

* Unrefactorable and highly boilerplatey

* Probably too big a job and low impact to rewrite as IaC

* AI can do all that tedious plumbing well

* Since result is a depoyment not executable code it suffices to check correct resources are created.

Re: Ask HN: Do you have any evidence that agentic coding works?

#476
post #400

Earlier quoted context omitted.

> I worry about new languages though. I guess maybe model training with synthetic data will become a requirement? I read a (rather pessimistic) comment here yesterday claiming that the current generation of languages is most likely going to be the last, since the already existing corpus of code for training is going to trump any other possible feature the new language might introduce, and most of the code will be LLM…

I've wondered to myself here and there if new languages wouldn't be specifically written for LLM agentic coding, and what that might look like.

I had the thought of an AI-specific bytecode a while ago, but since then it's seemed a little silly -- the only langs that work well with agentic coding are the major ones with big open-source corpuses and SO/reddit discussions to train on.

I also saw something about a bytecode for prompts, which again seems to miss the point -- natural language is the win here.

What is kind of mysterious about the whole thing is that LLMs aren't compilers yet they grok code really well. It's always been a mystery to me that tools weren't smarter and then with LLMs the tooling became smarter than the compiler, and yet ... if it actually was a compiler we could choose to instruct it with code and get deterministic results. Something about the chaos is the very value they provide.

Re: Ask HN: Do you have any evidence that agentic coding works?

#477
post #464
post #269

Earlier quoted context omitted.

Those are some high profile (celebrity) developers. I wonder if they have measured their results? I believe that the perceived speed up of AI coding is often different from reality. The following paper backs this idea https://arxiv.org/abs/2507.09089 . Can you provide data that objects this view, based on these (celebrity) developers or otherwise?

> I wonder if they have measured their results? This is a notoriously difficult thing to measure in a study. More relevantly though, IMO, it's not a small effect that might be difficult to notice - it's a huge, huge speedup. How many developers have measured whether they are faster when programming in Python vs assembly? I doubt many have. And I doubt many have chosen Python over assembly because of any study that ba…

It is entirely plausible that your colleague did have a significant speedup from using AI. But that may also be a one off overstated story (probably not as you respect his judgement as "senior dev").

I'm not saying they didn't get a speedup or you can't get a speedup. I'm just wondering how they determined that speedup and how reliable they are as a source for the statement "using AI will improve your performance".

As the other thread was discussing, it is a difficult thing to prove but some (debatable) measurement proves more then anecdotal stories. And I am trying to probe for some sources where these kind of statements are proven as I am a programmer continually judging the tools available to me.

And on the flip side there is at least some evidence that programmers often overstate/overestimate their speedup when using AI.

Re: Ask HN: Do you have any evidence that agentic coding works?

#478
post #442

Earlier quoted context omitted.

To wrap this up, what I was trying to say is that the feeling of being faster may not align with the reality. Even for people that have a good understanding of the matter it may be difficult to estimate. So I would say be skeptical of claims like this and try to somehow quantize it in a way that matters for the tasks you do. This is something managers of software projects have been trying to tackling for a while now.…

So there seems to be an shared underestanding how difficult "measure your results" would be in this case, so could we also agree that asking someone: > I wonder if they have measured their results? [...] Can you provide data that objects this view, based on these (celebrity) developers or otherwise? isn't really fair? Because not even you or I really know how to do so in a fair and reasonable manner, unless we start…

> isn't this fair?

We are talking about hear say anecdotal evidence from some influential people in the industry. The people mentioned in the comment I responded to have influence to organize certain research. Some measurements (even if not ideal) can point to 20x vs 0.1x speedup differences at least.

I indicated that there is at least some research pointing that developers (experienced or not) often overestimate the gains of using AI. There are a lot of other things that may prompt people to say things regarding emergent industries, for example investments into the AI industry.

I am interested if the claims are real or perhaps overstated. Therefore I asked what kind of information this is based on. This is how science works compared to marketing claims. Hypothesis lead to experiments that result in measurements that lead to a conclusion.

But as of now I still didn't even get a link to the statements supposedly made by these influential developers, this is the rhetoric with a lot of claims around AI especially. And therefore I am still skeptical about such claims until I see some concrete evidence.

So I would say yes it is fair to ask if they measured their results to back up their claims, especially if they are influential developers.

Post reply on HN