← All AI Engineer talks

AI Engineer World's Fair 2026

We Gave an Agent Production Code Access and Then Tried to Sleep at Night

About this talk

Form3's Moritz Johner presents PatchPilot, a production coding agent for remediating CVEs across thousands of repositories when ordinary dependency updaters cannot address vulnerabilities spanning base images, runtime versions, and CI failures. He argues that agents with production credentials become software supply-chain actors, and describes an architecture separating deterministic Go orchestration from constrained agentic remediation, with minimal changes, restricted network access, and human-reviewed pull requests.

Chapters

  1. 0:00Dependency patching at repository-fleet scale
  2. 1:28Base-image vulnerabilities and limits of conventional dependency bots
  3. 2:57PatchPilot and the coding-agent supply-chain threat model
  4. 4:01Deterministic orchestration, CI reasoning, and minimal remediation
  5. 10:59Human approval and scoped production network access
  6. 21:17Production-agent sandboxing discussion and closing

Talk transcript

  1. 0:00

    [outro jingle] Thanks everyone for joining in. Uh, thanks for the great intro, by the way.

  2. 0:16

    Um, so yeah, my talk today is about, um, so the title is, We Gave an Agent Production Code Access and Then Tried to Sleep at Night. Um, so

  3. 0:26

    it's mostly around dependency, dependency patching, which is probably the most

  4. 0:32

    glamorous problem in software engineering. I guess everyone did it here at some point in the past. Um, it really is like vacuuming. Like, everyone loves it, can't wait to do, do it again next week.

  5. 0:42

    Now, at our scale, we have thousands of repositories, and it really is a backlog that never empties, and you close ten issues today, and you know next week twenty more will arrive, and you have to deal with them.

  6. 0:54

    So naturally, you think, "Sure, let's just automate it. Dependabot exists. Renovate exists. Problem solved, right?"

  7. 1:03

    It isn't, 'cause these tools were really built for a world where fixing a CVE means, um, um, looking at the manifest in a repository and just, you know, bumping a version to the next version, and that's it.

  8. 1:17

    Um, but our world is much more complicated than that, at least nowadays, now with-- since we have containers. So the first problem is that the vulnerable thing isn't necessarily the thing that these tools can see.

  9. 1:28

    For instance, a CVE might live in an OS package that you use in your base image. It's not in your Docker file. It's just in your base image. Or if your Docker file pulls down a binary during the build process, it may see the URL, which might contain a version number, but it has no idea how to

  10. 1:44

    act on it. So they can only look at the manifest, patch the manifest, but everything else is just simply invisible.

  11. 1:52

    Now, the second problem is patches never happen in isolation.

  12. 1:57

    So when we look at a Go code base, sometimes we wanna bump the Go runtime to the next minor version. When you do that, sometimes you might have to also bump the Go linter 'cause their version are just intertwined.

  13. 2:08

    You have to bump both of them at, at the same time. So when you bump the linter, that sometimes introduces new linting rules, which then invalidates your code base, and you're left with this big mess.

  14. 2:19

    Now, these old tools, quote-unquote, old tools, Dependabot and Renovate bot,

  15. 2:23

    well, they just bump the Go runtime version, create a PR, and walk away, and you're just left with this mess, and you need to figure out how to fix that.

  16. 2:36

    So you don't really have, like, a patching problem. You also have, like, a reasoning problem that you, um, need to address here.

  17. 2:44

    You really wanna have a tool that looks at the CVE and understands the full surface of it. Where does the CVE actually live? And needs to figure out what else needs to move in order to, um, get to a green CI.

  18. 2:57

    So that's basically what we did. Um, we built PatchPilot.

  19. 3:01

    We pushed to production, and eventually InfoSec, um, came around the corner and asked a very reasonable question, "Is this automation, or is this a supply chain incident waiting to happen?"

  20. 3:12

    A useful coding agent is a supply chain actor, whether you plan for that or not. That's the thesis of this talk, basically. It's not agents are dangerous or agents are fine.

  21. 3:22

    It's the moment where you give an agent, um, production credentials in order to, like, be useful. It really becomes a supply chain actor, just like an engineer in your department, and you should apply similar or the same guardrails, uh, for the agent, just as you do for engineers.

  22. 3:41

    Now, this is a case study. We built this. We ran it in production. InfoSec pushed back in several places. They were right. Um, I just wanna present to you what we came up with in the end.

  23. 3:49

    Um, it's nothing new. It's nothing fancy. Um, I just wanna share, share what we did and then hopefully have a discussion afterwards, um, to see how we all figure this out together.

  24. 4:01

    Now, PatchPilot has two layers. One, it's a simple Go application that is deterministic. It's boring. It just does orchestration. It discovers vulnerable artifacts. So artifacts, that's our OCI images.

  25. 4:14

    That's what we have in production. That's what we ship to our customers, and that's the thing that we really care about.

  26. 4:20

    So the Go app discovers those, scans the images, um, and figures out which image is built by which repository, um, because we need that link in order to later then work on the repositories.

  27. 4:34

    And this deterministic part is very boring on purpose. It's very simple. Um, and inside that, we spawn agents.

  28. 4:41

    Now, these agents are there for the, for the reasoning. For instance, when we see a CI failure, we just tell the agent, "Look, that's a CI failure. Please figure out what the hell to do in this case."

  29. 4:51

    It could be that CI failed because, um, a previous change that we did. It could also be a flaky CI. It could be an infrastructure failure, just a simple timeout that just, you know, caused the CI failure, and then, then we would just need to retry and do nothing else in that case.

  30. 5:08

    Now let's have a look at it, how it looks, uh, end to end.

  31. 5:12

    So first and foremost, um, a little bit of color coding. I hope, I hope you can see this. So the green bits, that's our, um, deterministic part, our Go application, and the yellow ones, that's the agent.

  32. 5:21

    Um, so first we start with the, um, with the assessment. That's just a simple manifest, a simple JSON file which contains a list of images and the CVEs that it found for these particular images.

  33. 5:33

    Um, it will then moves on and downloads the repository it's supposed to work on, um, clones it into a local directory, and creates another directory inside it, where it then shoves all the context for the agent inside there.

  34. 5:47

    That's a prompt whi-which has, like, I don't know, like, two thousand words or so. Um, it's the assessment manifest, um, a couple of other things for, like, communicating with the agent.

  35. 5:59

    And then simply, we simply invoke the CVE remediation agent, which is, like, the first bit, um, the first agentic part that we invoke, which is supposed to do the, the smallest effective change set.

  36. 6:10

    And it should only fix the CVEs which are tied to the findings. You shouldn't just, you know, bump the dependencies to the latest and greatest version. That's just-- That intro- introduces unnecessary risk, which we want to avoid.

  37. 6:21

    So just bump to the version that actually fixes the CVE and, um, nothing more.

  38. 6:27

    And at the every- very end, the agent then, of course, should, um, just verify its own work. Should ensure that the Docker file is able to build, should, um, rescan the image that it has built and all of that stuff.

  39. 6:40

    Um, so the CVE remediation agent actually just modifies files in the file system. It doesn't commit, it doesn't push, it doesn't create a PR, it doesn't watch CI itself.

  40. 6:49

    It just modifies files in the file system. And once it's done, it hands back control to the controller, to the deterministic bit, which then quickly vets the changes for, you know, some nonsense in zero-- in there.

  41. 7:03

    For instance, like, um, empty files or some binaries that the agent might create because agents are really dumb. They mess up, you know, some bash commands that are piped together, which then could, um, create empty files, or they just, you know, compile the application and leave the binary inside the repository, which is nonsense.

  42. 7:22

    So we gotta take care of that. And then we commit it, we push it, we create a PR, um, and then we watch CI.

  43. 7:30

    Now, once CI is green, cool, we just send over Slack notifications, and we're done. Um, in case there's a CI failure, we just move to the next agentic bit, which, um, should then just remediate the PR failure.

  44. 7:43

    To do that, we just give it all the context that it needs. So CI logs, um, workflow metadata that we need, and everything else that is needed to work on this, uh, on this CI failure, and then we invoke it.

  45. 7:55

    And this PR remediation agent just simply should do the minimum forward fixes. It-- Kind of, like, elements, elements kind of tend to just revert the previous changes that it did.

  46. 8:05

    So we gotta tell it to not do this. Um, and again, it should just verify its own work. And this then goes on in a loop, create and watch, um, the PR or watch CI, um, fix the CI failure, and so on and so forth, until we hit, like, um, a, a maximum retry.

  47. 8:21

    And then we send that over to an, to a human in case there's like, um, the limit is reached. We then just simply tell the, tell the human to take a look at this particular issue because then that needs manual remediation.

  48. 8:36

    There's one more thing that I wanna share here, which is that at the end of every agent invocation, we ask the agent to do a very short and simple retrospective.

  49. 8:46

    What went well, what went wrong, what tools are missing, and what conte- context would help the next time it would be invoked. And this really helps us to understand what the agent is doing and what is, what is missing out.

  50. 8:57

    Um, now, the observability for the agentic bits, that's still, like, an open issue and being built by the community at the moment. That's just how we deal-- uh, dealt with this, with this particular issue.

  51. 9:08

    Um, so yeah, that really helps us to understand this at scale because then we can just aggregate all this, all that information across the PRs, condense it down, and then we can see, um, what we need to fix.

  52. 9:19

    We usually saw, like, two kinds of issues. One is an infrastructure-related issue. It could be, um, network failures or that the agent didn't have enough permissions in order to, like, clone a repository.

  53. 9:31

    Um, or it could be some complexity issue related with the repository. Some repositories are just hard to deal with and hard to reason about without having the, the, the context that the, the agent needs.

  54. 9:43

    And then we just need to either modify the system prompt of the agent, or we then have repository-specific instructions, um, that we then just feed, um, to our agent to work on this issue.

  55. 9:56

    I brought a screenshot here with me. Um, I had to redact a lot of stuff because it's an actual, like, production kind of screenshot and, you know, in finance, you don't wanna share this kind of information.

  56. 10:06

    But, um, yeah, that's what I wanna get out. So here at the top where the arrow is, that's a very simple bit. We just now bump the, the base image that we're using from the Go lang.

  57. 10:16

    That's something that Dependabot can do, and that's boring. Here at the bottom, we can see that the agent, uh, updated libcrypto3 and libssl3. So, um, yeah. I also have, like, a short diff, um, that I wanna quickly showcase what the agent did.

  58. 10:32

    Um, you can see here on the left-hand side that it-- that these, um, bottom two... Can I just go there? Here. That we have these two packages here that it actually removed in the process because these packages, um, have been pinned previously, and then just removed those because they have been fixed by the actual base image.

  59. 10:48

    So to be honest, if I were tasked with this kind of task, I probably would have missed that. So I'm, like, glad that the agent, um, fixed that and is a good, good engineer here.

  60. 10:59

    So and that's it. So we started with a bunch of CVEs. We scanned artifacts, um, remediated, remediated the, the CVEs and the findings, and now we have a proper working, um, uh, PR that then just needs to be reviewed by a human and approved and merged.

  61. 11:15

    So to make that work, um, we gave PatchPilot a couple of things. We gave it GitHub access, um, read and write access to clone the repository, to commit and to push changes, to open a PR, to download the CI logs, and trigger CI.

  62. 11:29

    We also gave it OCI registry credentials in order to list images in the, in the registry to figure out, you know, what images are available, which are latest. Um, we gave it tools like a Go runtime, Python runtime, a bunch of linters, static libs, a bash, a shell, network access, and all of that.

  63. 11:47

    Um, so this is what we gave the whole application. But again, we had, like, two layers, the deterministic part and the agentic part. And we also applied the split for the credentials also for the two different layers.

  64. 11:59

    So here's the thing about the capability list. The dangerous ones that could have write access, um, and trigger CI is something that we did not give the agent. Instead, we pushed, um, that functionality out to the deter- deterministic part because that's the thing that we can reason about and we can rely on that, um- You know, it

  65. 12:17

    just does these kind of, kind of actions and we do not give, um, the agent these kinds of credentials 'cause that then fundamentity-- fundamentally limits the blast radius of when in case the agent gets, um, its prompt injected, prompt injected.

  66. 12:34

    So that boundary really matters for the prompt injection case because you probably didn't see it in the screenshot earlier, but there was like 70,000 lines of code that were changed in that small PR.

  67. 12:43

    Um, that's really like a lot of changes that come in just by bumping a couple of dependencies.

  68. 12:49

    Um, and the attack surface is really, really wide. Um,

  69. 12:53

    so what we did to mitigate that, I guess like prompt injection itself isn't solved, and we cannot really solve it. All we can do is just to limit the blast radius in case that happens.

  70. 13:02

    Um, what we did is to do a little bit of prompt steering because we know what kind of directories or files contain untrusted, um, uncr- untrusted, um, information, untrusted context.

  71. 13:13

    We just tell the agent, "Look, the vendor directory, just don't trust that," or the CI logs which live in that file or in that subdirectory, you know, be sure that you don't, you know, be an idiot.

  72. 13:25

    Um, there's another thing that we did, um, which worked quite well, which is that we, um,

  73. 13:32

    we essentially implemented end-to-end tests where we created a repository and sent Patchpilo- PatchPilot Edit to just work on it. Um, I guess that's what people call evals today. And then we just then ensure that it isn't, um, prompt injected.

  74. 13:49

    So we have like a deprecated function in there, in the-- in our crafted repository, which tries to recruit the agent to do some malicious stuff, or we have a migration guide where a deprecated function, um, uh, points at and all of that.

  75. 14:01

    So we try to like, you know, remediate these kinds of, um, issues that we know about, but still there are, um, unknown, um, injection vectors which we aren't aware of yet.

  76. 14:11

    Um, so that's why, you know, we still have to pray a little bit, but at least we don't like build the whole system on, on hope.

  77. 14:20

    Now, that's the bit that kept me awake at night. Um,

  78. 14:26

    now sandboxes look great on a slide. You just draw a box, put the agent in it, and you feel secure, right? So the problem is that at some point, the agent really wants to, um, verify its own work.

  79. 14:38

    When it works with Docker files, it wants to build a Docker container. It might also want to run a, a Docker container in order to figure out what package versions are available and so on.

  80. 14:48

    So naturally, you give it that Docker socket. At that point, it's more or less game over for you, um, because the agent can then simply just spawn a privileged container escape out of it, and then, you know, read environment variables of other processes, read the memory of other processes, can plant SSH keys.

  81. 15:05

    It's game over for you essentially at this point. We ran it like that in production at some point. Um, it didn't feel good. We moved off of that, um, and reevaluated all the other obvious options in like the Linux sphere, Linux bubble when it comes to like sandboxing.

  82. 15:21

    There's a lot of technologies out there like Landlock, Bubblewrap, seccompb, notify, Fence, and a lot of options that we have for unprivileged Docker builds, um, Kaniko, uh, BuildKit, and, and what else.

  83. 15:32

    But they don't really compose well with containers, and none of them really can contain a Docker socket or a Docker, um, daemon that runs on a host.

  84. 15:42

    So let me share a design that we came up with, which is still like in its, in its infancy. Um,

  85. 15:48

    it's the same pattern. You just draw a box, but instead of calling it a sandbox, it's just a microVM. In our case, we're using, um, using Firecracker to have like a proper isolation mechanism.

  86. 15:58

    And then we put the agent in, we put the Docker socket in, and then the Docker socket is powered by its own kernel in this case.

  87. 16:06

    Um, which is good because that really solves the issue with, with the, um, Docker daemon or the agent trying to escape the sandbox. In this case, everything is just cont- contained within that microVM, which is good.

  88. 16:19

    There's another thing that is, um, worth mentioning in this case. Again, we have this two-tier architecture, these two layers, the agentic bit and the deterministic bit, and we also wanna apply network policies to these two worlds separately.

  89. 16:34

    For the deterministic bit, we just know what kind of, um, um, network access it requires in order to function properly, and it's, it needs GitHub access and what else.

  90. 16:43

    For the agent, we don't really know in advance. It kind of depends off on the kind of repository or language, um, it works on. When it uses Java, it needs like a completely different ecosystem it works with compared to Python or Go.

  91. 16:55

    Um, so that's why we really want to, n-need to apply different network policies. Um, so that's what you can do. You can just set up a DNS and TCP forwarder inside that microVM.

  92. 17:05

    But other than that, just, you know, cut it completely off from the host system, and then everything has to flow through this, um, through this vsock, which then, um, heads all the network packets to a post-process, which then applies the network policies to, um, to all the outgoing packets.

  93. 17:21

    And then you can apply, you know, rules based on hostnames, based on target ports, CIDR ranges, whatever you like.

  94. 17:29

    If we re- really wanna go wild, you can just, you know, set up a custom CA, plant it into the microVM, and then do all sorts of like TLS man-in-the-middle control,

  95. 17:38

    which is really hard to do, especially when it comes to the Docker socket. But, um, we're not going to dive into this one yet.

  96. 17:46

    So my take on agent sandboxing is this, that

  97. 17:50

    the existing agent that we have today with Codex and Claude, they come with their own sandbox, but in my opinion, it's worthless, especially when you give it, um, a s- a Docker socket access.

  98. 18:01

    It's just really, yeah, it's not going to be able to contain that.

  99. 18:07

    O-other agents like OpenCode or Py, they just don't have a sandbox because it's not implemented, um, or it's just not there by design.

  100. 18:16

    So my take is that you really have to create a environment for an agent- Where you can just put it in and give it everything that it needs, um, so it has, like, all the freedom to work on a particular issue that it's supposed to do.

  101. 18:28

    Um, but there's still a gap. So the diagram that I've just shown you isn't something unique. It's just a VM with a little bit of plumbing in there. You can just wipe code it.

  102. 18:40

    It's not, not a big deal, honestly. Um, you can even go downstar- downstairs to the vendor booths and just, you know, talk to the vendors there. You have, like, a lot of sandbox as a service that you can easily consume, some of which really lack in functionality, especially in that regards to, like, containing a Docker socket or

  103. 18:58

    having a proper network access controls. That is still lacking, but it differs from vendor to vendor. I also recently saw the, um, MicroSandbox project,

  104. 19:08

    um, which is now around for, I think, like, three or four months or so, maybe even longer, um, which really is-- would be my choice if I would build PatchPilot today again 'cause it comes with all the batteries included, network access controls, um, all that.

  105. 19:23

    So keep that in mind if you really wanna build this. Um, it's an open source project. It ha- it has a community. It's currently funded by YC, um, so we really don't really know how it, how it goes.

  106. 19:34

    In the next couple of months, we gotta see, um, if they're able to gather enough traction to, to keep the open source project afloat. Let's see.

  107. 19:42

    So the gap isn't the tool doesn't exist. All the tools do exist, but most of them are still in the beta phase,

  108. 19:49

    and there's still a big gap to, you know, getting actual enterprise traction and getting all the features, all the bells and whistles that you need in order to deploy it into a proper enterprise environment, and I think that's something that we need to work on.

  109. 20:02

    Sure, now we got a sandbox. Cool. That's nice. But we still need, like, a lot of orchestration on top of it, which is something that you can take from a vendor.

  110. 20:10

    There are also, like, a couple of open source project at the moment which are working on this. There's the Kubernetes, um, Agent Sandbox, uh, special interest group that's working on this.

  111. 20:19

    There's, um, OpenSandbox, which also are working on this to integrate these kind of things. So, um, keep that in mind if you really want to, you know, contain an agent in a production environment.

  112. 20:26

    It's not there yet. It's beta. It's very early in the, in the phase. We gotta see how it goes.

  113. 20:35

    All right. If you take one thing from this, um, the blast radius of an agent is an architectural decision. We didn't, um, give the agent the credential that it needs, um, in order to, you know, trigger CI or push to GitHub or open a PR.

  114. 20:48

    That's just simply not needed. You can just push that functionality, functionality into a deterministic layer, um, that kind of really limits the blast radius of an agent.

  115. 20:59

    So that choice, what's dete- what's deterministic and what's agentic, that really is, you know, your security model in this case.

  116. 21:07

    All right. Um, that was it for me. I just have, like, one last word, which is just an invitation to the community just to talk about the things that I've just mentioned.

  117. 21:17

    Um, I think tomorrow there's a, a dedicated, uh, sandbox panel where a lot of talks are just around the sandbox thingy. And truly, I wanna know from you guys how you run agents in production, just to learn and to have a discussion about that in order to, you know, bring the community on and just, just figure it

  118. 21:32

    out, um, all together. Thank you. [audience applauding] [outro music]