Installation
Package Managers
Section titled “Package Managers”brew install kexi/tap/vibe# Global installnpm install -g @kexi/vibe
# Or run directly with npxnpx @kexi/vibe start feat/my-feature# Global installbun add -g @kexi/vibe
# Or run directly with bunxbunx @kexi/vibe start feat/my-featureAdd to your .mise.toml:
[plugins]vibe = "https://github.com/kexi/mise-vibe"
[tools]vibe = "latest"Then run:
mise install# x64curl -LO https://github.com/kexi/vibe/releases/latest/download/vibe_amd64.debsudo apt install ./vibe_amd64.deb
# ARM64curl -LO https://github.com/kexi/vibe/releases/latest/download/vibe_arm64.debsudo apt install ./vibe_arm64.deb
# Uninstallsudo apt remove vibe# x64curl -L https://github.com/kexi/vibe/releases/latest/download/vibe-linux-x64 -o vibechmod +x vibesudo mv vibe /usr/local/bin/
# ARM64curl -L https://github.com/kexi/vibe/releases/latest/download/vibe-linux-arm64 -o vibechmod +x vibesudo mv vibe /usr/local/bin/Windows
Section titled “Windows”# DownloadInvoke-WebRequest -Uri "https://github.com/kexi/vibe/releases/latest/download/vibe-windows-x64.exe" -OutFile "$env:LOCALAPPDATA\vibe.exe"
# Add to PATH (first time only)$path = [Environment]::GetEnvironmentVariable("Path", "User")[Environment]::SetEnvironmentVariable("Path", "$path;$env:LOCALAPPDATA", "User")Manual Build
Section titled “Manual Build”If you have Bun installed, you can build from source:
git clone https://github.com/kexi/vibe.gitcd vibepnpm installpnpm run build:compileNext Steps
Section titled “Next Steps”After installation, set up your shell to enable vibe’s directory changing functionality.