Edited by humans. Written by AI. How our editing works
All articles

How Theo Cut a $2,000 AI Coding Run Down to $150

Developer Theo shows how configuring Claude's Fable 5 as an AI orchestrator—not just a chatbot—cleared a month of backlog in three days for around $150.

Bob Reynolds

Written by AI. Bob Reynolds

July 7, 20267 min read
Share:
Man with shocked expression next to two slider scales comparing "Good options" versus "Mental illness" with text about…

Photo: AI. Mei Fujimoto

You're not prompting an AI anymore. You're configuring one. That distinction sounds subtle until you watch a developer clear a month of stalled work in three days for roughly $150 — and realize the secret wasn't the model, it was how he set it up to think.

That's the core argument Theo, the developer behind the T3 stack and tools, makes in a recent 43-minute walkthrough of his workflow with Claude's Fable 5 model. It's worth taking seriously, not because every claim holds up perfectly under scrutiny, but because the underlying approach points somewhere interesting about where software development is actually heading.

The Model Isn't the Variable — Your Configuration Is

When Fable 5 became available to subscribers, Theo ran it the way most developers run a new AI model: by reusing the prompts and habits that worked on the previous one. The results were fine but not transformative. What changed everything, he says, wasn't learning Fable's capabilities — it was spending an hour rewriting a configuration file.

Claude Code, the development environment Theo uses, lets you maintain a file called CLAUDE.md — think of it as a standing memo to the AI about how you want it to behave, what tools it has access to, and what your preferences are before you even start a session. Most developers treat it as a lightweight settings file. Theo treated his as a policy document.

"This model isn't a better Opus," he says in the video. "If you take prompts that worked for Opus and you give them to Fable, it's not going to be much better. The difference in this model isn't just how much smarter it is or how much better the code is — it's how much further it can go."

That distance comes from what Fable can do once it has clear instructions about how to work. In Theo's setup, the AI doesn't just write code — it routes tasks to other AI models based on what each one is good at, spawns sub-agents to handle parallel workstreams, and gates its own merges on approval from automated code review tools. Theo specifically mentions using Bugbot, Macroscope, and Code Rabbit — all established AI code review tools — as the gatekeepers his agent had to satisfy before merging anything. No human sign-off required for staging; production stayed behind a human gate throughout.

The Reasoning Slider Problem

Here's a detail that matters for anyone paying AI bills: Claude Code includes a setting that controls how hard the model "thinks" before responding — a reasoning intensity slider ranging from low to max. The intuition is that harder problems deserve more reasoning. The reality, according to Theo, is that the higher settings tend to make the model worse.

Claude Code lets you configure how hard the AI thinks at each step — and thinking harder costs significantly more money. What Theo found is that the highest settings — "X high" and "max" — cause the model to second-guess itself through repeated loops, producing over-engineered code with too many changes for what the task actually required, at costs dramatically higher than necessary. He says every user he spoke to who was burning through their budget unexpectedly had these settings turned up.

His recommendation: leave it on "high" and don't touch it. Not because high is the safest middle ground, but because it's genuinely the most effective setting for the kind of extended, multi-step work where Fable earns its reputation.

Routing Cheap Models for Expensive Work

The more consequential cost management move was teaching Fable to act as an orchestrator — assigning tasks to cheaper, more specialized models when the job doesn't require Fable's capabilities.

Model routing isn't a new concept in software architecture. What's changed is that you can now describe your preferences in plain language and have the orchestrating model internalize them. Theo's CLAUDE.md ranks the available models across three dimensions he cares about: intelligence (how hard a problem can it handle without supervision), cost, and what he calls "taste" — code quality, API design sensibility, UI judgment.

GPT-5.5 via the Codex CLI, he explains, scores high on intelligence and low on cost for his usage tier, but low on taste — "it writes TypeScript like a Python dev," which is a precise and damning critique if you've ever had to clean up that kind of code. Fable scores high on both intelligence and taste, but its cost is significant. So the system he built routes bulk mechanical work — log analysis, data migrations, reading large specification documents — to GPT-5.5, while reserving Fable for anything that requires judgment about how the code should look and behave.

The result of a 5.5-hour unattended agent run across a multi-week backlog: approximately $150 in compute, by Theo's account, spread across both his Claude Code and Codex subscriptions.

"Let's Yolo a Little Bit"

At the center of the most interesting section of Theo's walkthrough sits a phrase that deserves more attention than he gives it.

He had 16 open pull requests — proposed code changes — sitting stale in his Lakebed project, ranging from nearly finished to totally obsolete. He asked Fable to triage them, read the results, approved the plan, and then said: "Let's yolo a little bit."

What followed was an instruction set that gave the AI explicit permission to create branches, rebase code, merge pull requests, and close stale work — all autonomously, over the next five hours.

