Installation
Prerequisites
- macOS, Linux, or Windows (x64 or ARM)
- Docker — for LocalNet and Vault
- Claude Code or OpenCode — your AI coding tool
- Windows only: Visual C++ Redistributable — required for OS keyring support (
winget install Microsoft.VCRedist.2015+.x64)
AlgoKit CLI is also required, but VibeKit will install it for you if needed.
Install
curl -fsSL https://getvibekit.ai/install | shThis downloads the binary for your platform and installs it to ~/.local/bin/vibekit.
$env:VIBEKIT_CHANNEL = "alpha"; irm https://getvibekit.ai/install.ps1 | iexThis downloads the binary and installs it to ~/.vibekit/bin/vibekit.exe. The installer automatically adds this to your user PATH.
Alpha Versions
To test upcoming features:
curl -fsSL https://getvibekit.ai/install | VIBEKIT_CHANNEL=alpha shOr install a specific version:
curl -fsSL https://getvibekit.ai/install | VIBEKIT_VERSION=cli-v0.1.6-alpha.1 sh$env:VIBEKIT_CHANNEL = "alpha"; irm https://getvibekit.ai/install.ps1 | iexOr install a specific version:
$env:VIBEKIT_VERSION = "cli-v0.1.6-alpha.1"; irm https://getvibekit.ai/install.ps1 | iexManual Install
Download from GitHub Releases, then:
chmod +x vibekit-<platform>mv vibekit-<platform> ~/.local/bin/vibekitRename the downloaded vibekit-win32-x64.exe to vibekit.exe and move it to a directory in your PATH.
PATH Setup
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc && source ~/.bashrcecho 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc && source ~/.zshrcfish_add_path ~/.local/binThe PowerShell installer automatically adds ~/.vibekit/bin to your user PATH. Restart your terminal for the change to take effect.