Binary Installation
Install TuskBot as a native binary on Linux or macOS.
Quick Install
bash
curl -fsSL https://tuskbot.ai/install.sh | shThe installer performs the full bootstrap flow:
- Downloads the latest stable release binary.
- Installs
tuskinto a user-local bin directory. - Runs
tusk install(interactive setup). - Runs
tusk service install. - Runs
tusk service start. - Verifies service status is running.
Supported release artifacts:
- Linux amd64
- Linux arm64
- macOS arm64
Verify Installation
bash
tusk service statusExpected output includes Service status: running.
If you prefer foreground execution:
bash
tusk runManual Install (Fallback)
- Download the correct archive from GitHub Releases.
- Extract and install the binary.
bash
# Example for Linux amd64
tar -xzvf tusk-linux-amd64.tar.gz
chmod +x bin/tusk-linux-amd64
mkdir -p ~/.local/bin
mv bin/tusk-linux-amd64 ~/.local/bin/tuskThen run:
bash
tusk install
tusk service install
tusk service start
tusk service status