Remix.run Logo
Show HN: Strata, real-time Markdown editor you can mount as a filesystem(strata.space)
5 points by xarnx 6 hours ago | 8 comments

Hi HN. Strata is a real-time markdown editor built around document portability across agentic workflows. The same docs live on the web, mount to disk on Linux/macOS with live CRDT collaboration intact, and render inside any MCP app (claude.ai, ChatGPT). There's also a CLI, MCP server, and API. Demo video shows live sync as ClaudeCode reads and writes legal guidance.

FUSE is really neat. It can mount entire filesystems on Linux without materializing files until requested, which immediately brings to mind use-cases around knowledge bases for company files, or RAG corpus. However, the Mac side muddied the picture. We started pure FUSE + MacFUSE, but MacFUSE was an onerous kext install. Next we built on native FSKit which is kext-less, but effectively read-only. FSKit won't let you invalidate a cached read, so to push a web edit down to a local file you have to force overwrite it through your own mount to make the kernel re-cache. This is as sketchy as it sounds, and is a poor proxy for collaborative behaviors.

So we put FSKit/FUSE behind a different flag and built a daemon on our existing WebSocket/CRDT stack instead. Like Google Docs meets Dropbox. The files materialize this way, but we decided it was the right tradeoff until FSKit develops their API.

Doing anything meaningful over remote MCP/API requires OAuth, so there's no way around free account creation, but no credit card required. Break it and let us know how it went.

https://strata.space/documentation/get-started

vi_jedi 4 hours ago | parent | next [-]

That sounds like a pretty cool use of FUSE. I keep trying to use it for remote systems, but also keep getting into the how to set it up pain.

I'm wondering if there's a potential for integration into a codebase for keeping a knowledge base updated, where there's a mix of developers, support staff, product, and of course, AI Agents?

xarnx 3 hours ago | parent [-]

It’s super easy for Linux but Apple really hate developers. FSKit is super half baked and there are very few apps I’d suffer a reboot for. So. If a read-only knowledge base appeals, try it out. Otherwise if actually keeping files on disc is no obstacle, the web sockets api works just fine

jacobius 4 hours ago | parent | prev | next [-]

I've been wondering how knowledge bases and documents can evolve in agentic era. This seems promising.

xarnx 4 hours ago | parent [-]

I have another project where I was doing semantic search via standard RAG and realized an agent plus grep was actually way better than matching user text to obscure legalese vectors. Claude already knows CFR from its training data so targeted grep recalls data with less ranking gymnastics.

4 hours ago | parent | prev | next [-]
[deleted]
quietaccentbar 3 hours ago | parent | prev | next [-]

[dead]

xarnx 5 hours ago | parent | prev | next [-]

[flagged]

noah-strata 5 hours ago | parent | prev [-]

[dead]