Show HN: Strata, real-time Markdown editor you can mount as a filesystem

  • Posted 2 hours ago by xarnx
  • 5 points
https://strata.space/show
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

6 comments

    Loading..
    Loading..
    Loading..
    Loading..
    Loading..
    Loading..