Skip to content

CLI Installation

The fastest way to install the HEBBS CLI on Linux or macOS:

Terminal window
curl -sSf https://hebbs.ai/install | sh

This downloads the correct binary for your platform and places it in ~/.local/bin/. Make sure this directory is on your PATH.

If you have a Rust toolchain installed:

Terminal window
cargo install hebbs-cli

This compiles from source and installs the binary to ~/.cargo/bin/.

Terminal window
git clone https://github.com/hebbs-ai/hebbs.git
cd hebbs
cargo build --release -p hebbs-cli

The binary is at target/release/hebbs-cli.

Pre-built binaries are available on the GitHub Releases page for:

PlatformArchitectureFile
Linuxx86_64hebbs-cli-linux-amd64.tar.gz
Linuxaarch64hebbs-cli-linux-arm64.tar.gz
macOSx86_64hebbs-cli-darwin-amd64.tar.gz
macOSApple Siliconhebbs-cli-darwin-arm64.tar.gz
Terminal window
hebbs-cli --version

Expected output:

hebbs-cli 0.1.0

Generate shell completions for your shell:

Terminal window
# Bash
hebbs-cli completions bash > ~/.local/share/bash-completion/completions/hebbs-cli
# Zsh
hebbs-cli completions zsh > ~/.zfunc/_hebbs-cli
# Fish
hebbs-cli completions fish > ~/.config/fish/completions/hebbs-cli.fish