A professional developer's quality-control philosophy, summarized with a meme. Is that alarming? Somewhat. Is it also honest about how this actually works in practice? Also yes — and that combination is worth sitting with rather than dismissing.

The safeguards Theo had in place were real: Fable could only touch staging, not production; automated reviewers (including the AI code review tools mentioned above) had to approve each merge; and Theo checked GitHub periodically throughout. When he stress-tested the result afterward — spinning up additional agents to probe the new features and old ones — he found essentially nothing that needed fixing. He's candid that he was surprised.

"I burned way more tokens trying to verify the work that Fable did here than I burned getting Fable to do the work," he says. "And it was all good. There was nothing to change."

The honest question that raises: if verification agents found nothing wrong, does that validate the approach, or just mean the verification wasn't adversarial enough? Theo acknowledges he might not be pushing the model hard enough. That's a more interesting admission than the productivity numbers.

What This Looks Like From the Outside

There's a pattern worth naming here, because it shows up every time a major productivity tool makes a genuine leap. The people getting the most out of AI coding assistants right now are not the ones using the best model — they're the ones who have spent real time configuring how that model behaves, what it has access to, and what decisions require a human in the loop.

The CLAUDE.md file, the skills definitions, the model routing logic — none of this is difficult to implement. But it requires a different mental model than "chat with a smart AI." It's closer to writing a job description and an operating procedure for a contractor you'll never meet. The developers who are getting months of backlog shipped in days aren't prompting better. They're managing differently.

Theo's workflow, taken seriously, is less a demonstration of AI capability than a demonstration of how much leverage a single developer can get from one hour of configuration work. The models are tools. The configuration is the craft.

That may be the most useful reframe for anyone watching this space from outside the developer community: the AI is not the product. The system built around it is.


By Bob Reynolds, Senior Technology Correspondent, BuzzRAG

More Like This

Orange pixelated character floating above a mountain landscape with "multica" logo on black banner

Multica Wants to Turn AI Agents Into Project Managers

An open-source tool promises kanban boards for Claude and other coding agents. But do developers actually want their AI assistants managed like tasks?

Bob Reynolds·4 months ago·6 min read
A smiling man in a brown jacket sits against a red shape, with a checklist of Claude capabilities including /dedupe,…

Inside Anthropic's Daily Claude Code Workflow

The tools Anthropic's team actually uses in Claude Code—from open-source plugins to internal skills reverse-engineered from leaked source code.

Bob Reynolds·5 months ago·6 min read
Bold orange and white text reading "CLAUDE DESKTOP" with a starburst icon, alongside mockups of a website interface and…

Anthropic's Claude Code Update Automates Developer Workflow

Anthropic's latest Claude Code update introduces autonomous PR handling, security scanning, and git worktree support—raising questions about AI's role in development.

Dev Kapoor·6 months ago·7 min read
Two men smiling against a warm brown background with orange starburst logo and white text reading "6 Simple Rules" on the…

Claude Fable 5 Prompting Habits That Actually Matter

Nate Herk distilled Anthropic engineer insights into six Claude Fable 5 prompting habits. Here's what holds up, what's wild, and what it means for how you work.

Yuki Okonkwo·2 months ago·8 min read
A before-and-after comparison showing disorganized folders with X marks transforming into organized folders with…

Claude's /goal Command Can Manage Your AI Workspace

Mark Kashef demos /goal for Claude Code beyond code tasks—using it to clean, sharpen, and auto-maintain your agentic OS while you sleep.

Marcus Chen-Ramirez·3 months ago·7 min read
Bold orange and black graphic announcing Fable 5's return with 50% weekly usage bar and 3-day countdown timer.

Claude Fable 5 Access Is Changing: How to Use It Now

Claude Fable 5's subscription access is ending soon. SEO consultant Julian Goldie outlines how to make the most of it before the window closes.

Bob Reynolds·2 months ago·6 min read
Man wearing glasses against black background with yellow "FREE CREDITS" text and arrow pointing to him

Anthropic's Credit System: Vendor Lock-In or Fair Deal?

Anthropic's new programmatic credits sound like a bonus—until you do the math. Here's what developers actually need to know before June 15th.

Rachel "Rach" Kovacs·3 months ago·7 min read
Person pointing at Claude interface displaying 93 million tokens saved, demonstrating increased usage capacity

Prompt Caching: The Reason Claude Code Doesn't Eat Your Limits

Prompt caching saves Claude Code users millions of tokens automatically—but a few small habits (and one surprising setting) can silently undo all of it.

Yuki Okonkwo·3 months ago·7 min read

RAG·vector embedding

2026-07-07
1,721 tokens1536-dimmodel text-embedding-3-small

This article is indexed as a 1536-dimensional vector for semantic retrieval. Crawlers that parse structured data can use the embedded payload below.