7/6/2026 at 1:46:04 PM
Why build separate frameworks for this kind of thing when your operating system is right there?You can make a file called "orders" and you can run your agent as a user with write access to that file, or as one that doesn't, and then you don't need scans or audits to tell you whether the agent can create orders or not, you can just take your operating system's word for it.
Is there anything all this bolt-on AI security stuff does that can't instead be handled by donning a sysadmin hat and managing your agents as separate users?
by __MatrixMan__
7/6/2026 at 2:45:19 PM
One benefit is that this can run in serverless / sandboxed containers where OS primitives are not exposed or heavily limited. I immediately thought of Cloudflare Workers, which runs on V8 and exposes WASM-only interfaces, using Workers AI.Further, servers still have hosting value, but any business running agents is almost certainly going to want a sandbox that limits what code runs for agentic work, so targeting _sandbox_ environments is probably the better bet long-term. And, yes, you could implement your proposal in any chroot jail or gvisor, but nobody wants to get their hands dirty finnicking with that - programmatic access control beats file-based access control for the simple reason it's managed for you.
If anything, my critique of OP's implementation is actually the opposite of yours: they've chosen the right primitive and layer, but people really need contextual access control rather than RBAC. Sort of like ongoing zero trust. If it was possible to inspect the context, decide if it was a bad idea to allow the tool call, without exposing the decider to untrusted context, you could have something that really changes things.
by quixoticaxolotl
7/6/2026 at 3:19:55 PM
Completely agree, though the LLM part of the scanner can help with that contextual part of the analysis.Runtime enforcement already exists (the embedded governor wraps tool calls in-process); extending it with a quarantined contextual evaluator like you describe would the logical next step.
Thanks for the feedback, actually will raise an issue on that to explore
by smashini
7/6/2026 at 6:55:02 PM
[dead]by princek
7/6/2026 at 1:53:13 PM
I’d say the biggest difference would be: 1. Parameter-aware rules: OS permissions don’t know your application logic. (How would you tell OS permissions not to let your AI to trade on over 1M dollars) 2. You can’t easily model multi-pary and RBAC. 3. Agents call remote APIs for alot of those tools. Native OS doesn’t really parse web traffic to decide if a request is safe or not. OS sandboxing is good for host security, but not necessarily for governing business logic or AI agentsby smashini
7/6/2026 at 2:11:25 PM
So Linux can prevent an agent from opening /etc/passwd.Linux cannot stop an agent from calling:
POST /wire-transfer amount=5,000,000
by smashini
7/6/2026 at 2:55:07 PM
Any LSM can stop that POST. SELinux, AppArmor, Tomoyo, etc. They are built-in to the kernel. You just need to know what you are doing to use them.by seethishat
7/6/2026 at 3:23:56 PM
Yes, but they operate at the OS boundary, but we are defining application/business logicOS controls answer "can this process make network requests?"
App-level policies answer "is this request, with these parameters, acceptable?"
by smashini
7/6/2026 at 4:55:37 PM
Is that a real boundary? I mean if an application asks the kernel to enforce a rule, the kernel enforces that rule, regardless of whether it counts as business logic or not. Why have two languages for defining such things if they're not actually distinct?I'll admit that OS interfaces could stand to improve in their ability to do so, there's a lot of stuff in plan9 and fuchsia that I'd love to see in widespread use, but despite that I still think the quickest route to sanity is improving existing tools that constrain arbitrary processes, not replacing them with tools that specifically constrain agents.
by __MatrixMan__
7/6/2026 at 2:38:30 PM
You'd do that with a container and a layer 7 egress proxy rule e.g. mitmproxy.Sure it's work to build such things, but building restraints into the app feels more reliable than playing whack-a-mole with scanner results.
Operating systems can probably do better to meet this need (e.g. capability based ones like fuchsia) but even as is their rules just feel so much more binding.
by __MatrixMan__
7/6/2026 at 2:55:01 PM
The scanner is just one part of the codebase, good for maintaining quality in a pipeline.There is also @makerchecker/embedded, which has runtime permission primitives you wrap around the agent's actions, so the restraints live in the app exactly like you're describing
Less whack-a-mole, more wrap the risky calls and they're bound
by smashini
7/6/2026 at 1:49:47 PM
> Is there anything all this bolt-on AI security stuff does that can't instead be handled by donning a sysadmin hat and managing your agents as separate users?Like everything else, the packaging and ergonomics matter. Do we need podman or docker when we could just don our sysadmin hats and manage namespaces and cgroups directly instead?
by skinfaxi
7/6/2026 at 3:00:29 PM
The user separation isn’t even necessary, as far as I’ve seen in the projects in https://github.com/bureado/awesome-agent-runtime-securityby bureado
7/6/2026 at 3:14:43 PM
[dead]by smashini