AIAI EngineerJul 24, 2026· 21:11

Everything Is a Rollout — Alex Shaw + Ryan Marten, Terminal-Bench, Harbor, Laude Institute

Alex Shaw presents Harbor, an open-source framework for evaluating and optimizing AI agents through sandboxed environments, arguing that agent development is a form of machine learning requiring empirical evaluation. He contrasts this with traditional software engineering, showing how agents' behavior is best treated as a black box artifact. Harbor provides a common format for specifying agentic tasks, enabling parallel rollouts across any model, sandbox, and task. Shaw outlines four evaluation use cases: assessing agents building internal products, using external APIs, powering product features, and automating processes. He highlights adoptions by companies like Cognition, Scale, and Poolside, and notes Harbor's role in benchmarks like Frontier Suite and Rune Bench for Runescape. The framework also supports training via SFT and reinforcement learning, with integration partners like Tinker and LangChain.

  1. 0:002018 Era
  2. 2:54Agents as ML
  3. 6:54Harbor Framework
  4. 9:10Rollouts
  5. 11:18Evals for All
  6. 12:30Eval Types
  7. 14:17Beyond Evals
  8. 18:36Training Loop
  9. 19:12Ecosystem
  10. 20:22Wrap Up

Powered by PodHood

Transcript

2018 Era0:00

Alex Shaw0:17

Awesome, thank you so much. Uh, so yeah, like he said, my name is Alex Shaw, I work at Laude Institute, and I'll be speaking today about Harbor, which is an agent evaluation and RL environment framework. And the title of my talk is "Everything is a Rollout," and I think you'll see, as I get into it, why we titled the talk that way.

But first, I want everybody to come travel back in time with me to the year 2018, so eight, eight years ago, and we're going to talk about some of the things that were going on in 2018. So, uh, probably you're going to see Avengers: Infinity War later today; the second one is just getting released.

GPT-1 was just released, and you probably didn't even notice, although maybe some people did. Musically, this random startup was about to rebrand to a product called TikTok, and you might have just learned about AirPods when you saw somebody walking around with headphones that had no cord.

So what about, what about software engineering? What did software engineering look like in 2018? We're going to read this tweet from Stay SaaS-y, SaaS-y with two A's, about what it was like to write code in 2018. So it says, "It's 2018 and your coworker just sent you a 400-line pull request.

You get a cup of coffee and sit down to review it. It's beautiful: elegant micro-refactors, crispy method names. You catch a few things, but that's okay, it's part of the dance. They didn't consider extensibility on part of their API.

Here's a comment, buddy." And this is actually just part of the tweet, so it keeps going; you should look it up if you want. And it's obviously written humorously, but the thing is, it does feel a little bit nostalgic, just like some of these other things that were going on in 2018.

Now, the thing is, this only changed maybe 6, or 12, or 18, if you're a very early adopter, months ago, but it already feels like the distant past in some ways. And I think it's time to start talking about, well, what will the history books say about software engineering?

And when I say software engineering, I mean that style of 2018 software engineering. It will probably say, the history books will probably say a lot of things, but I think one thing for sure that they'll say is software engineering was when you knew what the code would do before you ran it.

So, and that brings me then to a different tweet from François Chollet, where he says, "Agentic coding is a form of machine learning. Generated code is best treated as a black box artifact whose behavior and generalization should be managed via empirical evaluation, like with any ML model."

Agents as ML2:54

Alex Shaw3:13

And that kind of brings us to the next part in this talk, which is to compare and contrast what agent development looks like versus what more traditional software engineering development looks like, and why it demands a new set of tools to really understand what's going on and have confidence and trust.

So here's a, here's a 2018 programright here. So you can tell already the purpose of the program is to extract phone numbers from text, and we have a regexright here that looks for the phone number. And I can say with 100% confidence, what will happen if I run this program 1 million times in a row.

So now let's update it to the 2026 version. So I swap out my regex, and instead, obviously, I throw in my model call instead, and I say, "Extract this phone number." So in some ways, this is actually a more powerful program because the regex was actually a little bit brittle.

