Hacker News new | ask | show | jobs
Show HN: A durable filesystem layer for AI agents (github.com)
4 points by theaniketmaurya 1 day ago
I run AI agents on my laptop and cloud. Often I wish to synchronize the memory markdowns created on multiple platforms. So I built a S3 based durable filesystem which can be mounted anywhere.

It is implemented in Rust with SDK in both Python, TypeScript and a CLI for agents.

3 comments

How are you thinking about concurrent mounts and conflict handling if two agent runtimes write to the same SmolFS volume?
ooo, I was looking for something like this when I was designing our agent architecture. Wish this existed before. Ended up building something quite similar, although this looks more complete and modular. Nice!
Nice to know that others also faced the same issue. Did you try something like archil or agentfs from turso?
Interesting. Good use case especially for portability to cloud.
Yeah, it’s quite handy that I can mount the same storage on my macbook and then somewhere on a random cloud.