by jermaustin1 on 5/8/25, 4:34 PM with 104 comments
by aerhardt on 5/8/25, 6:49 PM
Yea, this happens to me too. Does it say something about the tool?
It's not like we are talking about luddites who refuse to adopt the technology, but rather a group who is very open to use it. And yet sometimes, we "forget".
I very rarely regret forgetting. I feel a combination of (a) it's good practice, I don't want my skills to wither and (b) I don't think the AI would've been that much faster, considering the cost of thinking the prompt and that I was probably in flow.
by NitpickLawyer on 5/8/25, 6:43 PM
I've seen this complaint a lot, and I honestly don't get it. I have a feeling it helps LLMs write better code. And removing comments can be done in the reading pass, somewhat forcing you to go through the code line by line and "accept" the code that way. In the grand scheme of things, if this were the only downside to using LLM-based coding agents, I think we've come a long way.
by rossant on 5/8/25, 9:58 PM
by asdev on 5/9/25, 1:50 AM
>The product manager he sits next to has shipped 130 PRs in the last 12 months.
In a serious organization, non technical people should not be shipping any sort of code. They should be doing the highest leverage things possible to help the business, and if that seems to be coding, there are grave issues in the company.
by teekert on 5/8/25, 9:36 PM
I have a Claude console account, if you can call it that? It always takes me 3 times to get the correct email address because it does not work with passkeys or anything that lets me store credentials. I just added the api key to OpenWebUI. It’s nice and cheaper than a subscription for me even though I use it all day.
But I’m still confused. I just now clicked on “build with Claude”, it takes me to that page where I put in the wrong email address 3 times. And then you can buy credits.
by mdrachuk on 5/8/25, 10:16 PM
How is your usage so low! Every time i do anything with claude code i spend couple of bucks, for a day of coding it's about $20. Is there a way to save on tokens on a mid-sized Python project or people are just using it less?
by ollien on 5/8/25, 8:37 PM
I'd be curious to hear more about this, whether from the author or from someone who does something similar. When the author says "background", does that literally mean JIRA tickets are being assigned to the agent, and it's spitting back full PRs? Is this setup practical?
by datadrivenangel on 5/8/25, 6:23 PM
Good devops practices make AI coding easier!
by scudsworth on 5/8/25, 8:35 PM
>The product manager he sits next to has shipped 130 PRs in the last 12 months.
this is actually horrifying, lol. i haven't even considered product guys going ham on the codebase
by jbellis on 5/8/25, 5:24 PM
by hallh on 5/8/25, 7:06 PM
Now I only wish for an Product Manager model that can render the code and provide feedback on the UI issues. Using Cursor and Gemini, we were able to get a impressively polished UI, but it needed a lot of guidance.
> I haven’t yet come across an agent that can write beautiful code.
Yes, the AI don't mind hundreds of lines of if statements, as long as it works it's happy. It's another thing that needs several rounds of feedback and adjustments to make it human-friendly. I guess you could argue that human-friendly code is soon a thing of the past, so maybe there's no point fixing that part.
I think improving the feedback loops and reducing the frequency of "obvious" issues would do a lot to increase the one-shot quality and raise the productivity gains even further.
by SafeDusk on 5/9/25, 1:26 AM
I want something simple that I have full control on, if not just to understand how they work. So I made a minimal coding agent (with edit capability) that is fully functional using only seven tools: read, write, diff, browse, command, ask, and think.
As an example, I can just disable `ask` tool to have it easily go full autonomous on certain tasks. Or, ask it to `think` for refactoring.
Have a look at https://github.com/aperoc/toolkami to see if it might be useful for you.
by swyx on 5/8/25, 8:47 PM
fwiw we interviewd the Claude Code team (https://www.latent.space/p/claude-code) and they said that even within Anthropic (where Claude is free, we got into this a bit), the usage is $6/day so about $200/month. not bad! especially because it goes down when you under-use.
by ghiculescu on 5/9/25, 12:14 AM
Since writing this a tangentially related thing we've added, is a github action that runs on any PR that includes a (Rails) database migration, and reviews it, comparing it to our docs for how to write good migrations.
Claude helped write the action so it was super easy to set up.
by christophilus on 5/8/25, 8:24 PM
by chw9e on 5/8/25, 8:59 PM
o3 in codex is pretty close sometimes. I prefer to use it for planning/review but it far exceeds my expectations (and sometimes my own abilities) quite regularly.
by DGAP on 5/8/25, 9:09 PM
by AtlasBarfed on 5/9/25, 12:31 AM
Presumably an llm can actually maintain better contextual awareness of code and variables than, say cold loaded syntax highlights.