It would have missed any phone number that wasn't formatted exactly like how it was specified, whereas I'm pretty confident that this program, with GPT-5.5, will catch a lot of the phone numbers that are formatted weirdly. However, if I ran this exact program 1 million times, I'm not 100% confident that it will print the same thing every single time, or that I know exactly what it will print.

It probably gets itright almost every time; this is a pretty simple task. But this is obviously far simpler than the things we're asking these models to do, and the uncertainty only increases as the complexity of the task increases.

So now let's come back to François's tweet, and let's update it a little bit; we'll generalize it. So he says, "Agentic coding," and my claim is, well, just agents in general are a form of machine learning. And then he says, "Generated code is best treated as a black box artifact," and I say, "Agent performance itself is best treated as a black box artifact."

And that brings us to our, to our new paradigm. So we know now agent development is more similar to machine learning than it is to software engineering. So what are the things that we should keep an eye out for?

The tools that you use for machine learning, and also the pitfalls of machine learning, and what are the analogs for those with agent development? So we have machine learning on the left, agent building on theright. So training data, that now looks like environments.

And then your test and your validation set, that looks like evals, which, if you take off the mask, is also actually just environments, at least the style that we'll be talking about today. Weights, your model weights, are now skills, prompts, tools, the model, whether you're picking between models or actually updating the model yourself.

Your loss function looks now more like environment rewards and feedback. Your backprop or optimizer is now some context text-based optimization algorithm like JEPA, or even just running a coding agent in a loop. Your gradient descent step looks like a pull request into your repo.

And overfitting looks like reward hacking, or also just overfitting; that's also possible for agent development. So we have these things on the left, there's, you know, products and libraries and platforms that were built for these purposes. And then for everything on theright, we're just getting started.

Harbor Framework6:54

Alex Shaw6:54

So we built Harbor to answer some of these questions, we're building it to answer more of these questions, but other people are also building interesting products and interesting frameworks to help people tighten this loop of agent development. And then something else to consider is that, as popular as machine learning was, and it spawned some of the largest companies in the world, you have like Databricks, which are worth hundreds of billions of dollars.

Already, the number of people using and building agents is probably magnitudes larger than the number of people that ever were doing machine learning, and that trend will, will only continue. And now let's look at the last piece of François's tweet that I want to call out, which is, "These agent, agent performance, dah, dah, dah, should be managed via empirical evaluation."

And that brings us to our next question, which is, how do I actually evaluate an agent? And this is when we start to get into what, what Harbor does.

So the answer, as we already gave away earlier, is environments, that's your evals and your training data. And what is an environment in this case? Well, we need an instruction, we need some way to tell the agent what it's supposed to do, and then we need some place for the agent to try to do this thing.

Andright now, all of the agents run on computers, and they do stuff on computers, so we'll put it into a computer, but we'll put it into a virtual computer, so a sandbox. And then we need some way of telling whether or not the agent actually did the thing that we told it to do in the sandbox within some amount of time or other stopping condition.

And that's your verifier, which is like some programmatic tests or rubrics, or agent that comes in to see what happened. So in Harbor, you specify this as a file directory, and this specific directory layout has become relatively standard in a lot of the environment space, so lots of people have adopted it and used it as a way to specify environments, which is useful because then it can easily pass between hands and becomes interoperable.

Rollouts9:10

Alex Shaw9:10

And then, okay, cool, we have a bunch of data now, we've implemented a bunch of these environments, now how do I actually use it to start understanding what my agent can and can't do, and how to make it better?

So that's a Harbor rollout. And so what you do is you start with your tasks, and then you take it, you start up your sandbox, and then step one, you pass that sandbox to your agent. So you're either running your agent outside the sandbox and executing commands into it, or you're running it inside the sandbox and it's calling whatever its commands are as part of its program.

And then it runs for some amount of time until it hits a stopping condition, produces some trajectory, and we'll come back to that later because that's important. And then you pass that sandbox to the verifier, which runs some verification process, and then finally you stop the sandbox, the verifier produces a reward or a set of rewards, and then you take those, you aggregate them a bunch of, across a bunch of rollouts in a dataset with some agent, and that becomes your eval result.

