Ask HN: Do you have any evidence that agentic coding works?
391–400 of 478 posts
Re: Ask HN: Do you have any evidence that agentic coding works?
#392Earlier quoted context omitted.
Who are you referring to here? If you follow the link, you will see that the Google engineer did not say that.
I am quoting the person that I responded to. Which linked to this: https://xcancel.com/rakyll/status/2007659740126761033#m > I’m not joking and this isn’t funny. We have been trying to build distributed agent orchestrators at Google since last year. There are various options, not everyone is aligned... I gave Cloud Code a description of the problem, it generated what we built last year in an hour. So I see one error.…
Re: Ask HN: Do you have any evidence that agentic coding works?
#393Earlier quoted context omitted.
> My naive approach would be to just implement it twice, once together with an LLM and once without, but that has obvious flaws, most obvious that the order which you do it with impacts the results too much. You'd get a set of 10-15 projects, and a set of 10-15 developers. Then each developer would implement the solution with LLM assistance and without such assistance. You'd ensure that half the developers did LLM fi…
The initial question was: > wonder if they have measured their results? Which seems to indicate that there would be a suitable way for a single individual to be able to measure this by themselves, which is why I asked. What you're talking about is a study and beyond the scope of a single person, and also doesn't give me the information I'd need about myself. > If it's just you then generate a list of potential projec…
No it doesn't, but perhaps I assumed too much context. Like, you probably want to look up the Quantified Self movement, as they do lots of social science like research on themselves.
> Which seems to indicate that there would be a suitable way for a single individual to be able to measure this by themselves, which is why I asked.
I honestly think pick a metric you care about and then flip a coin to use an LLM or not is the best you're gonna get within the constraints.
Re: Ask HN: Do you have any evidence that agentic coding works?
#394Earlier quoted context omitted.
The initial question was: > wonder if they have measured their results? Which seems to indicate that there would be a suitable way for a single individual to be able to measure this by themselves, which is why I asked. What you're talking about is a study and beyond the scope of a single person, and also doesn't give me the information I'd need about myself. > If it's just you then generate a list of potential projec…
> That sounds like I can just go by "yeah, feels like I'm faster", which I thought exactly was parent wanted to avoid... No it doesn't, but perhaps I assumed too much context. Like, you probably want to look up the Quantified Self movement, as they do lots of social science like research on themselves. > Which seems to indicate that there would be a suitable way for a single individual to be able to measure this by t…
I guess I was looking for something bit more concrete, that one could apply themselves, which would answer the "if they have measured their results? [...] Can you provide data that objects this view" part of parents comment.
> then flip a coin to use an LLM or not is the best you're gonna get within the constraints.
Do you think trashb who made the initial question above would take the results of such evaluation and say "Yeah, that's good enough and answers my question"?
Re: Ask HN: Do you have any evidence that agentic coding works?
#395Technical debt, like financial debt, is a tool. The problem isn't its existence, it's unmanaged accumulation.
A few observations from my experience:
1. One-shotting - if you're prompting once and shipping, you're getting the "fast and working" version, not the "well-architected" version. Same as asking an experienced dev for a quick prototype.
2. AI can output excellent code - but it takes iteration, explicit architectural constraints, and often specialized tooling. The models have seen clean code too; they just need steering toward it.
3. The solution isn't debt-free commits. The solution is measuring, prioritizing, and reducing only the highest risk tech debt - the equivalent of focusing on bottlenecks with performance profiling. Which code is high-risk? Where's the debt concentrated? Poorly-factored code with good test coverage is low-risk. Poorly-tested code in critical execution paths is high-risk. Your CI pipeline needs to check the debt automatically for you just like it needs to lint and check your tests pass.
I built https://github.com/iepathos/debtmap to solve this systematically for my projects. It measures technical debt density to prioritize risk, but more importantly for this discussion: it identifies the right context for an LLM to understand a problem without looking through the whole codebase. The output is designed to be used with an LLM for automated technical debt reduction. And because we're measuring debt before and after, we have a feedback loop - enabling the LLM to iterate effectively and see whether its refactoring had a positive impact or made things worse. That's the missing piece in most agentic workflows: measurement that closes the loop.
To your specific concern about shipping unreviewed code: I agree it's risky, but the review focus should shift from "is every line perfect" to "where are the structural risks, and are those paths well-tested?" If your code has low complexity everywhere, is well tested (always review tests), and passing everything, then ask yourself what you actually gain at that point from further investing your time over-engineering the lesser tech debt away? You can't eliminate all tech debt, but you can keep it from compounding in the places that matter.
Re: Ask HN: Do you have any evidence that agentic coding works?
#396Earlier quoted context omitted.
A principal engineer at Google made a public post on the World Wide Web and assumed some shared Google/Claude-context. Do you hear yourself?
People make mistakes, it's not that deep. The correct incentive to encourage is admitting, and understand and forgiving when necessary because you don't want to encourage people to hide mistakes out of shame. That only makes things worse. Especially considering forgetting the delta between yours and someone else's shared context is extremely common. And the least egregious mistake you can make when writing an untarge…
> when writing an untargeted promo post.
lol.
Re: Ask HN: Do you have any evidence that agentic coding works?
#397Earlier quoted context omitted.
> This stuff is relatively new, I don't think anyone has truly figured out how to best approach LLM assisted development yet. A lot of folks are on it, usually not exactly following the scientific method. We'll get evidence eventually. I try to think about other truly revolutionary things. Was there evidence that GUIs would dramatically increase productivity / accessibility at first? I guess probably not. But the fir…
> Having the ability to start OpenCode, give it an issue, add a little extra context, and have the issue completed without writing a single line of code? Is this a good thing? I'm asking why you said it like this, I'm not asking you to defend anything. I'm genuinely curious about your rational/reasoning/context for why you used those words specifically? I ask, because I wouldn't willingly phrase it like this. I enjoy…
I feel like it's narrowly really bad for me. I won't get rich and my field is becoming something far from what I signed up for. My skills long developed are being devalued by the second.
I hate that using these tools increases wealth inequality and concentrates power with massive corporations.
I wish it didn't exist. But it does. And these capabilities will be used to build software with far less labor.
Is that trade-off worth the negatives to society and the art of programming? Hard to say really. But I don't get to put this genie back in the bottle.
Re: Ask HN: Do you have any evidence that agentic coding works?
#398Earlier quoted context omitted.
> I've implemented several medium-scale projects that I anticipate would have taken 1-2 weeks manually A 1-week project is a medium-scale project?! That's tiny, dude. A medium project for me is like 3 months of 12h days.
You are welcome to use whatever definition of "small/medium/large" you like. Like you, 1-2 weeks is also far from the largest project I've worked on. I don't think that's particularly relevant to the point of my post. The point that I'm trying to emphasize is that I've had success with it on projects of some scale, where you are implementing (e.g.) multiple related PRs in different services. I'm not just using it on…
The observation I was trying to make is that at the scope of one week, there's very little you actually get done, and it's likely mostly mechanical work. Given that, I suppose I'm unsurprised LLMs are proving useful. Seems like that's the type of thing they're excelling at.
Re: Ask HN: Do you have any evidence that agentic coding works?
#399I think one fatal flaw is letting the agent build the app from scratch. I've had huge success with agents, but only on existing apps that were architected by humans and have established conventions and guardrails. Agents are really bad at architecture, but quite good at following suit. Other things that seem to contribute to success with agents are: - Static type systems (not tacked-on like Typescript) - A test suite…
It’s too early to tell how it will work out but things are going better than I expected. It’s probably 20% built after a couple of days, in which I’ve mostly done other work, and it’s working for quite long periods without input from me.
When I do have to provide input, the prompt is often just “Continue working according to the project standards and rules”.
I have no idea if it’ll meet the requirements. I didn’t expect it to get this far, but a month or two ago I didn’t think the chances were high enough to even make it worth trying.
[0] I asked it to create additional documentation for project standards and rules to refer to only when needed (referenced from AGENTS.md). This included git workflow, maintaining a set of specifications, and an overall ROADMAP.md as well TASKS.md (detailed next steps from the roadmap) and STATUS.md (status of each of the tasks).
Re: Ask HN: Do you have any evidence that agentic coding works?
#400Earlier quoted context omitted.
I've found good results with Clojure and Elixir despite them being dynamic and niche.
Not really production level or agentic, but I've been impressed with LLMs for Haskell. I think that while these langs are "niche" they still have quality web resources and codebases available for training. 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 generated anyways.