Installation
Requirements
- Git (used by
aiman init,aiman sync,aiman push) - At least one AI environment: Claude Code (
~/.claude/), Cursor, or Codex CLI
No cloud account or registration required. AIM Loadout is fully local and open source.
macOS
Install via Homebrew:
bash
brew install axsmak/tap/aimanLinux
Install the latest release:
bash
curl -fsSL https://raw.githubusercontent.com/axsmak/aim/main/install.sh | shBy default, the binary is installed to ~/.local/bin/aiman. After installation, open a new terminal or run source ~/.bashrc for aiman to be available in PATH.
Install a specific version:
bash
AIMAN_VERSION=v0.5.1 curl -fsSL https://raw.githubusercontent.com/axsmak/aim/main/install.sh | AIMAN_VERSION=v0.5.1 shInstall to a custom directory (for example, system-wide):
bash
AIMAN_INSTALL_DIR=/usr/local/bin curl -fsSL https://raw.githubusercontent.com/axsmak/aim/main/install.sh | AIMAN_INSTALL_DIR=/usr/local/bin shManual download (if you prefer not to pipe to shell):
bash
curl -LO https://github.com/axsmak/aim/releases/latest/download/aiman_linux_amd64.tar.gz
curl -LO https://github.com/axsmak/aim/releases/latest/download/checksums.txt
sha256sum --check --ignore-missing checksums.txt
tar -xzf aiman_linux_amd64.tar.gz
install -m 755 aiman ~/.local/bin/aimanUse aiman_linux_arm64.tar.gz on ARM64.
Arch Linux
Install via AUR:
bash
yay -S aiman-gitOr manually with makepkg:
bash
git clone https://github.com/axsmak/aim
cd aim/packaging/arch
makepkg -siBuild from source
Requires Go 1.21+:
bash
git clone https://github.com/axsmak/aim
cd aim
make build
# Binary: ./bin/aimanCopy to your PATH:
bash
sudo cp bin/aiman /usr/local/bin/Verify
bash
aiman --version
aiman doctorIf something goes wrong, see Troubleshooting.