Resources · 8 min read

The Routing Rules File: send cheap work to cheap models without guessing

Open models went from 28% to 62% of tokens served at Vercel in two months. AT&T cut the cost of coding and some advanced tasks by as much as 56%, for about a 2% quality drop. Both did it with a routing policy. Here is that policy as a file for your repo — plus the eval that finds your own line.

By Shreyans Bhansali · August 25, 2026
Makersfuel Resources card: The Routing Rules File - send cheap work to cheap models without guessing.

Two numbers from the last two months.

Open-source models went from 28% to 62% of tokens served at Vercel. The chart came from Vercel's Guillermo Rauch, and investor Gavin Baker set out the figures. And AT&T, which routes roughly 45 billion tokens a day through its internal platform, moved about 40% of employee AI queries to open models and intends to reach 60–70%. Coding and other advanced tasks got cheaper by as much as 56%, against a quality drop of about 2%.

Neither of those is a story about a model. They are stories about a policy: a written rule that decides which model gets which task, applied consistently.

Most founders do not have one. They have a default model chosen months ago, an occasional guilty glance at the billing page, and a vague sense that some of this work does not need the expensive thing.

Here is the single most useful thing in this whole resource, and you can act on it without signing up for anything:

Write the rule for the task, not the model. Every routing policy that survives contact with reality keys on properties of the work (does it use tools, how many tokens, is the output customer-facing, does it touch money or law) and never on a model's name. Model names and prices change on someone else's schedule. "Anything customer-facing where one factual error is unacceptable" was true last year and will be true next year.

That single inversion is why most people's routing setups rot. They hardcode claude-opus-4-7 and kimi-k2-6 into a config, ship it, and by the time anyone looks again the names are wrong, the prices have moved, and nobody dares touch it. A tier-based file survives all of that: you change three lines at the top and every rule underneath still holds.

A sample, so you can see the shape. This is the downshift rule, the one that pays for itself fastest, because classification and routing calls are usually the highest-volume, lowest-stakes traffic in the whole stack:

```markdown

Route to CHEAP when ANY of these is true

  • The task is classification, routing, labeling or re-ranking
  • The output is structured (JSON / function call) under 1K tokens
  • The result feeds another model rather than a human
  • Cost per call must stay below $0.001

```

Four lines. No model names. Point CHEAP at whatever is cheapest and adequate this quarter, and the rule never needs rewriting.

The full file is below: three tiers, the escalation rules, the 90-day re-evaluation loop, the eval that tells you where your line is, and seven copy-paste prompts for the work founders actually hand to models.