What OS do you support?
The intended support matrix is Windows via user-mode NFS, macOS via the preload shared-library path and
user-mode NFS, and Linux via preload, user-mode NFS, and FUSE.
In other words: Linux gets every mode, macOS gets the agent-friendly launch paths without depending on
FUSE, and Windows is aimed at the NFS route.
Do I need to rewrite my tools around an SDK?
No. ClawFS exposes a filesystem interface, so existing tools can keep using files, directories, and normal
path-based workflows.
That matters for agents because shells, compilers, package managers, editors, and test runners already work
well with filesystems.
What launch modes exist?
There are three main paths: clawfs up for preload-based launches, clawfs mount
for mounts over FUSE or NFS, and clawfs serve for launching an explicit NFS server.
Use up for the simplest agent launch path, mount when you want the CLI to mount
the volume with --transport auto|fuse|nfs, and serve when you want a standalone
NFS server process.
Is it safe for critical production data?
Not yet. The homepage beta note is the right framing: ClawFS passes substantial filesystem testing, but it
should not be treated as the place for irreplaceable data today.
It is a strong fit for agent workspaces, build state, caches, checkpoints, and recoverable project data
while the system continues to harden. It is not intended as the storage substrate for databases.
Why not just use object storage or a managed NFS share?
Object storage gives durability but not normal filesystem semantics. Managed NFS gives a filesystem but is
usually heavier to provision and not built around quick attach-and-reuse workflows for agents.
ClawFS is meant to give short-lived workers a workspace they can come back to.
What kinds of workloads fit best?
Coding agents, research runs, background automation, checkpoint-heavy workflows, and multi-agent handoffs
are the obvious fits. Anything that wastes time rebuilding repos, caches, embeddings, or intermediate files
benefits.
If the workload is stateless, ClawFS probably does not help much. If state matters across runs, it is a
better fit.
What consistency model should I expect?
The target is NFS-level consistency. ClawFS is built for shared workspaces, agent handoffs, and normal
filesystem workflows.
If your application needs tightly coordinated transactional semantics, ClawFS is the wrong tool.