Pack · 10 talks · 4h 36m to watch, 59 min to read

Context engineering

More context can make an agent worse. Important facts vanish into the middle, old tool results crowd out the current job, and a catalog of 100 tools gives the model another search problem before it can begin the user's task. Truncation, retrieval, progressive disclosure, memory and active context editing each decide what survives inside the conversation. Tool routing makes that choice earlier by searching a catalog and loading only the relevant schemas. From there, context engineering reaches beyond the prompt. Browser agents need a compact view of the page, performance agents need summaries shaped for diagnosis, and Cloudflare exposes 2,600 endpoints through two tools so one generated program can complete many steps. Each design gives the model a smaller, more useful working set.

3
Louis-François Bouchard, Omar Solano & Samridhi Vaid, Towards AI · 1:03:26 · AI Engineer World's Fair 2026
Context Engineering in 2026

Why here: Delucia has a working compression rule. Bouchard tests that instinct against prompt caching and finds that untouched history can be cheaper, faster and better at recall. His safer common ground is progressive disclosure, which Lesse turns into concrete platform controls.

5
Sohail Shaikh & Ankush Rastogi, Prosodica · 28:27 · AI Engineer World's Fair 2026
The 100-Tool Agent Is a Trap

Why here: Lesse edits context after a session has accumulated it. Shaikh and Rastogi prevent the buildup by routing a request before the model sees any schemas, then injecting only a few relevant tools. Monigatti widens that routing problem from tool catalogs to every source an agent may search.

6
Leonie Monigatti, Elastic · 1:03:13 · AI Engineer Europe 2026
Agentic Search for Context Engineering

Why here: Shaikh and Rastogi retrieve tools. Monigatti argues that the same search decision governs all context, whether it comes from files, databases or memory. Her mix of simple specialist tools and flexible general tools leads into Dougherty's practical advice: let the agent retrieve structure instead of stuffing it into a prompt.

9
Michael Hablich, Google · 22:38 · AI Engineer Europe 2026
Building Agent Interfaces: Lessons from Chrome DevTools (MCP) for Agents

Why here: Raj compresses browser state so the model can see the page. Hablich compresses Chrome performance traces so the model can still reason after reading them, then measures the interface by tokens per successful outcome. Pai shrinks the model-facing interface again, replacing thousands of tool schemas with two executable tools.

10
Sunil Pai, Cloudflare · 19:40 · AI Engineer Europe 2026
Code Mode: Let the Code do the Talking

Why end here: Hablich shows how much careful work it takes to make 25 tools usable. Pai asks whether the model needs that menu at all. Cloudflare exposes 2,600 endpoints through search and execute, so one generated program can perform many steps without repeated model round trips. It is the pack's clearest example of context engineering changing the interface, not merely trimming the prompt.

After this pack: MCP beyond the demo →