Skip to content
Go back

Human-Written AGENTS.md Still Wins

Evaluating AGENTS.md

Hi fellow developers, do you let your coding agent generate AGENTS.md? You may be actually hurting its performance by doing so.

A recent paper by Gloaguen et al. evaluated if repo context files help coding agents. They found that

Bar chart comparing repo-context strategies across Sonnet-4.5, GPT-5.2, GPT-5.1 Mini, and Qwen3-30B. Human-written context outperforms LLM-generated context in most cases.

The main reason is that LLM-generated context files are mostly redundant information already present in README, docs, or other files in the repo. That’s obvious, agents can only know what they can discover, they won’t know what is not told. It just burn more tokens for worse results.

In contrast, human-written context files normally include information that is not present in the repo or not obvious from the code, which are things like tooling and conventions.

So fellow developers, let’s don’t be lazy enough to even offload the context file writing to agents. We should provide them necessary important context, keep it minimal and specific to fill the context gap.


Share this post on:

Next Note
Context Learning Is Still Harder Than It Looks