So this process here, which looks relatively simple, is actually extremely universal, and it's also a little bit overly, overly simplified. So Harbor by now allows for a lot of different flavors of rollouts, so you can do multi-step, you can run your verification in a separate sandbox, you can collect artifacts, you can simulate a user.

But this is kind of like the, the bare bones approach that they're all built off of. So what is Harbor more specifically? One, it's a format for specifying agentic environments. Two, it's an open source framework for performing rollouts in parallel using any agent with any model in any sandbox on any task, and it's a registry of popular training and eval environment sets.

I think we have like 300 or 400 eval sets by now, and in fact, I think two or three benchmarks even came out today that run with Harbor, so we're excited about that. And in general, it is trying to be a common language for environments, so a way for people to specify things that are extremely interoperable, and it allows you to maximize data velocity and just increases progress in the industry.

So who needs evals? Now that we understand how to make them, we understand how to use them, well, now who should actually be doing this? And the answer is every single company that uses computers. And I think that's probably close to all of the companies in the world, and the reason is because if you're doing something on a computer, then you should be seeing if you can use AI to automate part or all of that process that you're currently performing on a computer, because that will increase the productivity of your company and therefore increase the value that your company generates.

Evals for All11:18

Alex Shaw11:52

So I like this quote from Satya Nadella from the Applied Compute podcast he did last week. He says, "If you want to build an agentic system, start with the eval that matters and your ability to grade that outcome.

And then say, 'I welcome all models.'" So I like that last line because what he goes to say is that as soon as you have an eval, the power is now in your hands. You can consider every single model, you don't have to trust brand, you don't have to trust somebody else's eval, you don't have to trust a public eval, and you can kind of skate the parade however you desire to balance that cost-performance trade-off.

Eval Types12:30

Alex Shaw12:30

So step one, build the eval, step two, kind of optimize against it. So what will people evaluate? And I'm going to list four things, and these four things are based off of what we actually see people using Harbor to build evals forright now.

So the first type of eval is people evaluating how well agents build their products. So everybody that's building a software product has some internal code base or set of internal code bases. I think Ramp recently announced like Ramp Sweebench, which is a Sweebench built off of their internal code base, and what that allows them to do is pick the coding agent or the model that performs best on their internal use cases, and they don't have to, you know, maximize token spend, instead they can make informed and educated decisions about how they build their products with agents.

The second type of eval that we see people build is how to evaluate how well agents use your product. So anybody that builds a software product is probably moving towards a world where they offer some sort of headless mode.

So you see some companies have always, have always been this way, they've been developer first, like HubSpot and Stripe and things like that. And the idea is, if you can make an eval to see how well agents use your product, and then iterate on your product to make it more usable for agents, you're going to get more usage, and therefore your product will become more valuable to agents.

And then three, evaluate how well agents power product features, and then four, evaluate how well agents automate internal processes. So depending on what type of company, company you are, one or more of these might apply to you, but everybody should be consideringright now how they can do one of these things.

Okay, so what are the different use cases of the Harbor rollout? So we've talked about evals, that's the most popularright now. Oh, oh, here we go, I actually have a video even of us doing an eval in Harbor, so this is how you can run it from the command line or have your agent run it from the command line.

Beyond Evals14:17

Alex Shaw14:35

So you can see here it says, "Harbor run," we're running in this case Terminal-Bench 2.1 with Codex and GPT-5.5, and we're saying, "Let's run 64 in parallel." And then we actually type in the launch commandright here, which is something we're rolling out soon, which allows you to launch the rollouts on Harbor servers, which means you can just fire and forget and go to sleep and then come back the next day and 10,000 rollouts are done for you.

And you can kind of see in here what it looks like to look at those rollouts happening, but they don't complete in the time span of this video because rollouts can take a while, which is another case for parallelizing as much as you possibly can to tighten that, that loop and maximize your throughput.

So there are people who create tasks and sell those as data, so there's actually like a multi-billion dollar marketright now that exists probably around Harbor data and also other types of data, but it's very, I guess, lucrativeright now where experts can specify certain types of tasks that they would like automated and then sell those to one of the labs that's training models to improve on that capability.

