You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bumblebee can be very useful when security and platform teams can roll it out broadly across developer Macs — not just to people who already have Go installed and are comfortable with go install.
Today, installation is documented primarily as:
go install github.com/perplexityai/bumblebee/cmd/bumblebee@latest
That works for Go developers, but it’s a meaningful barrier for everyone else on macOS:
Non-developer Mac users (IT, security responders, team leads) often don’t have Go on their PATH and shouldn’t need to install a toolchain just to run a scanner.
Developers who aren’t Go-native expect CLI tools to be one command away — the same way they install gh, ripgrep, or fzf.
Fleet rollout on Mac (MDM, onboarding docs, incident runbooks) is much simpler when the install path is a standard package manager command rather than “install Go, then go install this module.”
Homebrew is a preferred way Mac users install CLI tools. brew install bumblebee lowers the friction to try bumblebee, verify it (bumblebee selftest), and adopt it across macOS endpoints and some Linux endpoints.
Official tap (optional) — create perplexityai/homebrew-tap with a formula that installs official macOS release binaries for users who prefer tap-based installs or need faster binary delivery between core formula updates:
Problem
Bumblebee can be very useful when security and platform teams can roll it out broadly across developer Macs — not just to people who already have Go installed and are comfortable with
go install.Today, installation is documented primarily as:
That works for Go developers, but it’s a meaningful barrier for everyone else on macOS:
gh,ripgrep, orfzf.Homebrew is a preferred way Mac users install CLI tools.
brew install bumblebeelowers the friction to try bumblebee, verify it (bumblebee selftest), and adopt it across macOS endpoints and some Linux endpoints.Status
Homebrew core — merged (2026-05-28)
Users can now install directly:
Merged PR: Homebrew/homebrew-core#284878
Remaining proposal
Official tap (optional) — create
perplexityai/homebrew-tapwith a formula that installs official macOS release binaries for users who prefer tap-based installs or need faster binary delivery between core formula updates:Release automation — extend
.goreleaser.yamlwith abrewsblock to auto-update the tap formula on each tagged release (draft in docs: Homebrew install path and GoReleaser tap automation #26).Why this fits bumblebee
bumblebee selftestgives Homebrew and users a reliable post-install smoke test.Acceptance criteria
brew install bumblebeeworks on Apple Silicon and Intel Macsperplexityai/homebrew-tapexists (optional; core formula covers primary install path)Related