Show HN: Tilde.run – Agent sandbox with a transactional, versioned filesystem
ozkatz
146 points
105 comments
May 06, 2026
Related Discussions
Found 5 related stories in 95.2ms across 7,218 title embeddings via pgvector HNSW
- Show HN: Run coding agents in microVM sandboxes instead of your host machine phoenixranger · 54 pts · April 23, 2026 · 63% similar
- Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents filipbalucha · 98 pts · March 09, 2026 · 62% similar
- Show HN: Tmux-IDE, OSS agent-first terminal IDE thijsverreck · 75 pts · March 18, 2026 · 57% similar
- Show HN: Endo Familiar, an O-cap based JavaScript agent sandbox zmanian · 11 pts · April 23, 2026 · 57% similar
- Show HN: OneCLI – Vault for AI Agents in Rust guyb3 · 137 pts · March 12, 2026 · 56% similar
Discussion Highlights (20 comments)
danielbenzvi
Interesting. Their versioned storage sandbox seems to be what really sets them apart
cyanydeez
I know everyones trying to figure out how to make money in this grift economy, but if you're a rational person, you know that it's all a bunch of gambling and tailoring your scope to b2b and ignoring local & open source models and tools, you're more likely going to be part of that permanent undeclass they keep talking about in a self-fullfilling prophecy.
wyre
Interesting. Literally saw a tweet talking about exactly this last night. Not sure how I feel about it using on your hosted service, while your home page is asking me for analytics data and only the cli and sdk are open source.
esafak
I do not get it. If the agent is not mutating state the change can be checked in. If it is mutating external state, version control won't save you.
docheinestages
Just my two cents: less is more and the first impression matters a lot. I'm saying this because we see a new agent sandbox tool on the front-page almost every day. Most of them have an AI-made landing page design, lots of animations, lots of words. This has become a bad sign for me. I can tell that you put time into it, made a video, and everything, but I guess I'm suffering from some kind of fatigue of having to go through all these tools. So, the less I have to process to get to the meat of exactly what I'm looking at, what sets this apart from others, why and when I would need to use it, then the more likely I am to actually engage with the product.
dtran24
Do git and branching fit into this at all?
pwr1
This looks pretty useful. The versioned filesystem part is nice becuase that’s exactly where a lot of agent stuff gets messy fast.
digitaltrees
Interesting project. I am building an IDE for my phone and browser (www.propelcode.app) and have evaluated a few container architectures and providers. It was quite painful to get a prototype working. I will try your platform and would be happy to give feedback.
dorianzheng
any chance i can run local micro-VM such as boxlite with this?
viewhub
What compute resources does the sandbox have? Memory/CPU/GPU?
kushalpatil07
I was trying to build an agent. None of the sandboxes out there had solved the filesystem problem. I want my agent to have a persistent storage, and that stays forever. Like a human with a computer. When the agent spins up again, it has access to the computer with the same files. I had to create my own setup using aws s3 filesystem and docker for this. Does Tilde solve for this?
mc-serious
Nice, I think that's pretty neat. Do you have an idea where to take this further? I.e. for the filesystem it's great but what if you need to touch external systems that keep their own state?
varispeed
All these agent offering are missing a use case. What I would use it for and why? It reminds me of a blockchain - where it was a solution desperately looking for a problem. What problem does it solve?
zuzululu
more tools I will never use or need theres just an endless supply of new open source projects now I stopped paying attention I increasingly feel the impact of landing on the frontpage of HN is not as pronounced as it used to be. The demographic shift of HN is also noted, it has a lot more "reddit" vibe than I remember.
redwood
How does the scale? For example if I were to have hundreds or thousands of concurrent agents running with some parts of their data pulled out of shared state and other parts custom to that particular agent run and I wanted all of this to be preserved for future collective or individual agent use later, is this a reasonable primitive for that problem space? Or is this more for a situation what you have one or a small number of productivity assistance agents that need a sandbox but low data mutation throughput and low amount of concurrent access across different agents?
stronglikedan
> Free to start Before I invest my time into something like this I'll need to know what it'll end up costing in the end. Perhaps it's just that "private previews" aren't for me. Good luck!
irivkin
Looks promising! I wanna try it!
cpard
It was a nice surprise seeing your post on the first page of HN Oz, congrats! If I understand correctly what Tilde is doing is extending the concept of the sandbox in an operating system - filesystem, to data too. So this is a sandbox environment someone would use for data heavy agentic workloads, is this correct?
clearstack
If an agent deletes something important (e.g. database), can you undo it? Does it automatically backup before making changes?
seamossfet
Does this provide gitflow to handle conflicts from multiple agents touching the same file system or is it purely for single-branch sequential iterations on the filesystem? I have a use case that could use this if it supports handling branching and merging file systems.