@mfpiccolo: Kaffu's "rich man's toy" line is the one of the sharp thing I've read on harnesses this year. He's right about the symp…
Summary
The tweet discusses the problem of bloat in AI agent harnesses, agreeing with Kaffu's critique that harnesses become "rich man's toys," and advocates for a composable architecture of small, replaceable workers to reduce drift and keep systems cheap and debuggable.
View Cached Full Text
Cached at: 06/02/26, 01:52 AM
Kaffu’s “rich man’s toy” line is the one of the sharp thing I’ve read on harnesses this year. He’s right about the symptom. I’d push back on one part of the diagnosis.
The bloat drift he names, agent engineering quietly turning into software engineering, is real. Every harness team I’ve talked to hits it around month nine. The framework you started with grows features it didn’t need, the system prompt swells, the retrieval layer doubles, the cost-per-task triples. Codex and Claude Code keep getting better, and you start to wonder what you’re building.
My extension: the drift is structural. It happens because the unit of work in a framework-shaped harness is the whole framework. To add a capability you grow the framework. To change a behaviour you fork the framework. The bloat has nowhere else to go.
When the unit shrinks to one narrow worker, one typed function, one job, drift loses its surface area. A retrieval worker that’s wrong gets replaced, not extended. The math-based reranker kaffu is right to advocate for becomes a worker that registers rerank::score. The fine-tuned RoBERTa becomes a worker that registers embed::generate. They sit next to the LLM provider worker on the same bus. The system stays cheap by being composable.
Simply, everything become a worker.
This doesn’t make harnesses economically valuable on its own. Kaffu’s deeper point stands. Most of what teams ship is fancy on paper and useless in production. The framework era encouraged that because the unit it sold was always too big.
I don’t know what the economically valuable harness looks like at steady state. I think it looks small. Small enough that every part is replaceable, every part is debuggable, every part is benchmarkable, and observable with observability worker against a 100-line fine-tuned alternative. The harness as a slider, not a monument.
For the love of the game.
Similar Articles
@akshay_pachaar: The harness is what matters now. The model is just a commodity. A model on its own returns text. Nothing it produces be…
The article argues that the harness (agent framework) is now more critical than the model itself, demonstrating with Cline's tests showing performance differences from reasoning budget adjustments. Cline introduces ClinePass, a subscription offering discounted access to multiple open-weight models within their harness.
@mfpiccolo: https://x.com/mfpiccolo/status/2060069083878408689
The article argues that current agent harness frameworks like LangChain and CrewAI bundle independent concerns into a monolithic block, leading to inflexibility. It introduces the iii engine, where each responsibility is a separate, swappable worker connected via a shared bus and a single trigger primitive, allowing developers to compose their own harness by swapping workers rather than forking a framework.
best of the best agentic harnesses do this…
The author shares insights on building effective agent harnesses: the best ones minimize LLM reliance for trivial tasks and reserve LLMs for complex reasoning, distinguishing genuine harnesses from simple wrappers.
@omarsar0: Highly recommended. I've often claimed there's huge alpha in building agent harnesses. Turns out harnesses are composit…
Discusses the concept of agent harnesses as compositional generalizers for scaling generalization in models, referencing the RLM harness.
@sairahul1: https://x.com/sairahul1/status/2063544956158185927
This article introduces the concept of 'Harness Engineering,' a discipline focused on designing the systems that constrain and guide AI agents to make them reliable in production, arguing that the harness matters more than the model itself.