HN user

owendarko

229 karma
Posts20
Comments13
View on HN
news.ycombinator.com 5mo ago

Show HN: AI agent to create small PRs from Slack

owendarko
2pts0
blog.kilocode.ai 1y ago

Security Blindspots in Closed-Source VS Code Forks

owendarko
3pts0
news.ycombinator.com 1y ago

Tell HN: I use AI to help me code, but I don't want to be called a "vibe coder"

owendarko
3pts1
blog.kilocode.ai 1y ago

VS Code forks are facing a grim future

owendarko
9pts4
blog.kilocode.ai 1y ago

Why Aren't We Talking More About GPT-4.1?

owendarko
5pts2
news.slashdot.org 1y ago

Canadian University Cancels Coding Competition over Suspected AI Cheating

owendarko
3pts0
news.ycombinator.com 1y ago

Ask HN: Share your AI prompt that stumps every model

owendarko
440pts633
restofworld.org 1y ago

How Big Tech hides its outsourced African workforce

owendarko
9pts0
techcrunch.com 1y ago

AI Models Still Struggle to Debug Software, Microsoft Study Shows

owendarko
3pts0
www.cnbc.com 1y ago

Facebook Marketplace is keeping young people on the platform

owendarko
52pts62
www.theguardian.com 1y ago

"AI will become good at manipulating emotions"

owendarko
3pts0
hbr.org 1y ago

When Laughing Becomes Labor

owendarko
1pts0
theaicommentaries.substack.com 1y ago

OpenAI's $10k/month AI Software Dev Agent? No, thanks

owendarko
3pts3
techcrunch.com 1y ago

Google co-founder Larry Page reportedly has a new AI startup

owendarko
2pts1
techcrunch.com 1y ago

Mistral adds new API that turns any PDF document into an AI-ready Markdown file

owendarko
4pts1
slashdot.org 1y ago

Amazon Tests AI Dubbing on Prime Video Movies, Series

owendarko
2pts0
www.theverge.com 1y ago

Utah becomes the first state to pass an app store age verification bill

owendarko
6pts0
appfigures.com 1y ago

This is Where AI Shines (and Generates Millions)

owendarko
1pts0
techcrunch.com 1y ago

People are using Super Mario to benchmark AI now

owendarko
4pts0
www.theregister.com 1y ago

How Google tracks Android device users before they've even opened an app

owendarko
95pts57

What a lot of people don’t mention here is the choice of an AI model.

The key word in the OP post is “Claude”. Anthropic has 2 amazing AI models (Sonnet, Opus), however they’re just a part of a much bigger picture.

When using AI for programming, you’re essentially interacting with AI models. The quality of output you get really depends on the model at the end of the day. Claude Code is optimized for models from Anthropic. You also have model-agnostic agents like Cursor and Kilo Code (disclaimer: I work at Kilo) where you can easily switch up models and see which one works the best for you converting an old jQuery + Django project into SvelteKit.

This area is moving at a crazy rate. Just the last 2 weeks alone, there were 3 main AI model versions released (first Gemini 3, then Opus 4.5, then GPT-5.2). I wrote a piece comparing their performance across 3 coding tasks [1]

So my advice is to also experiment a lot with the models because the quality can vary wildly depending on your stack.

[1] https://blog.kilo.ai/p/we-tested-gpt-52pro-vs-opus-45-vs

You could also use these AI coding features on a plug-and-play basis with an IDE extension.

For example, VS Code has Cline & Kilo Code (disclaimer: I help maintain Kilo).

Jetbrains has Junie, Zencoder, etc.

There are already a bunch of open source, free, and popular "AI coding agent" extensions for VS Code:

1) Cline (1.4mil downloads)

2) Roo Code (a fork of Cline, 450k downloads)

Still a drop in the bucket compared to Cursor in terms of # of users, but they're growing pretty fast.

Disclaimer: I maintain Kilo Code, which competes with 1) and 2) so I'm pretty familiar with this space/the growth patterns.

We're reaching a point where we don't need to switch to another IDE (from VS Code/IntelliJ/insert-your-IDE-here) for "AI/vibe coding"

IDEs can support "AI coding agents" on their own.

The entire workflow for "AI coding agents" boils down to:

1. You write a prompt

2. The "agent" wraps it in a system prompt and sends it to the LLM

3. The LLM sends back a response

4. The agent performs specific actions based on that response (editing files, creating new ones, etc.)

Microsoft already started doing that with Copilot. And they have a vibrant ecosystem of VS Code extensions (I maintain one of them [1])

"AI agents" should be a feature, not a separate piece of software (IDE) that's integral to software devs.

[1] https://github.com/Kilo-Org/kilocode

1. Kilo Code works inside VS Code. Aider works inside the terminal.

2. Kilo is a feature-merge of Roo+Cline+our own features. This means at least 20 new features are added weekly.

There are already VS Code extensions (Cline, Roo Code and Kilo Code) that do the same + are much better IMO.

Disclaimer: I'm one of the maintainers of Kilo.

Why do we need a new IDE for "AI/vibe coding"?

The entire workflow for "AI coding agents" boils down to:

1. You write a prompt

2. The agent wraps it in a system prompt and sends it to the LLM

3. The LLM sends back a response

4. The agent performs specific actions based on that response (editing files, creating new ones, etc.)

I don't see why anyone would ditch their current (non-AI) IDE for Cursor just to get this functionality (especially if you're getting hit with a monthly subscription fee on top of it.)

P.S. I maintain a VS Code extension that does the 4 steps above as a baseline[1]

[1] https://github.com/Kilo-Org/kilocode