skip to content
FILESYSTEM.md

Filesystem agent showcase

Last updated:

View Markdown source

These projects are not FILESYSTEM.md-certified products. They are useful references for filesystem-first agent design: durable context, skills as files, and storage backends that speak ls / cat / write semantics. Map their patterns onto the ANF contract (FILESYSTEM.md + AGENTS.md + memory/skills/logs) rather than copying any one vendor layout.

OpenViking

ByteDance open-source context OS for agents

Filesystem-first memory: contexts are files, not loose text chunks. Layered loading trims tokens while memories stay traceable.

FILESYSTEM.md alignment: clear context layering and explicit file-backed memory map directly to deterministic loading and auditability principles.

View project →


AGFS (Aggregated File System)

Aggregated File System — Everything is a file, in RESTful APIs

Unifies queues, databases, storage, and KV as file paths so agents just read and write.

Examples:

Benefits:

FILESYSTEM.md alignment: demonstrates “filesystem as API” at system scale by mapping service operations to paths and file operations.

View project →


AgentFS

SQLite-backed filesystem purpose-built for agent state

Stores every tool call and file operation in SQLite while exposing the filesystem over FUSE (Linux) or NFS (macOS), plus SDKs for TypeScript, Python, and Rust.

FILESYSTEM.md alignment: strongly supports append-only traceability, deterministic structure, and interoperability across runtimes.

View project →


VectorVFS

Your Linux filesystem as a vector database

Keeps embeddings in VFS extended attributes so files stay the source of truth—no separate index services.

FILESYSTEM.md alignment: keeps semantic memory attached to files instead of hidden side stores, reinforcing the filesystem as the source of truth.

View project →


FUSE is All You Need

Giving agents access to anything via filesystems

Jakob Emmerling (2026-01-11) on exposing domains as files via FUSE.

Takeaway: “everything as files” gives agents a single, calm UI layer.

FILESYSTEM.md alignment: the article validates progressive disclosure and filesystem-native workflows as a practical default for agent systems.

Read article →