インストール
パッケージマネージャー
Section titled “パッケージマネージャー”brew install kexi/tap/vibe# グローバルインストールnpm install -g @kexi/vibe
# またはnpxで直接実行npx @kexi/vibe start feat/my-feature# グローバルインストールbun add -g @kexi/vibe
# またはbunxで直接実行bunx @kexi/vibe start feat/my-feature.mise.tomlに追加:
[plugins]vibe = "https://github.com/kexi/mise-vibe"
[tools]vibe = "latest"その後、インストール:
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
# アンインストールsudo 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”# ダウンロードInvoke-WebRequest -Uri "https://github.com/kexi/vibe/releases/latest/download/vibe-windows-x64.exe" -OutFile "$env:LOCALAPPDATA\vibe.exe"
# PATHに追加(初回のみ)$path = [Environment]::GetEnvironmentVariable("Path", "User")[Environment]::SetEnvironmentVariable("Path", "$path;$env:LOCALAPPDATA", "User")Bunがインストールされている場合、ソースからビルドできます:
git clone https://github.com/kexi/vibe.gitcd vibepnpm installpnpm run build:compile次のステップ
Section titled “次のステップ”インストール後、シェル設定でvibeのディレクトリ変更機能を有効にしてください。