AI Engineer World's Fair 2026
Agentic Development Security
About this talk
Snyk product director Ezra Tanzer examines the security risks created when autonomous coding agents connect to external tools through MCP, including excessive privileges, vulnerable integrations, and destructive agent actions. He describes scanning and remediating AI-generated code and the broader need to inspect agent tooling and behavior. Snyk engineer Dan Arpino demonstrates an in-development local Electron security assistant that monitors agent sessions, exposes activity, applies guardrails, and can automatically address vulnerable tools. The discussion closes by contrasting security teams’ desire for strict controls with developers’ sensitivity to false positives.
Chapters
- 0:00Agent autonomy, MCP integrations, and secure generated code
- 2:11Agent incidents, excessive privileges, and software supply-chain risks
- 6:43Invariant Labs research and vulnerable MCP server exposure
- 13:27Dan Arpino demonstrates local agent monitoring and automated remediation
- 20:10Developer experience, false positives, and audience questions
Talk transcript
- 0:00
[on-hold jingle] I'm a product director here at Snyk and gonna be talking to you about agentic development security, and specifically talking about how we can gain confidence when we use agents, um, especially as we give them more autonomy.
- 0:23
It's a very common theme I've heard in this track and a number of the other tracks, um, today. Um, I'm not gonna go through the full history of LLMs, but the Model Context Protocol release was a really big moment.
- 0:35
Until then, I don't know what you guys were doing, but I was very often copying and pasting between, uh, agentic clients and some other services. And with MCP, I think people really started to connect this and have a much more, um, really connected AI system.
- 0:48
Uh, and I'm not saying that MCP is the end-all be-all, and I may or may not, may not have been amongst the people who were saying that MCP would die at some point last year.
- 0:57
Um, but it has been a game changer in the sense that developers started to connect agents to external tools and services. Um, and at that time, there really wasn't any security s- to speak of.
- 1:08
Like most companies, we released an MCP server almost immediately. Um, ours specifically enabled local directories to be scanned by our security scanning engines. Uh, developers could ask questions in natural language about the security issues that were identified.
- 1:24
They could learn why specific vulnerabilities, uh, were important or how they might be exploited and then work iteratively towards a fix. Um, shortly thereafter, we decided to pair our MCP server with rules.
- 1:35
Um, and the rules basically ensured that any AI-generated code would be tested, and if there were security issues identified, that they would be automatically fixed. It was simple, it was fast to deploy, and it did solve a meaningful pain point for our customers.
- 1:49
Uh, so that really was our original position, secure agent-generated code at the moment of inception. Oops.
- 1:56
Uh, but over the last year, we learned that this framing was really incomplete. Um, our customers started telling us that they were not only worried about the code that was being generated, they were also worried about what the agent had access to, and then also the actions the agent might be taking.
- 2:11
Um, so I'm gonna just mention, like, briefly a few incidents that have come up over the last, last year or so. I think we've talked about them, um, in, in the keynote that Manoj gave earlier today, but also I think we've seen some of these in other presentations.
- 2:23
But just as a quick refresher, um, about a year ago, we saw, um, Replit's agent, um, ignore a code freeze instruction and ultimately deleted a production database. It tried to cover up that it did this, fabricated records, uh, to basically say, like, "No, there, there was no issue whatsoever."
- 2:40
Um, and finally, it said that there was no way to recover. Fortunately, it turned out that that was wrong. The-- They were able to recover, but the damage was still done.
- 2:48
Then in April, I know we just-- we talked about this just a couple hours ago, but, uh, there was the Pocket OS incident. An agent again found an, an over-privileged API token, and that resulted in a production database being deleted.
- 3:01
The backups were also deleted, and so a three-month-old backup is what was-- could be used to ultimately, uh, you know, try to get back to recovery. What's really interesting here is that the agent wasn't acting maliciously.
- 3:12
It was actually trying to solve a problem. It was trying to solve what it perceived to be a credential mismatch, uh, but there was nothing in place to stop it.
- 3:20
Those two examples were really about the agent actions that might be taken, but that's not always the case. That's not always what the attack surface is. Just last month, Team PCP was able to exfiltrate, uh, almost four thousand of GitHub's internal repositories using a malicious VS Code extension.
- 3:37
So all of this and kind of us being in the security space for the last ten years and talking to our customers, um, it's really shaped how we think about what-- uh, agentic development security and what that really means.
- 3:49
And our, our belief is that in order to confidently use agents for software development at scale and to start letting them operate more autonomously in long-running tasks, whether it's just getting up to make a cup of coffee or letting them run overnight, uh, it's really critical to secure what agents generate, what they use, and what they do.
- 4:07
Um, and I'll spend a couple minutes talking about our journey in each of these pillars over the last year, what we've learned and, uh, and our current perspective.
- 4:16
As I mentioned at the top, um, this has been our longest area of experimentation and investment. It's securing the code that the agents generate. Um, and the reason for that is we don't want issues to make it to production.
- 4:27
We don't want to kind of increase that backlog, which has been so challenging to manage, and it's now, uh, a luxury that companies just cannot afford. Uh, most companies do have security checks in their deployment pipelines.
- 4:39
Um, and so even if they don't make it to production, we want to ensure that bottlenecks are not getting in-- uh, created at, at those stages. Um, I mentioned our original approach, MCP server plus rules.
- 4:49
Um, it was really easy to paste a, an MCP configuration, um, and a rule definition. And, and over time, we added shortcuts to make that even easier, and the agent clients actually, uh, made it, like, simple commands to enable these configurations through plugins or just simple, simple CLI tools.
- 5:06
Uh, but the approach did have real limitations. Agents sometimes ignored the rule files. Uh, scan execution did add latency at the end of its run. Um, and every time that we ran scans through the context window, that consumed tokens.
- 5:19
And so we were not the only ones dealing with these challenges, fortunately. Um, outside of security, these same pain points existed. Um, and the good news is that the agent client providers, they provided new mechanisms for how to direct agents.
- 5:33
Um, and primarily this has been in the form of skills and hooks. I think everybody might have their own opinion on which one you want to use, uh, for which, but they, they really solve a lot of these problems.
- 5:42
Uh, our current recommendation, um, is to use Python-based hooks for this use case that can fire asynchronously on agent tool calls. And so immediately after an agent writes a new file or modifies a file, we can kick off a scan using our CLI, not even using the MCP server asynchronously, and that will write, uh, write any newly
- 6:01
identified and newly introduced issues to a temporary file. And finally, in the sessionStop event, that's when a hook triggers the agent, and it will check that temp file to see if there were new- newly introduced issues, and only then will it kick off a fix and validate loop.
- 6:15
So now the workflow is deterministic. Latency is removed because all that testing happens asynchronously. And again, because newly introduced issues are the only thing that's being surfaced to that agent context, the context window doesn't get any unnecessarily-- uh, unnecessary bloat.
- 6:31
When we talk about agent supply chain, we're really thinking about the things that help you build more connected agentic workflows. But like everyone's been saying today, this is-- this also presents a new attack surface.
- 6:43
Last year, we acquired a company called Invariant Labs. Um, and following that, we produced a report, uh, which you can access if you want with this QR code. You can also come and talk to us, um, at, at our booth, uh, if you wanna see this here.
- 6:57
Uh, but there's many similarities between package ecosystem risk, which is where kinda Snyk got its, got its start, um, and out of agent skills, but we really think that skills are more problematic.
- 7:07
Um, they have higher privilege by default. Natural language prompt injection cannot be detected through, uh, th-through, through typical code detection. Um, and malicious skills can modify agent memory. So even if you remove a malicious skill, they can still persist.
- 7:22
That risk can still persist after the fact. Um, and in an audit that we did of nearly four thousand skills on ClawHub, uh, over one in eight had a critical severity issue, and we actually found seventy-six malicious payloads, uh, in, in that subset.
- 7:36
So the solution that we built here auto-discovers all the agent components on your machine. Um, it-- if you have MCP servers configured, it will connect to them, retrieve the tool descriptions, analyze them to see what security risks are present.
- 7:49
It will do the same thing for skill files. It will look at your skill.md files, see the dependent, uh, files that are, are associated with that skill, um, and look to see what threats might exist.
- 7:58
I demoed this, or I tried to demo this during, uh, Manoj's keynote earlier. The internet didn't play super nice, so we showed a little video, but we can show this in action afterwards, uh, a-as well.
- 8:08
Um, just in the last month, we produced a report based on some anonymized data following the release of the capabilities that I just mentioned. Um, and I think these numbers are probably going to be, uh, pretty low based on the expectations of the group that we see here, but I think it's worth reminding you that, uh, not
- 8:25
everyone is as kind of AI forward as the, the, the folks that are attending, uh, this, this conference here. Uh, but kind of from the average developer, we saw that, um, more than half were using MCP servers and a fifth were leveraging skills.
- 8:38
Um, beyond just adoption, one in twelve developers, uh, in this group had an MCP server where there was either a high or critical severity finding identified in that MCP server itself.
- 8:53
I realize this is probably pretty small, but just wanna highlight that these are some of the categories of risk that we look for when we analyze MCP servers. And similarly for skills, there's, uh, a number of different risks that we can also, also look for.
- 9:07
Um, this happens to be one of the, one of the skill, uh, skills that I did an assessment of during that recorded demo that we showed earlier. Very, very risky, um, malicious in some cases, but also just kinda maybe some negligent, negligent behavior that, that could cause problems for me.
- 9:24
Um, the last leg of this stool, uh, for agentic development security is govern- governing agent behavior. This is currently in open preview, and it's really focused on how we ensure that an agent is not taking exfiltrated, destructive, or otherwise malicious or risky actions.
- 9:41
Um, I'm choosing to show here the policy configuration view 'cause I wanna highlight the actions that we are trying to intercept today. Depending on how you use agents, the types of policies that you set might ultimately be different.
- 9:52
Um, I think in an ideal world, you're always able to steer an agent towards the right action, um, and kind of making-- it's just making it so the human does not have to be in the loop.
- 10:02
A really good example of that is redacting PII or secrets before a command executes. Um, but in other cases, you actually may want that agent to ask you, uh, because there's not a clear-cut answer.
- 10:12
Um, and so if there is a potentially destructive shell command, um, or maybe if the agent wants to access a directory that is kind of outside of the scope of the permissions you initially gave, that's a good reason to ask.
- 10:25
But I think as we move towards more background agents and cloud agents being ran, where you're kinda trying to step away and trying to not be sitting at your desk babysitting the agent entirely, um, asks are a much, much less viable option.
- 10:38
Um, and so this is an area that we're gonna continue to invest, but I think, you know, this is gonna mean more fine-grained policies. May also mean that we need some sort of auto-didactism in the product, kind of a self-learning capability based on the decisions that you make over time to help you become more autonomous.
- 10:54
Um, but the short of it is that, like, today, we, we are accountable for the actions that our agents take. Um, and even in the future, if that accountability model becomes a little bit more shared, I don't think any of us wanna work at companies where, um, we are doing a disservice to our customers and potentially letting
- 11:09
our agents take risky actions. Um, and, and nobody really wants to be the reason for one of those incidents that gets widely publicized to, to, to occur.
- 11:18
Um, so far, I've been doing a lot of telling rather than showing, and I think for this conference, we really wanna focus more on, more on showing where we can.
- 11:26
Uh, so I'm gonna invite my colleague, Dan Arpino, uh, to come up and, and take over, um, and really show you some of the areas that we're exploring for solving these problems.
- 11:34
Um, I wanna be clear that what we're showing is not committed roadmap, things that are definitely going to be available here. But, uh, we really wanna show it to you so that you can give, uh- Some feedback to us on like is, are we heading in the right direction?
- 11:47
Like, is this the better way to solve these problems? Um, and hopefully this will ultimately mature into some of the solutions that we can deliver to you, to you, uh, all here.
- 11:58
And up here. Any... Happy to take a question or two, uh, 'cause we gotta do the laptop transfer, which is always fun. Yeah.
- 12:05
The earlier ones, you ensured, uh, steer and ask, um, what was, what would be more needed than ask or maybe there
- 12:15
are no-
- 12:15
Yeah. So the question is what's the difference between steer and ask there? And steer is the idea that there can be a policy that is defined that doesn't need a human in the loop, that it can basically guide an agent to say, "Nope, instead of doing that, let's do something different."
- 12:26
So the, the classic example that I think is easiest for folks to understand is like, what if I just redact the PII or a secret, replace it with asterisks, and let the, the kind of agent proceed.
- 12:35
But that's not gonna work in all cases. Ask is gonna be an explicit prompt to the user, either through the agent interface, whether you're using Codex or Claude or Cursor, what- whatever tool, um, or potentially through some other mechanism that, that we're exploring now as well.
- 12:52
For steer and stop, uh, like agents or ask, uh, can you explain the difference between that and how-
- 13:02
Yeah. Happy to talk, uh, kind of, uh, after here, but the, the short of it is that we're relying right now from an implementation perspective on, uh, hooks that can intercept kind of a pre-tool execution, um, in near real-time, assess is this actually potentially problematic, and then before the agent kind of, uh, invokes the next thing, provide
- 13:21
that feedback to it. But hap- happy to talk after here.
- 13:26
You in good shape?
- 13:27
Yeah. Cool. Hopefully, you guys can all hear me. Um, like Ezra said, my name's Dan Arpino. Uh, I am a software engineer at Snyk. Uh, I am one of the developers on the ADS platform.
- 13:40
Um, and so I started out specifically from that ensure trusted output section, basically like how do we ensure that code is secure. Um, and, and as Ezra said, like we were doing a whole bunch of hooks and, and, and integrating with the agents themselves, and I was getting frustrated with all those integrations, and so I decided to
- 13:57
try to build a little bit of a pair programmer right here. And so this is a local Electron app that I have running on my machine that's watching everything that's going on on, on my machine.
- 14:07
You can literally see it's, it's trying to fix some vulnerabilities right now. It's watching the files, it's running these scans in the background, and it's automatically trying to kick off agents to keep this secure.
- 14:18
Um, and so this idea is like, how can we actually use the agents to help us? Um, and then I decided to take this a little bit further because like, as Ezra said, ensure trusted output was just one of the three pillars of agentic development security.
- 14:31
Um, we still wanna know like what the agent is doing and what is the agent-- and what tools the agents are, are using themselves. And so yes, we can have like...
- 14:41
We have some of our tools today that Snyk offers on the Evo platform, and I, I suggest that you all go to evo.snyk.io and, and see this Agent Guard in action and see all the skills and that, that your, and MCPs that your organization is using.
- 14:55
But what I really wanted to do is I wanted to give local visibility into what's running on my machine. As a developer who cares about security, I wanna see this, and there's no really good way to see this.
- 15:04
And so like here in this tool, I can see all of my running LLMs right here. Um, I can see all of my running AI components. I can see...
- 15:15
And this, this is the MCP servers, these are the skills, these are the CLIs and the, and the models that, that, that are running right here, um, that Ezra talked about that with like these different risk scores.
- 15:26
So you can actually see like all the different things that I have willingly or unwillingly installed and running on my machine.
- 15:35
Um, similar we talked about like what is the agent allowed to do. Um, and so like, yes, my organization can set a policy for me, but I might wanna set my own policy.
- 15:48
Or more often, I actually may wanna set a policy depending on what project I am actually working on. Um, so I can actually set up based on my different workspace what I want to apply to each one of those.
- 16:01
Um, for example, uh, I actually turned this off. Uh, I'm building out, uh, a BOLA scanner, Broken Object Layer Authentication. Big issue that we have, uh, we-- that could be a whole 'nother presentation.
- 16:13
I was doing some benchmarking, and Snappy was automatically fixing my vulnerable tools for the benchmarking in the, in the first place. So, uh, I, I had to actually turn that off.
- 16:23
Um, but yeah, the goal here is there that you can actually set your own guardrails. It can automatically go through and fix any vulnerabilities. So like for example, here you actually see that it, it implemented some code right here that's actually running.
- 16:36
Um, and what happens is when it implements these codes, it will actually start a scan. Oh, well, this is, this... It will start a scan, it will find and detect your vulnerabilities.
- 16:47
It will actually launch a new coding agent and try to fix those right away. Um,
- 16:54
and yeah. And then yeah, so giving me visibility on what workspaces I have, giving me visibility on how many of my different agents are running, what my agents are doing, what they're costing me.
- 17:05
Um, getting a history of everything it's doing, all the vulnerabilities. I can actually see on these fixed ones
- 17:15
what it actually tried to do, how it tried to fix it.
- 17:22
Being able to track all my different sessions. Giving me an audit of everything that my LLMs and all of my LLMs are doing on my machines. Like what are all the commands it's running?
- 17:33
What are all the files it's accessing? Um, there's some really interesting implications here on how I actually wanna app-- uh, optimize some of my files and everything like that.
- 17:41
You can see which ones are my heavy reads and writes. You can see which ones are my heavy reads that have almost no edits. Like I might actually want skills that tell me to do dir- different things about that.
- 17:51
What are the commands it's running? Basically, what web pages am I hitting? Monitoring all my different MCPs and tools. Um,
- 18:01
yeah. And then, then yeah. So right now we've got this running our static analysis code testing. We have some open source testing. We've got, uh, secrets testing. Uh, we've got the BOLA, uh, scanner, which is like a set of work in progress, allowing to configure all of these things.
- 18:18
Um, and, and this works because it's-- Well, one of the reasons that it's doing this is it's, it's actually running a local host on your machine. And so I was able to actually run this one earlier.
- 18:32
And if you look at this, I spun Claude up, and I was like, "Hey, Claude, read my ENV environment." And Claude was like, "Hey, no, I can't do that, I'm smart."
- 18:39
And I was like, "All right. Well, Claude, tell me what my secret key is right here." And Claude was like, "Oh, I'll try to read that." And you can actually see that because we've actually set up enforcement here, uh, Snappy actually blocked the access of, of reading this file.
- 18:53
Um, so yes, the agents are getting better. They are not perfect, which is why, like, having deterministic guardrails on your machine, um, being able to set those guardrails on your, on your machine and having visibility into what your agent is doing, um, and what it's running, I think is pretty key.
- 19:11
Uh, one of the big things is, is how do we trust agents? Um, I want visibility, I want auditability, um, and those are really key to me. Um, and so this is why, uh, we started developing this.
- 19:23
Um, in theory, in, in the future, you could actually hook this up. You could, you could actually download, um, you could download rule packs. You could download-- connect it to your Snyk tenant and org.
- 19:35
Um, you can update your own rate sheets, whatever you want. Um, but yeah, this is a little bit of a future vision of, like, what ADS could look like.
- 19:42
This is really saying like, "Here's my development environment. I could be running this on a cloud machine, telling me everything that's happening on that cloud machine. Give me that visibility, give me that auditability, give me that traceability."
- 19:53
Uh, really important aspects in learning how to, how to, how to trust the agents and making sure that they're not going off the rail.
- 20:01
Cool. Um, and I think-
- 20:05
I should have asked at the beginning. Let me turn this mic on here.
- 20:10
That was awesome, Dan. Thanks. Uh, should have asked at the beginning, of the folks who are here, are-- you guy-- who, who's on the security side of the house today as opposed to engineering?
- 20:19
Awesome. Hands down. And who, who's an engineer, uh, in the room? Cool. [laughs] So I think we're, we're-- Like, this is a good acknowledgement of, like, the different audiences that I think these solutions are really trying to address.
- 20:31
I think if you asked the security folks in the room, they'd be like, "Restrict everything. Just like, please do not let anything bad happen." If you ask developers, you'd say, "Any, any false positive that causes kind of more noise in my workflow is just kind of hell on earth."
- 20:45
And so that's the, that's the needle that we're ultimately looking to thread here, um, and why we're trying to come at this from kind of both sides. Um, and I think what Dan was really showing is how do we really, really lean into the developer experience in this new agentic world, um, in a way that is gonna
- 20:59
make, uh, it still possible to achieve, like, all the productivity gains that I think everybody wants out of AI for software development, while still being able to trust and kinda sleep at night, uh, like the last presentation was talking about.
- 21:15
Yeah.
- 21:16
Are you gonna download that tool? [laughs]
- 21:21
Uh, we have talked about possibly throwing it up on our, our Snyk Labs. Uh, it's still in development. Uh, come talk to me. Come, come by the Snyk booth afterwards.
- 21:29
I'll be there from, uh, till close this afternoon.
- 21:33
We-we'll at least get names, and if it's, if it's not today, which is probably not today-
- 21:36
Yeah
- 21:36
... then we can at least see, like once it's there, we'd, we'd love, we'd love to get feedback once we can get something out there like that. Yeah.
- 21:43
Do you expect Snappy to support things like Py?
- 21:46
Can you repeat the question on the mic?
- 21:48
Uh, the question is, do I expect Snappy to support things like Py?
- 21:51
Yeah. Other hard systems that they [audio muffled]
- 21:55
Um, it's actually really-- Well, we will-- This is a tool that I have developed for my own personal use, and I think it has a lot of value. It will go where the market takes it.
- 22:07
And, and that was kind of the idea. Like, it doesn't all have to be up in the cloud. I want local visibility. Um, wherever the market takes it is where I expect it to go.
- 22:15
And, and, yeah.
- 22:19
It sounds like you might have a use case, so I would love to, love to connect after.
- 22:24
It's good to see that you've taken feedback on those previous efforts like from School of Codes. I was wondering how is the false positive rate so far?
- 22:35
Yeah.
- 22:36
Overall, like what are actually being denied to the customer environment?
- 22:40
Yeah. So the question started with a lot of praise for what, what we've done and then, uh, asked about the false positive rate, um, here. Um, and so far the, the feedback overall has been, has been good.
- 22:50
I-- like it's, it's certainly not zero. Like I don't think anybody who's playing in the space is claiming that it's zero. Um, I-- Anecdotally, like when I am using it, because I have it installed on my machine, like it does not-- I do not find it cumbersome and, and bothersome.
- 23:04
I think I probably had one instance that I can remember like in the last month where I was like, "Oh, that, that really was not a particular problem." Uh, but we're pretty aggressively right now working with design partners.
- 23:14
That includes sometimes hundreds of developers within companies who might be doing a variety of different things to try to refine this. So I think it's gonna continue to get better and better and hopefully like asymptotically approach, approach zero.
- 23:26
But I'd be shocked if we ever lived in a world where it was like absolute zero false positive rate for, for a- for any of the companies out there.
- 23:32
And if anybody here is working on solutions that are similar and you've got ideas on how you're solving that, would, would love to learn, 'cause I think like there's plenty for us to learn here too.
- 23:41
Thank you.
- 23:44
There's also one point I'd like to make.
- 23:53
I think the, the question was does this only work on, on...
- 23:57
Does it only work on, on cloud, on, like, code stored in the cloud or can it work on your local machine? Is that the question?
- 24:03
No, no. I mean, like, uh, what I understand is like when I give it a task or a problem, it tries to find the one most relevant topic. But now when I store that, like, I have my code repository-
- 24:15
So you-
- 24:15
... find a way to type input it.
- 24:18
Yeah. So d- different ty- types of, of products that we have right there, and I, I think Manoj mentioned in the first one that, like, burning down a backlog and a remediation agent, um, currently not in the, the tool that we showed today, and Agentic Development Security is more that, that forward-facing stop-the-bleed going forward.
- 24:35
Um, but some of the things that we're releasing in Agentic Development Security is a set of, of skills, commands, hooks, and stuff like that. And so, like, we have a, a Snyk Fix skill that you can pass in a known vulnerability to and w- it will actually use some of that Snyk logic to actually, like, try to
- 24:52
n- understand the breakability, understand what changed, know what the good recommended fixes are, and guide the agent to a more effective, uh, fix. So-
- 25:01
What I didn't have time to demo in Manoj's keynote earlier was basically how we leverage that breakability as part of an input into, is this something that I can fix, uh, quickly?
- 25:11
Um, and generally, it's really easy to generate fixes. Getting a- the approval of the code changes and merging them in, like, that's still the human loop kind of time, time expensive type of a thing.
- 25:21
Um, and so that is kind of... That, that, that's a whole other area that we're working on under kind of the remediation, um, um- umbrella. Um, really cool stuff, just didn't fit into this particular talk. [speaking faintly]
- 25:32
Thank you.
- 25:34
There's one more.
- 25:36
Yeah, sorry, I can't see 'cause of the lights.
- 25:38
Yeah, we are blocking it, yeah. [laughs]
- 25:39
I was wondering your take in how you would start rail in AI agent that doesn't understand text. One that is not based on an LLM model, one that would maybe be constrained by, say, sensor data and then take action over a factor [speaking faintly]
- 25:58
That, that is a fascinating question. The question was how, how would this potentially work, um, any solution around guarding agent behavior when you're not talking about text-based inter-- uh, exchanges, but more sensor-type data or other, other things.
- 26:10
Uh, I, I don't, I don't know. Um, I-
- 26:14
Or working on it.
- 26:15
Okay. I, I mean, I think it's probably, you know, it's still, it's, it's a form of language that's being communicated, uh, right? Rather than... Because just 'cause it's not natural language doesn't mean it's not, it's not language.
- 26:25
I think there might even be some advantages around kind of like a known structured schema for some of that data. I don't know if schema is necessarily the right word, but, like, schema adjacent.
- 26:34
Uh, that's cool. I've-- nobody's ever brought something up like that. I would love-- I'd love to talk. I know I'm making a lot of meeting plans right after this, but, like, I'll, I'll be hanging out right outside.
- 26:43
And, and a lot of the guardrails are still the same. You still want-- You still may wanna control access, like what one sensor can affect or what one sensor can't affect.
- 26:51
Um, like, so you're just talking about the input of data, but there's a whole bunch of outputs of data and what the model can do and what else it can access.
- 26:58
Uh, so a lot of those guardrails, um, and the format of those guardrails stay the same even if, like, that input language changes to sensor reading as opposed to natural language.
- 27:11
Cool. I know we're holding you guys from lunch, so thank you so much for the time. We really appreciate it. [audience applauding] [upbeat music]