Installation
This guide covers how to install the Wabee CLI on your system.
Download Pre-built Binaries
The easiest way to install the CLI is to download a pre-built binary from the GitHub releases page.
macOS
# For Apple Silicon (M1/M2/M3)
curl -L https://github.com/wabee-ai/agent-cli/releases/latest/download/wabee_darwin_arm64.tar.gz | tar xz
sudo mv wabee /usr/local/bin/
# For Intel Macs
curl -L https://github.com/wabee-ai/agent-cli/releases/latest/download/wabee_darwin_amd64.tar.gz | tar xz
sudo mv wabee /usr/local/bin/
Linux
# For AMD64/x86_64
curl -L https://github.com/wabee-ai/agent-cli/releases/latest/download/wabee_linux_amd64.tar.gz | tar xz
sudo mv wabee /usr/local/bin/
# For ARM64
curl -L https://github.com/wabee-ai/agent-cli/releases/latest/download/wabee_linux_arm64.tar.gz | tar xz
sudo mv wabee /usr/local/bin/
Windows
Download the appropriate .zip file from the releases page and extract it. Add the extracted folder to your system PATH.
Build from Source
If you have Go installed (1.21 or later), you can build from source:
git clone https://github.com/wabee-ai/agent-cli.git
cd agent-cli
make install
This will build the binary and install it to your GOBIN directory (usually ~/go/bin).
Verify Installation
After installation, verify the CLI is working:
wabee version
You should see output like:
wabee version 1.0.0
Quick Start
Once installed, initialize your configuration:
wabee config init
This interactive command will guide you through setting up your API endpoint and credentials. After configuration, you can start interacting with your agent:
wabee task new "What can you help me with?"
Next Steps
- Configuration Guide - Set up profiles and authentication
- Command Reference - Learn all available commands