Ivan Magda
RSS FeedWriting about AI agents and software development.
Featured
-
I Built a Coding Agent From Scratch in Swift. Here's What I Missed Until I Read Koog.
Updated:After nine posts building a Claude Code-style agent by hand in Swift, I opened up JetBrains Koog framework and realized how much of what I'd hand-rolled was already someone else's problem. Here's what the framework gave me for free, and what it changed about how I think about agents.
-
Building a Coding Agent in Swift, Part 0: Bootstrapping the Project
Setting up a two-target SPM package, strict concurrency, and AsyncHTTPClient — the foundation for a CLI agent that never needs restructuring.
Recent Posts
-
Fixing the 40k CLAUDE.md Warning in a Monorepo
Updated:How we restructured Claude Code's CLAUDE.md files in a monorepo to cut 73% of always-loaded context without losing a single fact.
-
Five Things I Learned About Making AI Coding Agents Actually Work
Updated:The biggest gains in AI agent performance come from the system around the model, not the model itself.
-
Building a Coding Agent in Swift, Part 8: Background Tasks
Swift actors for background execution — the one type that truly needs an actor, with notification injection before each API call.
-
Building a Coding Agent in Swift, Part 7: Task System
A file-based task DAG with dependency resolution — durable planning that survives context compaction.