Does progressive disclosure help agents navigate large document collections?
Progressive disclosure structures layered access to documents, but the benefit may depend on the agent's existing navigation ability and corpus size. When does adding disclosure layers actually improve performance?
The paper's central claim is that progressive disclosure, which exposes only what a query needs "from a short description down to the specific passages," "buys context, not intelligence." It reports the first controlled study of the pattern, comparing raw-document navigation, flat and hierarchical Agent Skills packs, and a hybrid retriever on ∞Bench across three agent harnesses and three model families. On a single book the gain depends on the harness: it "runs large" when the agent navigates the raw document poorly and is "near zero" when a strong harness already locates and reads the right passages on its own. When tasks span many books, raw-document navigation collapses while one-level progressive disclosure degrades more slowly and pulls ahead.
The reasoning the authors give is about headroom. Loading a whole document and retrieving chunks "neither wins outright," and effective context falls short of the advertised window, so letting the agent decide what to read is attractive. But on one book "a strong agent already greps the passages it needs," so a disclosure layer has nothing left to add. Only "once the corpus outgrows what native navigation can hold" does flat disclosure become "decisive." The value of the layer therefore tracks the gap between corpus size and what the agent can navigate unaided. The paper also finds that "a second routing level never reproduces this gain and sometimes breaks accuracy," and its packaging guidance follows: one skill with layered disclosure, not several parallel child-skill packages whose descriptions are always loaded.
This qualifies the on-demand-lookup family in the vault. Can LLMs read long documents like humans do? builds a fixed pipeline of gist memories with lookup of the original passages and beats retrieval baselines. This paper hands the layering to the agent and finds the benefit conditional on harness and corpus size rather than general. It also sits beside Can delegation teach models to manage context more actively?, another agent-side way to manage context, though the excerpt says nothing about subagents. Both suggest context is now managed by the agent, but this paper adds that the management only pays where the agent's own navigation runs out.
The excerpt does not establish several things. It does not name the three harnesses or model families, say how many books mark the point where raw navigation collapses, or give any effect sizes. It lists the hybrid retriever as a comparison but reports no result against it. It offers no explanation for why a second routing level hurts. The introduction's Claude Code example is, in the authors' own words, an engineers' report "from experience, not a controlled comparison." The defensible reading is conditional: check whether a strong harness already navigates the raw document before adding structure, and if the corpus is large enough to need it, keep the structure one level deep.
Related concepts in this collection 2
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
Can LLMs read long documents like humans do?
How might mimicking human reading strategies—storing gist memories and looking up details on demand—help language models handle documents beyond their effective context window?
a fixed gist-then-lookup pipeline; this paper finds the agent-driven layered version helps conditionally, depending on harness and corpus size
-
Can delegation teach models to manage context more actively?
Does training models to decompose tasks and delegate to subagents—rather than passively compressing when context fills up—improve their ability to reason over long horizons? And does this skill transfer to single-agent work?
another agent-side context strategy; this paper's layered disclosure involves no subagents
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- Is Progressive Disclosure All You Need for Long-Context Agents?
- Toward Meaningful Transparency for AI Chatbots: Disclosing Persuasive Intent Reduces Persuasion
- Psychological, Relational, and Emotional Effects of Self-Disclosure After Conversations With a Chatbot
- Psychological, Relational, and Emotional Effects of Self-Disclosure After Conversations With a Chatbot
- Harness-1: Reinforcement Learning for Search Agents with State-Externalizing Harnesses
- Leaky Thoughts: Large Reasoning Models Are Not Private Thinkers
- Teaching Large Language Models to Reason with Reinforcement Learning
- Can Large Language Models Reason and Optimize Under Constraints?
Original note title
progressive disclosure buys context, not intelligence — near-zero gain on one book with a strong harness, but it pulls ahead once tasks span many books