Official Homebrew tap for VibePod CLI — run and switch AI coding agents locally.
brew tap vibepod/vibepod
brew install vibepodOr in a single command:
brew install vibepod/vibepod/vibepodThen verify:
vp versionvp list # See available agents and active workspaces
vp run AGENT # Start an agent in the current folder
vp ui # Open the local monitoring UI in your browserFull documentation at vibepod.dev.
brew update
brew upgrade vibepodbrew uninstall vibepod
brew untap vibepod/vibepodWhen a new version is released on PyPI, follow these steps to update the formula.
VERSION=0.9.1 # replace with new version
URL="https://files.pythonhosted.org/packages/source/v/vibepod/vibepod-${VERSION}.tar.gz"
curl -sL "$URL" | shasum -a 256Replace the url and sha256 fields with the new values.
brew update-python-resources Formula/vibepod.rbThis rewrites all resource blocks in the formula to match the new version's dependencies.
brew install --build-from-source Formula/vibepod.rb
brew test vibepod
brew audit --strict --online Formula/vibepod.rbgit add Formula/vibepod.rb
git commit -m "vibepod ${VERSION}"
git pushThe included GitHub Actions workflow (.github/workflows/update-formula.yml) checks PyPI every 6 hours and opens a pull request automatically when a new version is detected. To enable it, the workflow needs the GITHUB_TOKEN with write permissions (already available by default in Actions) and the peter-evans/create-pull-request action.
- macOS (Intel or Apple Silicon)
- Homebrew
- Python 3.12 (installed automatically by Homebrew if not present)
- Docker (required by VibePod at runtime — install from docker.com)
MIT