You can also do what we call prod rollouts. So remember, Harbor is evaluate any agent with any model, I guess not even evaluate, we'll just say run any agent with any model in any sandbox on any task, and that actually doesn't mean you have to do it for evaluation.

It also doesn't mean you have to do it for training. It could literally be that you want to do what we've been calling agentic map reduce, which is you just want to run a ton of agents on distributed compute, so sandboxes, in parallel, and then somehow aggregate those results, probably also intelligently.

So things like looking over a bunch of trajectories to detect reward hacking, or I don't know, like processing a bunch of receipts for reimbursements, or searching over your obsidian files to figure out semantically what, where you wrote some note, or processing a bunch of PRs, to ask a question about it.

So we see a bunch of different use cases. This is actually an emergent use case, so we didn't build Harbor for this, but we see people doing it a lot. So we actually built this feature and launched it just for this, so it's Harbor Exec, it's going to go away kind of soon, but you can see in this scenario, actually, let me see if I can pause this.

So I'm actually going to go back a little bit before we kicked it off. So I'm seeing Harbor Exec input is all of my Codex sessions from the June 20s, and then I say prompt, "If I corrected the agentright in analysis.json with mistake reason and correction," and then my reduce prompt is, "Summarize recurring mistakes and failure categories into a concise feedback.md file," and then you can see in this case I'm running on modal, I do the map step with cursor CLI because it's cheap and fast, and then I do the reduce step with Fable 5 because I want it to have like an accurate summary and I care about intelligence in that scenario.

So, and then I'm limiting it to 32 because I didn't actually want to process all of my sessions for this demo, but you could, there's no reason you couldn't do like 10,000 sessions or 1,000 sessions, and then maybe you have to go and understand the results more deeply, but, oh, shoot.

But yeah, you can kind of see here, I think, so we kicked this off, a bunch of these rollouts start in parallel. This one is running locally on my computer with like cloud sandboxing, but orchestrated locally, and then you can see here all of the cursor rollouts runningright now, but those will take a second to finish.

And then you can see the reduce step here where Fable recommended me like recurring mistakes. And like these recurring mistakes, for example, could be used to inform the next batch of Harbor tasks that I create to evaluate my agent and pick like a better agent or train up a skill or something like that.

Training Loop18:36

Alex Shaw18:36

So another use case of Harbor, and then we see people taking the trajectories and doing SFT, and then we also see people taking the reward or rewards, the trajectory in the form of tokens, and doing actual reinforcement learning.

For example, Tinker launched an integration with Harbor, and then people also do other types of optimization, so we mentioned JEPA, but any of these like evolutionary methods, you take the text feedback in the form of a trajectory and the eval, and you can do some sort of like auto hill climbing with a harness or a scale.

So in the last couple minutes, I just want to talk about some cool things people have built with Harbor, I'll try to breeze through this. So Frontier Suite and Ultra Long Horizon software engineering benchmark built on Harbor, Banker Tool Bench and Investment Banking benchmark built by Handshake on Harbor, Swix saying that his team at Cognition migrated all their evals to Harbor.

Ecosystem19:12

Alex Shaw19:35

This Rune Bench, this is one of my favorites, it's like a benchmark to measure how well agents can play Runescape. Scale launched their whole Suite Atlas Suite on Harbor, Poolside uses Harbor to do all of their evaluations for model training, Kevin Gue created Auto Agent, which is a self-optimizing agent that all you have to plug in is a Harbor eval, AfterQuery post-trained a model using Harbor, Cognition released Frontier Code recently, which is a Harbor benchmark, and LangChain just integrated Deep Agents and their sandboxes into Harbor, and then actually just today, Snorkel released Senior Suite Bench, which is a benchmark for measuring how well agents can function under ambiguity with behavioral feedback.

Wrap Up20:22

Alex Shaw20:22

So that's kind of a brief overview of Harbor and the different things you can do with it. I would encourage everybody here to check it out, and then this is a link to my Twitter, and the reason I'm linking my Twitter, usually I link Harbor docs, but we're actually actively trying to grow the Harbor teamright now.

So if you want to get involved, then shoot me a DM on Twitter, and if you just want to see the docs, then click the docs link on my Twitter, and that's the best way to get there. So thank you very much.