Top
Best
New

Posted by theaniketmaurya 15 hours ago

Show HN: A durable filesystem layer for AI agents(github.com)
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.

4 points | 5 comments
evilstar 3 hours ago|
How are you thinking about concurrent mounts and conflict handling if two agent runtimes write to the same SmolFS volume?
CRSilkworth 15 hours ago||
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!
theaniketmaurya 6 hours ago|
Nice to know that others also faced the same issue. Did you try something like archil or agentfs from turso?
anoop_kumar 13 hours ago|
Interesting. Good use case especially for portability to cloud.
theaniketmaurya 6 hours ago|
Yeah, it’s quite handy that I can mount the same storage on my macbook and then somewhere on a random cloud.