The cold-start tax
Every agent run starts with a question: what does this agent know before it begins? For most teams, the answer is — less than the last agent knew when it finished. That is the cold-start tax.
A human engineer accumulates context. They learn which test suite lies. They remember the migration that failed last quarter. They know the weird auth path in the billing service. They know that a dependency was pinned for a reason. They know who to ask when a convention is not written down.
A coding agent can discover all of that too, but usually only
inside a run. Once the session ends, the useful residue is
scattered: hidden in the transcript, buried in a local cache, trapped
inside one vendor's memory, mixed into a trace store, left as a PR
review comment, half-copied into AGENTS.md, or never
captured at all. The team paid for the lesson. The organization did
not keep it.
What the cold-start tax looks like
You can spot it when:
- A second agent repeats a failed approach from the first run.
- A reviewer gives the same correction twice in a week.
- An agent misses a repo convention that lives only in someone's head.
- Claude Code learns something Cursor does not know.
- A prompt file grows until nobody trusts it.
- A senior engineer says, "We already solved this."
- The team cannot explain why one agent run worked and another did not.
Why this matters commercially
Token waste is the easy number. It is not the whole cost. The larger cost is variance. If agent runs are unpredictable, senior engineers keep supervising them like interns. If the same mistakes repeat, adoption stalls. If useful lessons cannot travel across tools, the company becomes dependent on local context and vendor-specific memory.
The goal is not only cheaper agent runs. The goal is more predictable agentic engineering.
Pick one repo and one repeated workflow — flaky tests, adding an API endpoint, migrating a package, resolving CI failures, onboarding to a service, refactoring a module.
- What does the agent need to know before it begins?
- Where does that knowledge live today?
- Which corrections have humans given more than once?
- Which failed paths should future agents avoid?
- Which lessons are trapped in one tool or one person's head?