- Go to the Releases page
- Download the latest
VibeProxy.zip - Extract the ZIP file
Choose your preferred method:
Via ZIP:
- Drag
VibeProxy.appto your/Applicationsfolder - Double-click to launch
Via DMG (if available):
- Double-click
VibeProxy.dmgto mount - Drag
VibeProxy.appto the Applications folder shortcut - Eject the DMG
- Launch VibeProxy from Applications
Double-click VibeProxy.app - it will launch immediately with no warnings! ✅
Why? VibeProxy releases are code signed with an Apple Developer ID and notarized by Apple, ensuring a seamless installation experience.
- macOS 13.0 (Ventura) or later
- Swift 5.9+
- Xcode Command Line Tools
- Git
-
Clone the repository
git clone https://github.com/automazeio/vibeproxy.git cd vibeproxy -
Build the app
./create-app-bundle.sh
This will:
- Build the Swift executable in release mode
- Download and bundle CLIProxyAPI
- Create
VibeProxy.app - Sign it with your Developer ID (if available)
-
Install
# Move to Applications folder mv VibeProxy.app /Applications/ # Or run directly open VibeProxy.app
# Quick build and run
make run
# Build .app bundle
make app
# Install to /Applications
make install
# Clean build artifacts
make cleanIf you have an Apple Developer account, the build script will automatically detect and use your Developer ID certificate for signing.
To manually specify a certificate:
CODESIGN_IDENTITY="Developer ID Application: Your Name (TEAMID)" ./create-app-bundle.shBefore installing any downloaded app, verify its authenticity:
Only download from the official GitHub Releases page.
Each release includes SHA-256 checksums:
# Download the checksum file
curl -LO https://github.com/automazeio/vibeproxy/releases/download/vX.X.X/VibeProxy.zip.sha256
# Verify the download
shasum -a 256 -c VibeProxy.zip.sha256Expected output: VibeProxy.zip: OK
All source code is available in this repository - feel free to review before building.
This can happen if download quarantine attributes cause issues:
xattr -cr /Applications/VibeProxy.appThen try opening again.
Error: Swift not found
# Install Xcode Command Line Tools
xcode-select --installError: Permission denied
# Make scripts executable
chmod +x build.sh create-app-bundle.sh- Check System Requirements: macOS 13.0 (Ventura) or later
- Check Logs: Look for errors in Console.app (search for "VibeProxy")
- Report an Issue: GitHub Issues