Download pkgprobe

Every install starts with a 7-day free trial — all features unlocked, no credit card. Pick the channel that fits your setup.

Desktop app — macOS 14+

Homebrew

The cask installs the GUI app and keeps it updated.

brew tap pkgprobe/tap
brew install --cask pkgprobe

Mac App Store

Coming soon

Sandboxed build with StoreKit purchases.

Setapp

Coming soon

Included with a Setapp subscription once live.

Command line

Homebrew (CLI)

No external runtime deps.

brew install pkgprobe/tap/pkgprobe-cli

Direct tarballs

Prebuilt binaries per platform. Each has a matching .sha256.

GitHub Action

Scan in CI — SBOM, policy, and PR vuln diffs.

- uses: pkgprobe/scan-action@v1
  with:
    license-key: ${{ secrets.PKGPROBE_LICENSE_KEY }}
    vulns: true
    policy: true

Full action docs →

Verify your download

Every artifact ships with a .sha256 file. Check it before you install.

macOS — DMG

# checksum (run beside the .dmg + .sha256)
shasum -a 256 -c pkgprobe-<ver>.dmg.sha256

# Gatekeeper: signed + notarized by Apple
spctl -a -vvv -t install /Volumes/pkgprobe/pkgprobe.app

macOS — CLI tarball

shasum -a 256 -c \
  pkgprobe-cli-<ver>-aarch64-apple-darwin.tar.gz.sha256

Linux — CLI tarball

sha256sum -c \
  pkgprobe-cli-<ver>-x86_64-unknown-linux-gnu.tar.gz.sha256

Windows — CLI

Get-FileHash -Algorithm SHA256 `
  .\pkgprobe-cli-<ver>-x86_64-pc-windows-msvc.zip
# compare against the .sha256 from the release page

Windows CLI + Authenticode signing are in flight.