Skip to main content

Quick Install

The fastest way to install AgentFS:
curl -fsSL https://github.com/tursodatabase/agentfs/releases/latest/download/agentfs-installer.sh | sh
This installs the agentfs binary to ~/.cargo/bin.

Platform-Specific Instructions

curl -fsSL https://github.com/tursodatabase/agentfs/releases/latest/download/agentfs-installer.sh | sh
After installation, restart your terminal or run:
source ~/.zshrc  # or ~/.bashrc

Verify Installation

agentfs --version

Shell Completions

Enable tab completion for your shell:
# Auto-detect shell
agentfs completions install

# Or specify shell explicitly
agentfs completions install bash
agentfs completions install zsh
agentfs completions install fish
Restart your shell after installing completions.

Building from Source

Requires Rust 1.70+:
git clone https://github.com/tursodatabase/agentfs.git
cd agentfs/cli
cargo install --path .

Next Steps