Skip to content

Installation

There are three ways to install the slackbuzz CLI.

If you have Go 1.25 or later installed, use go install:

Terminal window
go install github.com/triptechtravel/slackbuzz-cli/cmd/slackbuzz@latest

This places the binary in your $GOBIN directory (typically $HOME/go/bin). Make sure that directory is in your PATH.

On macOS and Linux, install via Homebrew:

Terminal window
brew install triptechtravel/tap/slackbuzz

To upgrade later:

Terminal window
brew upgrade triptechtravel/tap/slackbuzz

Download a prebuilt binary for your platform from the GitHub releases page.

  1. Download the archive for your OS and architecture.
  2. Extract it.
  3. Move the slackbuzz binary to a directory in your PATH (for example, /usr/local/bin).
Terminal window
# Example for macOS arm64
tar xzf slackbuzz_darwin_arm64.tar.gz
sudo mv slackbuzz /usr/local/bin/

After installing, confirm the CLI is available:

Terminal window
slackbuzz version

This prints the version, commit SHA, and build date.

Generate completion scripts for your shell to enable tab completion of commands and flags.

Terminal window
# Bash
source <(slackbuzz completion bash)
# Zsh
source <(slackbuzz completion zsh)
# Or install permanently:
slackbuzz completion zsh > "${fpath[1]}/_slackbuzz"
# Fish
slackbuzz completion fish | source
# PowerShell
slackbuzz completion powershell | Out-String | Invoke-Expression

The digest command optionally uses the ClickUp CLI and GitHub CLI (gh) for cross-tool briefings. Sections are gracefully skipped if these CLIs are not installed.