Skip to main content

Installation

Choose your preferred installation method.

Homebrew (macOS/Linux)

brew install groo-dev/tap/cl

npm

npm install -g @groo.dev/cl-wrangler

pip

pip install cl-wrangler

From Releases

Download the latest binary from GitHub Releases:

curl -L https://github.com/groo-dev/cl-wrangler/releases/latest/download/cl_darwin_arm64.tar.gz | tar xz
sudo mv cl /usr/local/bin/

From Source

git clone https://github.com/groo-dev/cl-wrangler.git
cd cl-wrangler/cli
go build -o cl
sudo mv cl /usr/local/bin/

Shell Completions

Enable tab completion for your shell:

# Add to ~/.zshrc
eval "$(cl completion zsh)"

# Or generate to file
cl completion zsh > "${fpath[1]}/_cl"