Skip to content

Installation

Install the latest release with a single command:

curl -fsSL https://raw.githubusercontent.com/shakedaskayo/ciab/main/install.sh | bash
curl -fsSL https://raw.githubusercontent.com/shakedaskayo/ciab/main/install.sh | bash -s -- --version v0.1.0
curl -fsSL https://raw.githubusercontent.com/shakedaskayo/ciab/main/install.sh | bash -s -- --dir ~/.local/bin

This downloads the pre-built binary for your platform and places it in /usr/local/bin.

Download from GitHub Releases

Pre-built binaries are available for every tagged release:

Platform Architecture Artifact
macOS Apple Silicon (M1+) ciab-darwin-arm64.tar.gz
macOS Intel ciab-darwin-x64.tar.gz
Linux x86_64 ciab-linux-x64.tar.gz
Linux ARM64 ciab-linux-arm64.tar.gz

Download from GitHub Releases, extract, and move to your PATH:

tar xzf ciab-darwin-arm64.tar.gz
sudo mv ciab /usr/local/bin/

Desktop App

Download the macOS desktop app (.dmg) from GitHub Releases.

Build from Source

Requires Rust (stable, latest).

git clone https://github.com/shakedaskayo/ciab.git
cd ciab
cargo build --release

The ciab binary will be at target/release/ciab.

# Install to PATH
sudo cp target/release/ciab /usr/local/bin/

Verify Installation

ciab --version
ciab --help

Initialize Configuration

Generate a default config file:

ciab config init

This creates config.toml in the current directory. See Configuration for details on all settings.