AI Engineer World's Fair 2026
Building agents is trivial now, context is the next frontier
About this talk
Unblocked founding engineer Jeff Ng argues that cloud primitives and frameworks such as Flue have simplified production-agent infrastructure, but organizational context remains the primary failure mode. A Linear ticket-enrichment agent recommends re-enabling async dispatch to address QA latency, unaware that the same setting previously caused an outage documented in Slack discussions and a postmortem. Ng contrasts human-supervised local agents with unattended agents, explains why MCP connectivity alone cannot reconcile conflicting information or control context costs, and presents Unblocked's context engine as a way to ground agent plans and code reviews in relevant organizational knowledge.
Chapters
- 0:00Why production agents became easier to build
- 4:25Linear enrichment demo and the dangerous async-dispatch recommendation
- 6:10Missing Slack discussions, postmortems, and human context
- 9:46Why MCP connectivity does not create understanding
- 12:05Context-engine grounding, code review, and closing
Talk transcript
- 0:00
[upbeat music] Hi, all. Uh, my name is Jeff.
- 0:15
I'm a founding engineer at Unblocked, and I'm here to talk to you about how building agents has actually gotten pretty easy. But unfortunately, they still get things confidently wrong.
- 0:27
So six months ago, it required a team's effort and basically a quarter to build out an agent. Um, an agent is more than just models and tools. It's the models, the tools, and everything required to build out a production service.
- 0:42
Uh, here are some examples of the different systems were necessary in order to build something out. Each one of these was basically its own company or at least a company function.
- 0:54
Not gonna go through each one of these, but, you know, a few that stood out to me.
- 0:59
First one, checkpoint and state persistence. Agent runs, they're typically long-lived and stateful. Um, unfortunately, uh, infrastructure itself though, those-- that's ephemeral. Crashing without durability can actually lead to a lot of state loss, and that state kind of includes things like message history, tool calls, as well as, you
- 1:24
know, where you are in the loop. Without these things, you can't resume the session. Uh, one option is, you know, maybe you wanna restart the session. Unfortunately, that's actually quite expensive as well.
- 1:36
Uh, you lose out on all the tokens that you'd originally used, uh, as well as, you know, latency. Uh, from a user experience standpoint, you've already triggered that session.
- 1:47
Now you have to wait for the whole thing to go again. And lastly, side effects. Your agent might have performed some side effects, and now there's a chance of those doubling up.
- 1:58
So next thing, sandbox infrastructure, right? So as we all know, we're running more and more agent-generated code as well as third-party code. This gets all run on your infrastructure, and due to that, there are some complexities.
- 2:13
Uh, because of that, we want to introduce isolated sandboxes, which help prevent, uh, unnecessary reads of environment secrets, unnecessary network access. You know, just in general, we don't wanna take down the shared host.
- 2:30
And then observability. How do we answer the question: where did this fail? Typically, this includes tracking logs and traces from across half a dozen systems.
- 2:43
Everything I've mentioned here, none of this actually improves an agent's capabilities. They're all taxes one has to pay in order to get an agent out there to play the game.
- 2:56
Thankfully, things have changed quite a bit. Uh, the whole ecosystem has matured quite a bit, and cloud infrastructure players such as Cloudflare, uh, Vercel, AWS, they've gone and taken some of that complexity away and built primitives that these frameworks, Flu, Vercel Eve, Mastra,
- 3:18
with these together, you know, they've taken a lot of the complexity away, and you can focus more on building the actual agent itself, the core logic that actually helps you and your team and your customers.
- 3:33
So here's an example of one. Uh, I've played around with Flu and Cloudflare, and as you can see on the left-hand side,
- 3:42
you know, we basically handle everything as mentioned before. So the primitives plus a framework lead to a situation where it's actually not that much code to define an agent, uh, one of the things I was shocked at when I first took a look at the documentation.
- 3:57
To get in the details, all you really have to do when defining an agent is, A, deciding which model you wanna use, B, the instructions or, you know, the system prompt, C, the tools that you want the ax-- the agent to have access to, skills, the things that it can do, as well as the sandbox location, where
- 4:17
things are being run. So, uh, to give you an example of this,
- 4:25
I've actually gone and built out a issue enrichment system specifically for Linear. So what this does is, given a Linear ticket and access to your code repository, it'll go out, you know, fetch a Linear ticket, determine whether or not it's a feature or a bug.
- 4:43
From there, it'll do some code searching, provide all that context to the agent, and then come up with a plan of next steps.
- 4:51
On the left-hand side here, this is a issue that one of my colleagues, a support engineer, had posted, I think, a month ago. Uh, to summarize it, what had happened was we had some pretty serious degradation in our agentic QA pipeline, time to first character was taking three to four seconds when it should realistically be in the
- 5:11
hundreds of milliseconds. So let's see what happens when, you know, we put this through the system.
- 5:20
So as you'll see here, I've set up the agent to go fetch a agent. I've given it the skills and tools to actually go and fetch a code, search a code, and query against that.
- 5:31
That's being passed back to the agent, which is doing some reasoning against that right now.
- 5:36
And then just wait a little bit. At this point, we've updated the Linear issue ticket. The recommendation here is to re-enable our async dispatch, which makes sense. It allows us to run a lot more of our QA pipeline in parallel on a single machine.
- 5:52
Sounds great, right? Unfortunately, um, this is wrong. This had actually caused an outage a few days ago, and one of our, uh, support engineers had explicitly disabled this, uh, before this ticket was, uh, shown.
- 6:07
So-
- 6:10
Where did things go wrong? Why was the con-- uh, you know, why did I get it wrong? The agent I had written, it didn't have a full picture. It was missing the context from the Slack discussion that happened after the issue where the engineers came together, uh, went through the actual outage, what went wrong, what was the
- 6:28
fix, and the next steps. It also was missing the postmortem, uh, Linear ticket, which came as a result of that. In general, it had a narrow understanding of the problem.
- 6:41
This concept of missing knowledge and intent that's stored across an organization and different systems is something that comes back in the back again. And since this was deployed as a background agent, this is gonna make that mistake silently in the background, misinforming both my teammates and potentially other agents.
- 7:00
So I guess the next question is, why don't we run into this locally? You know, we all use agents locally. We don't necessarily run into these issues. Well, you, the human, the engineers, we currently act as that context layer.
- 7:14
When working with an agent, you know, you're there to ask questions, catch any errors, and supply the missing facts on every single turn.
- 7:23
A person knew why the code is the way it is, what broke last time, and what we've decided to do about it. The agent though, it only has what's on the right-hand side, right?
- 7:33
It has instructions, the tools and skills we specifically gave it, the code, as well as the ticket in front of it. When a agent is in the loop-- oh, sorry, when a human is in the loop with the agent, we're there to catch, to steer.
- 7:47
Ultimately, we're there to babysit the agent. But as agents have gotten trivially easy to deploy, as I've shown earlier with Flu and Cloudflare,
- 7:57
the-- without the human in the loop, this issue becomes more and more prevalent. This missing context becomes a silent failure. You know,
- 8:06
all that intuition and knowledge that we've had as humans needs to be replaced. Something needs to carry the load.
- 8:14
So that thing, that's a context engine. A context engine is a system that provides task-relevant information based on who you are and what matters. It also resolves all the conflicts across multiple data sets.
- 8:29
It understands your access roles or the agent's access roles, and only, uh, respects that, and only provides information that's relevant. And most importantly, it delivers a synthesized understanding that an agent can act on, not just a list of documents that it has to reason upon itself.
- 8:47
So how does this context engine work? Well, let's take a step back. What does an agent actually need? An agent needs-- Clearly, it needs context outside of just your source code.
- 9:00
Think about everything that you need to work day to day. It's not just the code. It's, you know, the Slack discussions where decisions are made, the documentation where we show all the best practices.
- 9:13
All that is important to your day-to-day process, and that's true for your agent as well. So what we do here is we connect everything, your docs, code, tickets, conversations.
- 9:24
We then build a model of your organization, of your system, and we piece how all of these things work together and make it generally available to your agents. From that model, the agents are only provided a slice of that data which has been reconciled, ranked, and scoped to your permissions.
- 9:40
Scattered context comes in, grounded context comes out.
- 9:46
The obvious next question is, why can't we just do this with MCP, right? You could connect a Slack MCP, a Linear MCP, a GitHub MCP, and with that, all that data is accessible.
- 9:57
MCP is great at access, but access isn't understanding. A MCP hands the agent the raw results, and you know, you're now dependent on the agent to actually decide what to believe in.
- 10:10
You end up flooding the agent with irrelevant data, filling up the context window and, you know, overall context costs just go up. It also leaves a local agent to handle conflicts in data.
- 10:21
You know, your Linear MCP and your Slack MCP may come back with different results. You're just leaving the agent to make that decision somewhat ad hoc at this moment.
- 10:32
So back to the original problem I had earlier. This is the same file, same agent, but now we've connected the context agent. Uh, what we do here is, is we're currently prompting Unblocked to do some research on the ticket and provide that context to the agent.
- 10:49
So let's see that in action. Sorry about that.
- 11:02
So here we go. Uh, we're doing a very similar thing. We're fetching the Linear ticket, but you'll notice here that we're actually calling the Unblocked context engine. And what it's done here is actually it's found the relevant Linear postmortem, as well as a Slack conversation where we've had the entire discussion between the engineering teams.
- 11:19
And as part of that, we've returned a understanding, and that's now been provided to the agent as a summary. So the agent no longer has to actually reason from those documents.
- 11:31
And at this point, you'll notice here, the agent now has been updated.
- 11:41
Uh, the recommendation has gone from breaking and causing another issue to actually preventing a- another outage.
- 11:53
So the example I've shown here is issue ticket enrichment, but this context layer can actually go a lot further. Uh, for example, coding. Everyone here does, uh, coding with, uh, Cloud Code or Codex.
- 12:05
Using an Unblocked context engine to actually hydrate the agent plan goes a long way in terms of saving context and tokens. Uh, code review. It makes the PRs look as if they've been reviewed by an expert on your team.
- 12:19
Who doesn't like that? As well as surfacing the correct answers to your customer success team as well as sales.
- 12:27
In general, there are many instances where you might want an agent to have institutional and tribal knowledge of your organization.
- 12:37
Just wanted to leave you on this. I think this quote encapsulates what we're trying to solve at Unblocked. "The gap isn't intelligence, it's context."
- 12:46
So thank you. Uh, I'll be at Booth P16 along with the rest of my team if you guys have any questions.
- 12:53
There will be additional breakout sessions later tomorrow, I believe, that goes a lot more in depth about actually how the context engine works and, you know, how you can benefit from that.
- 13:03
Cheers. [applause] [outro jingle]