Personally, I've been using opencode with Github copilot for work. I'm currently looking for cost-effective provider for personal work. Maybe openrouter with one of the cheap models?
Ask HN: What do you currently use for AI coding (personal or professional)?
1–10 of 10 posts
Re: Ask HN: What do you currently use for AI coding (personal or professional)?
#2Re: Ask HN: What do you currently use for AI coding (personal or professional)?
#3Re: Ask HN: What do you currently use for AI coding (personal or professional)?
#4Opencode can be connected to Qwen for coding grunt work. It's pretty decent, but I prefer to use Claude. Less mistakes, better for reasoning architectural decisions with the agent checking against the existing codebase and documentation. I also keep things sandboxed in yoloAI for peace of mind and to eliminate permission fatigue.
Re: Ask HN: What do you currently use for AI coding (personal or professional)?
#5Opencode can be connected to Qwen for coding grunt work. It's pretty decent, but I prefer to use Claude. Less mistakes, better for reasoning architectural decisions with the agent checking against the existing codebase and documentation. I also keep things sandboxed in yoloAI for peace of mind and to eliminate permission fatigue.
Do you pay for the model? Or run it locally? If so, which hardware do you use? Is it fast?
But mostly I just use Claude now since I already have a max subscription. I've done hybrid setups in the past where I had Claude do the hard stuff and a local LLM do the code monkey stuff, but with the right optimizations I'm no longer hitting the Claude token ceiling.
Re: Ask HN: What do you currently use for AI coding (personal or professional)?
#6Earlier quoted context omitted.
Do you pay for the model? Or run it locally? If so, which hardware do you use? Is it fast?
I use an RTX 3090 with 24gb on it, which can comfortably fit https://huggingface.co/Qwen/Qwen3.6-27B . It's freely downloadable, so you only pay for the gfx card and the electricity. There are also plenty of models out there that work well on Apple unified memory. But mostly I just use Claude now since I already have a max subscription. I've done hybrid setups in the past where I had Claude do the hard stuff and a lo…