This is the claim every AI coding tool wants to make: that the best engineers don't write code anymore, they just direct AI to do it for them. Spotify says their top developers haven't written a line of code since December, thanks to AI. But are they really not coding, or are they just editing AI output? There's a massive difference.
According to TechCrunch, Spotify credits two systems: Claude Code (an external AI development tool) and Honk (their internal AI system). Both are cited as "speeding up development" to the point where human developers are no longer typing code.
Let's be clear about what this likely means in practice. Engineers aren't sitting back drinking coffee while AI does all the work. They're probably doing what everyone who uses AI coding tools does: describing what they want, getting AI-generated code, reviewing it, debugging it, refactoring it, and integrating it.
That's still engineering. It's just engineering at a higher level of abstraction.
The provocative claim - "haven't written a line of code" - is marketing spin. What they probably mean is "haven't typed out boilerplate implementations of well-understood patterns." That's genuinely valuable! But it's different from AI replacing software engineering.
Here's what AI coding tools are actually good at:
Boilerplate generation: Writing the hundredth REST API endpoint? AI can template that out. Setting up standard configuration files? AI's got you.
Code translation: Converting between languages or updating deprecated syntax? AI handles that well.
Pattern completion: If you're implementing something that has a well-established pattern, AI can fill in the details.
Here's what AI coding tools struggle with:
System design: Deciding how components should interact, what the data models should be, what the failure modes are - that's still human work.

