← All AI Engineer talks

AI Engineer World's Fair 2026

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

About this talk

Alex Shaw of Laude Institute argues that AI agents should be treated as black-box machine-learning systems whose behavior is improved through empirical evaluation and rollout-driven optimization. He introduces Harbor as infrastructure for sandboxed agent evaluations and reinforcement-learning environments, demonstrates parallel Terminal-Bench execution with Codex and GPT-5.5, and describes agentic MapReduce workflows for distributed execution, trajectory analysis, reward-hacking detection, and iterative product improvement. Ryan Marten is named in the recording metadata and candidate schedule, but his speaking participation is not supported by the supplied transcript excerpts.

Chapters

  1. 0:00Introduction: Alex Shaw, Laude Institute, and Harbor
  2. 0:48From traditional coding to black-box agent evaluation
  3. 6:54Harbor rollouts and agent-first product evaluation
  4. 14:34Parallel Terminal-Bench execution and Harbor infrastructure
  5. 16:08Agentic MapReduce and distributed trajectory analysis
  6. 20:22Harbor resources, team recruiting, and closing

Talk transcript

  1. 0:00

    [upbeat music] [audience applauding] Awesome.

  2. 0:16

    Thank you so much. Uh, so yeah, like he said, my name's Alex Shaw. I work at Laude Institute. Um, and I'll be speaking today about Harbor, which is an agent evaluation and, uh, RL environment framework.

  3. 0:31

    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. Um, but first, I want everybody to come travel back in time with me to the year 2018, so eight, eight years ago.

  4. 0:48

    Um, and we're gonna talk about some of the things that were going on in 2018. So, uh, probably you're, you're going to see Avengers: Infinity War later today. The second one is just getting released.

  5. 1:01

    Uh, GPT-1 was, was just released, and you probably didn't even notice, although maybe some people did. Um, musically, this random startup was about to rebrand to a product called TikTok,

  6. 1:17

    and you might have just learned about AirPods when you s-saw somebody walking around with headphones that had no cord. Um, so what about, what about software engineering? What did software engineering look like in 2018?

  7. 1:30

    Uh, we're gonna read this tweet from [REDACTED:username], [REDACTED:username] with two, two As, um, 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.

  8. 1:43

    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.

  9. 1:53

    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.

  10. 2:02

    And it's obviously written humorously, um, but the thing is, it does feel a little bit nostalgic, um, just like some of these other things that were going on in 2018.

  11. 2:15

    Now, the thing is, uh, this only changed maybe 6 or 12 or 18 if you're a very early adopter months ago, um, but it, but it already feels like the distant past in some ways.

  12. 2:27

    Uh, 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.

  13. 2:39

    Um, it will probably say... The, the, the history books will probably say a lot of things, um, 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.

  14. 2:52

    Um, so and that brings me then to a different tweet from Francois Chollet, uh, 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."

  15. 3:12

    Um, 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.

  16. 3:30

    Um, so here's a, here's a 2018 program right here. Uh, so you can tell already the purpose of the program is to extract phone numbers from text, and we have a regex right here that, uh, looks for the phone number.

  17. 3:45

    And I can say with 100% confidence what will happen if I run this program one million times in a row. Um, so now let's update it to the 2026 version. [laughs]

  18. 4:00

    So, uh, I swap out my regex and instead, obviously, I throw in my model call instead, and I say, "Extract this phone number." Um, so in some ways, this is actually a more powerful program because, uh, the regex was actually a little bit brittle.

  19. 4:16

    It would've 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.

  20. 4:30

    Um, however, if I ran this exact program one 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.

  21. 4:43

    Um, it probably gets it right almost every time. This is a pretty simple task. Um, but, uh, 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.

  22. 4:59

    Uh, so now let's come back to Francois'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.

  23. 5:12

    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.

  24. 5:22

    Uh, and that brings us to our, to our new paradigm. So, uh, we know now agent development is more similar to machine learning than it is to software engineering.

  25. 5:32

    So what are the things that we should keep an eye out for, the, 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?

  26. 5:43

    So we have machine learning on the left, agent building on the right. Uh, 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.

  27. 6:02

    Um, weights, your model weights are now skills, prompts, tools, the model, whether you're picking between models or actually updating the model yourself. Uh, your loss function looks now more like environment rewards and feedback.

  28. 6:18

    Your backprop or optimizer is now some context, text-based optimization algorithm like JEPA or even just running a coding agent in a loop.

  29. 6:29

    Uh, your gradient descent step looks like a pull request into your repo, and overfitting looks like reward hacking or also just, uh, overfitting. That's also possible for agent development.

  30. 6:42

    Um, 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 the right, we're just getting started.

  31. 6:54

    So, uh, 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.

  32. 7:08

    Um, and then something else to consider is that, uh, as popular as machine learning was, and it spawned some of the largest companies in the world. You have, like, Databricks, which are worth, uh, hundreds of billions of dollars.

  33. 7:21

    Um, already the number of people using and building agents is probably magnitudes larger than the number of people that ever, uh, were doing machine learning, and that trend will, will only continue.

  34. 7:35

    Uh, and now let's look at the last piece of Francois' tweet that I wanna call out, uh, which is, uh, these, these agent-agent performance, uh, da, da, da, should be managed via empirical evaluation.

  35. 7:50

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

  36. 8:02

    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.

  37. 8:12

    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. And right now, all of the agents run on computers, and they do stuff on computers.

  38. 8:24

    So we'll put it into a computer, but we'll put it into a virtual computer, so a sandbox. Um, 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.

  39. 8:40

    And that's your verifier, which is like some programmatic tests or rubrics, um, or agent that comes in to see what happened.

  40. 8:48

    So in Harbor, you specify this as a file directory, and this, uh, specific directory layout has become relatively standard in a lot of the environment space. So lots of people have adopted it and use it as a way to specify environments, which is useful because then it can easily pass between hands and becomes interoperable.

  41. 9:09

    Um, 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?

  42. 9:21

    Um, so that's a Harbor rollout. And, uh, 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.

  43. 9:33

    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.

  44. 9:43

    Uh, 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, uh, runs some verification process.

  45. 9:57

    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.

  46. 10:10

    So this process here, which looks relatively simple, is actually extremely universal. And, uh, it's also a little bit over s- overly simplified. So Harbor by now allows for a lot of different flavors of rollouts.

  47. 10:23

    So you can do multi-step. You can run your verification in a separate sandbox. You can collect artifacts. You can simulate a user. Um, but this is kind of like the, the, the bare bones approach, uh, that they're all built off of.

  48. 10:37

    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.

  49. 10:55

    I think we have, like, three or four hundred eval sets right now. And in fact, I think two or three benchmarks even came out today that run with Harbor.

  50. 11:02

    Um, 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.

  51. 11:17

    Uh, so who needs evals? Uh, 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.

  52. 11:28

    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, uh, because that will increase the productivity of your

  53. 11:46

    company and therefore increase the value that your company generates. Uh, 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

  54. 12:07

    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.

  55. 12:18

    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, um, and you can kind of skate the Pareto however you desire to, uh, balance that cost performance trade-off.

  56. 12:30

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

  57. 12:46

    Uh, so s- 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.

  58. 12:58

    Um, I think Ramp recently announced, like Ramp Swebench, which is a Swebench 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.

  59. 13:14

    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, uh, how well agents use your product.

  60. 13:27

    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 obvi-- uh, have always been this way.

  61. 13:38

    They've been developer first, like, uh, HubSpot and Stripe and things like that. And the idea is, uh, 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 gonna get more usage, and therefore your product, uh, will become more valuable to

  62. 13:56

    agents. And then, uh, 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, uh, one or more of these might apply to you, but everybody should be considering right now how they can do one of these things.

  63. 14:15

    Um, okay. So what are the different use cases of the Harbor rollout? So we've talked about evals. That's the most popular right now. Um, oh, oh, here we go.

  64. 14:26

    I actually have a video even of us doing an eval in Harbor. So this is, uh, how you can run it from the command line or have your agent run it from the command line.

  65. 14:34

    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 command right here, which is something we're rolling out soon, which allows you to launch the rollouts on Harbor servers, which means you can

  66. 14:56

    just fire and forget and go to sleep and then come back the next day and ten thousand rollouts are done for you. And you can kind of see and hear what it looks like to look at those rollouts happening.

  67. 15:06

    Um, but they don't complete in the time span of this video because rollouts can take a while, uh, which is another case for parallelizing as much as you possibly can to tighten that, uh, that loop and maximize your throughput.

  68. 15:20

    Um, so there are people who create tasks and sell those as data, so there's actually, like, a multi-billion dollar market right now that exists probably around Harbor data and also other types of data.

  69. 15:33

    Um, but it's, uh, very, uh, I guess, lucrative right 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, uh, improve on that capability.

  70. 15:48

    Uh, you can also do what we call prod rollouts. So remember, Harbor is evaluate any agent with any model, uh, I guess not even evaluate. We'll just say, uh, 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.

  71. 16:08

    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 MapReduce, which is you just wanna run a ton of agents on distributed compute, so sandboxes, in parallel, and then somehow aggregate those results, probably also intelligently.

  72. 16:25

    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, uh, semantically what, what-- where you wrote some note or processing a bunch of PRs to ask a question about it.

  73. 16:43

    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.

  74. 16:50

    So we actually built this feature and launched it just for this. So it's Harbor Exec. Uh, it's gonna go away kind of soon, but you can see in this scenario...

  75. 16:58

    Actually, let me see if I can pause this. So, uh, I'm actually gonna go back a little bit before we kicked it off. So I'm saying Harbor Exec input is all of my Codex sessions from the June 20s, and then I say, "Prompt, if I corrected the agent, write an analysis.json with mistake, reason, and correction."

  76. 17:20

    And then my reduce prompt is, "Summarize recurring mistakes and failure categories into a concise feedback.md file." And 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

  77. 17:38

    summary and I care about intelligence in that scenario. So, and then I'm limiting it to thirty-two because I didn't actually wanna process all of my sessions for this demo, but you could-- there's no reason you couldn't do, like, ten thousand sessions or a thousand sessions, and then maybe you have to go and understand the results more deeply.

  78. 17:53

    But, um... Oh, shoot. But, uh, yeah, you can kind of see here, I think. So we kick this off. A bunch of these rollouts are in parallel. This one is running locally on my computer with, like, cloud sandboxing, but orchestrated locally.

  79. 18:09

    And then you can see here- All of the cursor rollouts running right now, uh, but those will take a second to finish. And then you can see the reduce step here where Fable recommended me like recurring mistakes.

  80. 18:26

    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.

  81. 18:36

    So, uh, 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.

  82. 18:51

    Uh, for example, Tinker launched an integration with Harbor, and then, uh, 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

  83. 19:09

    skill. Um, so in the last couple minutes, I just wanna talk about some cool things people have built with Harbor. I'll try to breeze through this. Uh, so, uh, Frontier Suite, an ultra-long horizon software engineering benchmark built on Harbor.

  84. 19:24

    BankerToolbench, an investment banking benchmark built by Handshake on Harbor. Um, swyx saying that his team at Cognition migrated all their evals to Harbor. This RuneBench, this is one of my favorites.

  85. 19:36

    It's like a benchmark to measure how well agents can play RuneScape. Um, Scale launched their whole suite, Atlas Suite, on Harbor. Uh, Poolside uses Harbor to do all of their evaluations for model training.

  86. 19:50

    Uh, Kevin Gu created AutoAgent, which is a self-optimizing agent that all you have to plug in is a Harbor eval. Uh, AfterQuery post-trained a model using Harbor. Cognition released Frontier Code recently, which is a Harbor benchmark.

  87. 20:05

    And LangChain just integrated deep agents and their sandboxes into Harbor. Uh, and then actually just today, Snorkel released Senior SWE Bench, which is a benchmark for measuring how well agents can function under ambiguity, uh, with behavioral feedback.

  88. 20:22

    So, uh, 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 team right

  89. 20:38

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

  90. 20:48

    Uh, so thank you very much. [audience applauding] [outro music]