AgentFS is a filesystem for AI agents. It provides copy-on-write isolation, letting agents safely modify files while keeping your original data untouched. It is available both as a CLI, that wraps an existing program in a sandboxed session, and an SDK that allows you to build custom agents with a filesystem abstraction.
# Installcurl -fsSL https://agentfs.ai/install | bash# Run a shell in an isolated environmentcd /path/to/projectagentfs run bash# Any changes are isolated - your original files are safe