Installation
Quick install
Section titled “Quick install”The fastest path — clone, run the install script, done.
git clone https://github.com/lliWcWill/fsuite.gitcd fsuite./install.shThe installer copies all 14 tool binaries into /usr/local/bin/ (or ~/.local/bin/ if you don’t have sudo), and installs the shared runtime libraries alongside them.
Debian / Ubuntu package
Section titled “Debian / Ubuntu package”For Debian-based systems, there is a native .deb package.
# Download the latest release# TODO: paste release URL when publishedsudo apt install ./fsuite_*.debManual install (symlink from the repo)
Section titled “Manual install (symlink from the repo)”If you want to hack on fsuite itself, keep the repo checked out and symlink the binaries into your PATH:
cd fsuitefor tool in fs ftree fls fsearch fcontent fmap fread fedit fwrite fbash fcase freplay fprobe fmetrics; do sudo ln -sf "$(pwd)/$tool" "/usr/local/bin/$tool"doneVerify the install
Section titled “Verify the install”fsuite# Should print the suite-level mental model and list all 14 tools
fs --helpftree --helpMCP adapter (optional)
Section titled “MCP adapter (optional)”If you want to expose fsuite tools to Claude Code or other MCP-aware agents, see the MCP adapter page.
Claude Code hook enforcement (optional)
Section titled “Claude Code hook enforcement (optional)”If you want your Claude Code agents to be forced to use fsuite instead of their native Read, Write, Edit, Grep, and Glob tools, see the hooks page.