Installation
Homebrew (Recommended)
The easiest way to install vibe on macOS and Linux is via Homebrew:
brew tap skymoore/tap
brew install --cask vibe-zshThe Homebrew installation automatically:
- Installs vibe to
~/.oh-my-zsh/custom/plugins/vibe - Adds
vibeto your plugins list in~/.zshrc - Creates a global
vibe-zshcommand for CLI usage
After installation, reload your shell:
source ~/.zshrcNote: Homebrew installation requires Oh-My-Zsh. If you don’t have it installed, the installer will provide instructions.
Oh-My-Zsh Plugin
If you use Oh-My-Zsh and prefer plugin-based installation, use our automated installation script:
curl -fsSL https://raw.githubusercontent.com/skymoore/vibe-zsh/main/install.sh | bashwget -qO- https://raw.githubusercontent.com/skymoore/vibe-zsh/main/install.sh | bashThis script will:
- Download the latest release for your platform (or clone and build from source if no release is available)
- Install to
~/.oh-my-zsh/custom/plugins/vibe - Display instructions for adding
vibeto your plugins list in.zshrc
Manual Install
If you prefer to install manually:
1. Clone the repository
git clone https://github.com/skymoore/vibe-zsh.git ~/.oh-my-zsh/custom/plugins/vibe2. Build the binary
cd ~/.oh-my-zsh/custom/plugins/vibe
make build3. Add to your .zshrc
Edit your ~/.zshrc and add vibe to the plugins array:
plugins=(... vibe)4. Reload your shell
source ~/.zshrcBuilding from Source
If you want to build from source:
git clone https://github.com/skymoore/vibe-zsh.git
cd vibe-zsh
make build # Build for current platform
make build-all # Build for all platforms
make test # Run tests
make install # Install to oh-my-zshVerification
After installation, verify that vibe is working:
# Check that the binary exists
which vibe
# Type something and press Ctrl+G
echo "test"
# Then press Ctrl+GUninstalling
Homebrew
To uninstall vibe installed via Homebrew:
brew uninstall --cask vibe-zsh
brew untap skymoore/tap # Optional: remove the tapThen remove the source line from your ~/.zshrc and reload your shell:
source ~/.zshrcOh-My-Zsh Plugin
To uninstall vibe installed as an Oh-My-Zsh plugin:
curl -fsSL https://raw.githubusercontent.com/skymoore/vibe-zsh/main/uninstall.sh | bashwget -qO- https://raw.githubusercontent.com/skymoore/vibe-zsh/main/uninstall.sh | bashThen remove vibe from your plugins list in ~/.zshrc and reload:
source ~/.zshrcManual Uninstall
If you installed manually, simply remove the plugin directory:
rm -rf ~/.oh-my-zsh/custom/plugins/vibeThen remove vibe from your plugins list in ~/.zshrc and reload your shell.
Next Steps
After installation, you’ll want to configure your API settings.