MetaRoute Bench tests 8 strategies for how AI agents pick their next move. The winner gains 2.7 points of success but pays 4.7% more cost and 6.4% more latency. Offline only.
A new benchmark for AI "planning strategies" reports a 2.7-percentage-point lift in task success, paired with a 4.7 percent rise in cost and 6.4 percent rise in latency per task. MetaRoute-Bench, released this week as an arXiv preprint submitted to the DAI 2026 workshop, makes the cost of routing cleverness part of the score.
A "meta-decision policy" is the layer above a model's first answer. It is the strategy a system uses to decide whether to answer directly, decompose a question into subtasks, call an outside tool, hand work to a specialist sub-agent, check an intermediate result, or recover when something goes wrong. Where a regular AI agent does the next thing, a meta-decision policy decides which next thing to do. Most agent benchmarks test whether the final answer was right. MetaRoute-Bench tests the planning layer that sits above the answer.
The benchmark runs 43,200 traces across 180 synthetic task profiles covering data analysis, research, and document processing, and pits eight routing policies against each other under 30 paired random seeds, per the arXiv preprint. A "task-aware compositional" policy that decides which operations to chain together, and when, reaches 79.4 percent task success. A strong workload-specific static policy reaches 76.7 percent. A one-shot task router reaches 67.4 percent. Direct answering without planning reaches 52.9 percent.
The 2.7-point gain over the static policy is the number most coverage will lead with. It is also, by the authors' own accounting, modest. The reported 95 percent confidence interval is ±2.0 percentage points, which puts the lift inside the noise band of a single offline benchmark. The 2.7-point edge is paid for with 4.7 percent higher mean cost and 6.4 percent higher mean latency per task. The benchmark's utility function, U = S − 0.025K − 0.0015L, where S is success, K is cost, and L is latency, bakes the tradeoff into the score, with cost weighted more heavily than latency.
Two design choices drive the difference. The first is route composition. The winning policy is allowed to chain several operations; one strong baseline is restricted to a single operation. When the authors ablate composition and force the policy into one operation, success drops by the largest margin in the ablation table. The second is verification. A policy that re-checks intermediate answers before committing to a final answer keeps more tasks on the rails. Strip verification out, and the gap to the static baseline narrows sharply. Routing cleverness is the tax the system pays to catch its own mistakes.
The benchmark is offline and synthetic. The authors run a "seeded offline execution model" rather than a live deployment, as the preprint states. Real production agent stacks have tool-failure modes, network latency tails, and adversarial user inputs a fixed seed cannot reproduce. The headline percentages measure how the eight policies compare on the same controlled traces, not how they would fare inside a customer's workflow. The authors flag the gap and publish the task-generation code, policies, and traces so other teams can run live-system follow-up.
The benchmark gives the agent ecosystem a reproducible yardstick for the planning layer, with the cost of using it shown in the same row as the wins. The 2.7-point success lift, on an offline test, is a narrow but real finding. The cost and latency in the same row of the table are the part future benchmark releases will have to defend.