Installation
Installation
There are three ways to install the slackbuzz CLI.
Go
If you have Go 1.25 or later installed, use go install:
go install github.com/triptechtravel/slackbuzz-cli/cmd/slackbuzz@latestThis places the binary in your $GOBIN directory (typically $HOME/go/bin). Make sure that directory is in your PATH.
Homebrew
On macOS and Linux, install via Homebrew:
brew install triptechtravel/tap/slackbuzzTo upgrade later:
brew upgrade triptechtravel/tap/slackbuzzBinary releases
Download a prebuilt binary for your platform from the GitHub releases page.
- Download the archive for your OS and architecture.
- Extract it.
- Move the
slackbuzzbinary to a directory in yourPATH(for example,/usr/local/bin).
# Example for macOS arm64tar xzf slackbuzz_darwin_arm64.tar.gzsudo mv slackbuzz /usr/local/bin/Verify the installation
After installing, confirm the CLI is available:
slackbuzz versionThis prints the version, commit SHA, and build date.
Shell completions
Generate completion scripts for your shell to enable tab completion of commands and flags.
# Bashsource <(slackbuzz completion bash)
# Zshsource <(slackbuzz completion zsh)# Or install permanently:slackbuzz completion zsh > "${fpath[1]}/_slackbuzz"
# Fishslackbuzz completion fish | source
# PowerShellslackbuzz completion powershell | Out-String | Invoke-ExpressionDependencies
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.