A way to exclude sensitive files issue still open for OpenAI Codex
131–140 of 157 posts
Re: A way to exclude sensitive files issue still open for OpenAI Codex
#132Re: A way to exclude sensitive files issue still open for OpenAI Codex
#133Re: A way to exclude sensitive files issue still open for OpenAI Codex
#134You can do this now: change the file permissions such that the user you run codex as can't read them, or run codex in a container without those files mounted. If you don't do that, the agent will be able to incidentally upload them. What if the model runs "rg foo", and one of those files contains the string "foo"? It uploads the tool output, which includes the file contents. And so, the only solution is to make it so…
You could always use setuid to allow the agent to run designated commands whose operation depends on the files, without the agent itself being able to access the files.
Re: A way to exclude sensitive files issue still open for OpenAI Codex
#135Earlier quoted context omitted.
Yes.
lol I don’t you realize how tech illiterate most normies are
Re: A way to exclude sensitive files issue still open for OpenAI Codex
#136Re: A way to exclude sensitive files issue still open for OpenAI Codex
#137Re: A way to exclude sensitive files issue still open for OpenAI Codex
#138Earlier quoted context omitted.
Thanks so much for building smolvm! I liked it so much that I vibe coded a little bash wrapper around it to handle creating ephemeral VMs for Pi: https://github.com/neuroblaze/smol-pi Consists of two scripts, one to build an OCI image (customizable by editing the Dockerfile that comes with it) and another to handle smolvm invocation. The invocation script mounts the current working directory under /workspace in the V…
smolpi looks great! and smolvm does clean up ephemeral runs if the machine run exits gracefully. I'll take a deeper look into this edge case and fix it today.
Re: A way to exclude sensitive files issue still open for OpenAI Codex
#139Earlier quoted context omitted.
The Codex bug tracker is a great insight into how wide the knowledge gap seem to be between users. The issue where people ask them to add back /undo or whatever it is instead of just learning to use git, probably reached 100 comments at least by now. People seemingly don't really understand the computers they use on a daily basis, and refuse to learn too.
I suspect most people don't even know there's a there there. For instance, while I now know that file systems have permissions, before I became a programmer, I spent maybe ten years thinking of permissions as a special, obscure system thing that you should never touch. For that matter, I suspect many people don't know basic things like that a file system isn't inherently the operating system. And, where would you go…
Re: A way to exclude sensitive files issue still open for OpenAI Codex
#140I also maintain https://github.com/nothingnesses/agent-images which allows you to use Nix to reproducibly spin up OCI containers containing agents and any other tools you need and use these with agent-box.
I use both at the moment to work on some personal projects with agents, where I set up multiple separate git worktrees for the agents to work in, preventing them from accessing anything outside of the worktrees and from trampling over each other's work.