---
title: "The Orchestrator's Tax"
url: https://daily.dev/posts/the-orchestrator-s-tax-8xrwbi0xq
source_url: https://martinfowler.com/articles/orchestrator-tax.html
type: article
source: "Martin Fowler"
published: 2026-07-28T13:11:19.962Z
updated: 2026-08-07T13:24:29.599Z
tags: ["ai-agents", "claude-code", "context-engineering"]
reading_time: 14
upvotes: 1
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# The Orchestrator's Tax

**[Martin Fowler](https://daily.dev/sources/mafo)** · 14 min read · 1 upvotes · 0 comments

## Summary

A developer reflects on a real Claude Code session involving four subagents on a .NET codebase refactor, discovering that the biggest cost wasn't parallelism overhead but orchestrator context pollution. When status-check tool calls pulled full raw transcripts (tens of thousands of tokens) into the main thread, those tokens persisted across every subsequent turn, degrading the orchestrator's working memory. The author introduces the concept of 'cognitive locality' — tasks sharing the same mental model should stay together rather than be split across agents — and argues that subagents' primary value is keeping noisy intermediate reasoning out of the orchestrator's context, not just saving wall-clock time. The post concludes with four concrete CLAUDE.md rules (limit wave size, avoid transcript polling, ban concurrent repo-wide git ops, treat overlapping file ownership as a consolidation signal) and a heuristic for when to add standing instructions versus when a single clarifying fact suffices.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://martinfowler.com/articles/orchestrator-tax.html>

---

Tags: [#ai-agents](https://daily.dev/tags/ai-agents), [#claude-code](https://daily.dev/tags/claude-code), [#context-engineering](https://daily.dev/tags/context-engineering)

[View this post on daily.dev](https://daily.dev/posts/the-orchestrator-s-tax-8xrwbi0xq)
