Getting Started
What is vibe?
Section titled “What is vibe?”vibe is a CLI tool that simplifies Git Worktree management. It helps you:
- Create worktrees for new features without leaving your main repository
- Automatically copy configuration files and dependencies
- Run setup hooks when creating or cleaning up worktrees
- Safely manage worktree lifecycle with interactive prompts
Quick Start
Section titled “Quick Start”1. Install vibe
Section titled “1. Install vibe”bash brew install kexi/tap/vibe bash deno install -A --global jsr:@kexi/vibe
# Ubuntu/Debian (x64)curl -LO https://github.com/kexi/vibe/releases/latest/download/vibe_amd64.debsudo apt install ./vibe_amd64.deb
# Other distributions (x64)curl -L https://github.com/kexi/vibe/releases/latest/download/vibe-linux-x64 -o vibechmod +x vibe && sudo mv vibe /usr/local/bin/Invoke-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")2. Set up your shell
Section titled “2. Set up your shell”Add the following to your shell configuration:
# Add to ~/.zshrcvibe() { eval "$(command vibe "$@")" }# Add to ~/.bashrcvibe() { eval "$(command vibe "$@")"; }# Add to ~/.config/fish/config.fishfunction vibe eval (command vibe $argv)end# Add to ~/.config/nushell/config.nudef --env vibe [...args] { ^vibe ...$args | lines | each { |line| nu -c $line }}# Add to your $PROFILEfunction vibe { Invoke-Expression (& vibe.exe $args) }3. Create your first worktree
Section titled “3. Create your first worktree”# Start working on a new featurevibe start feat/my-new-feature
# Your terminal is now in the new worktree!# Make your changes, commit, push, etc.
# When done, clean up the worktreevibe cleanBasic Workflow
Section titled “Basic Workflow”main repository │ ├── vibe start feat/feature-a → repo-feat-feature-a/ │ │ │ └── (work on feature) │ └── vibe clean ←─────────────────────────┘ (returns to main, removes worktree)Next Steps
Section titled “Next Steps”- Installation - Detailed installation instructions
- Shell Setup - Configure your shell
- Configuration - Set up
.vibe.toml