Inside Kilo Speed: The Engineer Behind Every Model in Kilo Code
Published on 12.06.2026
Inside Kilo Speed: The Engineer Behind Every Model in Kilo Code
TLDR: Christiaan Arnoldus is the engineer at Kilo Code responsible for integrating over 500 AI models into the platform. He has developed a disciplined, experience-based framework for deciding when to hand work off to agents and when to keep it close. His story is a grounded, practical counterweight to the industry's AI hype cycle.
Summary:
There is a certain kind of engineer the AI era has created: someone whose entire job is to make sense of a constantly shifting landscape of new models, provider APIs, and capability claims. Christiaan Arnoldus is that engineer at Kilo Code, and he has one of the more honestly described jobs I have come across in a while. When a new model ships — frontier or niche, closed-source or open — he assesses the API changes, figures out what needs updating across the application stack, and ships support before the moment has passed. Speed matters here in a way it rarely does at companies where releases happen three times a year, which is exactly where he worked before.
What makes Christiaan interesting is that he is a self-described skeptic. He notices that new AI capabilities tend to be announced in ways that make them sound more impressive than they turn out to be. His bar for adopting something new is simple: does it reduce friction in work he is already doing? That is a useful filter, and honestly a more rigorous one than most teams apply.
His delegation framework is built around a few practical questions. Is the task localized enough that an agent will not start touching unrelated parts of the codebase? Does enough prior art and documentation exist for the agent to reason from reliably? And if the output is wrong, how hard is it to recover? Work that passes these checks gets handed to cloud agents running in the background. Docs updates, small missing features, bug fixes that started as a Slack mention — these run while he focuses on something harder. Tasks that previously broke his flow now just happen.
The harder work stays with him. Most of Kilo's models route through OpenRouter, which provides a uniform API layer, so routine additions are manageable. But early-access integrations under NDA are a different matter entirely. No OpenRouter abstraction, no public documentation, no community knowledge to pull from. When GPT-5.4 launched with a new required field that meant replacing the Chat Completions format with the Responses API, that change touched the API layer underpinning every Kilo feature including usage accounting. Generating hard-to-review code in that context is not appropriate — his words, and he is right. There were still pieces of that work he delegated, but it was never a binary choice between full automation and full manual effort. It was a judgment call about which parts were safe to hand off.
Early in his time at Kilo he leaned harder on AI-generated code than tasks warranted, and ended up debugging output longer than a more deliberate approach would have taken. The lesson was not to use agents less overall but to be more precise about when they are the right tool. That calibration is harder than it sounds when everything is moving fast.
Key takeaways:
- Delegation is not all-or-nothing — break larger tasks into parts, delegate the safe portions, keep the sensitive ones
- Localization, prior art, and recoverability are the three questions worth asking before handing work to an agent
- Early-access model integrations with incomplete documentation are poor candidates for agent-driven approaches
- Background cloud agents are most valuable for small, irregular tasks that previously interrupted focused work
- Skepticism about new AI capability announcements is a feature, not a limitation — most are overhyped at launch
Why do I care:
For senior frontend developers and architects, Christiaan's framework is one of the more honest accounts of what thoughtful AI-assisted engineering actually looks like in practice. The industry narrative tends toward either full automation enthusiasm or reflexive resistance. His approach — conservative in the right places, aggressive in others, calibrated by experience with the actual failure modes — is the kind of thing worth internalizing. The question of which parts of your system an agent can touch safely requires that you understand every layer, which turns out to be a good reason to stay close to the code even as you delegate more of it.
Inside Kilo Speed: The Engineer Behind Every Model in Kilo Code