Skip to content
Β 
Β 

Latest commit

Β 

History

1,011 Commits

Folders and files

NameName
Last commit message
Last commit date
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

VibeProxy

VibeProxy Icon

Automaze MIT License Star this repo

This fork builds on automazeio/vibeproxy and adds compact multi-account usage controls for Claude Code and Codex.

Stop paying twice for AI. VibeProxy is a beautiful native macOS menu bar app that lets you use your existing Claude Code, ChatGPT, Gemini, Kimi, Qwen, Antigravity, and Z.AI GLM subscriptions with powerful AI coding tools like Factory Droids.

Built on CLIProxyAPIPlus, it handles OAuth authentication, token management, and API routing automatically. One click to authenticate, zero friction to code.


VibeProxy Screenshot

Tip

πŸ“£ NEW: Vercel AI Gateway Integration!
Route your Claude requests through Vercel's officially sanctioned AI Gateway for safer access to your Claude Max subscription. No more worrying about account risks from using OAuth tokens directly!

Latest models supported: Gemini 3 Pro (via Antigravity), GPT-5.1 / GPT-5.1 Codex, Claude Sonnet 4.5 / Opus 4.5 with extended thinking, GitHub Copilot, Z.AI GLM-4.7, and Kimi! πŸš€

Setup Guides:


Features

  • 🎯 Native macOS Experience - Clean, native SwiftUI interface that feels right at home on macOS
  • πŸš€ One-Click Server Management - Start/stop the proxy server from your menu bar
  • πŸ” Easy Authentication - Authenticate with Codex, Claude Code, Gemini, Kimi, Qwen, and Antigravity (OAuth), plus Z.AI GLM (API key) directly from the app
  • πŸ›‘οΈ Vercel AI Gateway - Route Claude requests through Vercel's AI Gateway for safer access to your Claude Max subscription without risking your account from direct OAuth token usage
  • πŸ‘₯ Multi-Account Support - Connect multiple accounts per provider with automatic round-robin distribution and failover when rate-limited
  • πŸ“Š Usage Limits - See 5-hour, weekly, and provider-specific limits for every Claude Code and Codex account
  • ⏱️ Codex Usage Resets - Use available reset credits directly from the menu bar
  • πŸ‘οΈ Privacy Controls - Blur account emails before sharing screenshots
  • ⏻ Account Controls - Enable or disable individual accounts without opening Settings
  • 🎚️ Provider Priority - Enable/disable providers to control which models are available (instant hot reload)
  • πŸ“Š Real-Time Status - Live connection status and automatic credential detection
  • 🎨 Beautiful Icons - Custom icons with dark mode support
  • πŸ’Ύ Self-Contained - Everything bundled inside the .app (server binary, config, static files)

Installation

Requirements: macOS 13+ (Ventura or later)

Download Pre-built Release (Recommended)

  1. Go to the Releases page
  2. Download the appropriate version for your Mac:
    • Apple Silicon (M1/M2/M3/M4): VibeProxy-arm64.zip
    • Intel: VibeProxy-x86_64.zip (untested - please report issues)
  3. Extract and drag VibeProxy.app to /Applications
  4. Launch VibeProxy

Fork releases are currently ad-hoc signed. If macOS blocks the first launch, right-click VibeProxy.app, choose Open, then confirm.

Build from Source

Want to build it yourself? See INSTALLATION.md for detailed build instructions.

To create the same ZIP archive and SHA-256 checksum published by GitHub Releases:

make package

Usage

First Launch

  1. Launch VibeProxy - you'll see a menu bar icon
  2. Click the icon and select "Open Settings"
  3. The server will start automatically
  4. Click "Connect" for Claude Code, Codex, Gemini, Kimi, Qwen, or Antigravity to authenticate, or "Add Account" for Z.AI GLM

Authentication

When you click "Connect" for an OAuth provider:

  1. Your browser opens with the OAuth page
  2. Complete the authentication in the browser
  3. VibeProxy automatically detects your credentials
  4. Status updates to show you're connected

When you click "Add Account" for Z.AI GLM:

  1. Paste your provider API key
  2. VibeProxy stores it in ~/.cli-proxy-api/
  3. The provider becomes available through the proxy immediately

Server Management

  • Toggle Server: Click the status (Running/Stopped) to start/stop
  • Menu Bar Icon: Shows active/inactive state
  • Launch at Login: Toggle to start VibeProxy automatically

Requirements

  • macOS 13.0 (Ventura) or later

Development

Tests

Run the complete Swift test suite from the repository root:

make test

Pull requests run the same suite on macOS through GitHub Actions. Local test runs require a full Xcode toolchain because Command Line Tools alone do not include XCTest.

Project Structure

VibeProxy/
β”œβ”€β”€ Sources/
β”‚   β”œβ”€β”€ main.swift              # App entry point
β”‚   β”œβ”€β”€ AppDelegate.swift       # Menu bar & window management
β”‚   β”œβ”€β”€ ServerManager.swift     # Server process control & auth
β”‚   β”œβ”€β”€ SettingsView.swift      # Main UI
β”‚   β”œβ”€β”€ AuthStatus.swift        # Auth file monitoring
β”‚   └── Resources/
β”‚       β”œβ”€β”€ AppIcon.iconset     # App icon
β”‚       β”œβ”€β”€ AppIcon.icns        # App icon
β”‚       β”œβ”€β”€ cli-proxy-api-plus  # CLIProxyAPIPlus binary
β”‚       β”œβ”€β”€ config.yaml         # CLIProxyAPIPlus config
β”‚       β”œβ”€β”€ icon-active.png     # Menu bar icon (active)
β”‚       β”œβ”€β”€ icon-inactive.png   # Menu bar icon (inactive)
β”‚       β”œβ”€β”€ icon-claude.png     # Claude Code service icon
β”‚       β”œβ”€β”€ icon-codex.png      # Codex service icon
β”‚       β”œβ”€β”€ icon-gemini.png     # Gemini service icon
β”‚       β”œβ”€β”€ icon-qwen.png       # Qwen service icon
β”‚       └── icon-zai.png        # Z.AI GLM service icon
β”œβ”€β”€ Package.swift               # Swift Package Manager config
β”œβ”€β”€ Info.plist                  # macOS app metadata
β”œβ”€β”€ build.sh                    # Resource bundling script
β”œβ”€β”€ create-app-bundle.sh        # App bundle creation script
└── Makefile                    # Build automation

Key Components

  • AppDelegate: Manages the menu bar item and settings window lifecycle
  • ServerManager: Controls the cli-proxy-api server process and OAuth authentication
  • SettingsView: SwiftUI interface with native macOS design
  • AuthStatus: Monitors ~/.cli-proxy-api/ for authentication files
  • File Monitoring: Real-time updates when auth files are added/removed

Credits

VibeProxy is built on top of CLIProxyAPIPlus, an excellent unified proxy server for AI services with support for third-party providers.

Special thanks to the CLIProxyAPIPlus project for providing the core functionality that makes VibeProxy possible.

License

MIT License - see LICENSE file for details

Support


Β© 2025 Automaze, Ltd. All rights reserved.

About

Native macOS menu bar app to use your Claude Code & ChatGPT subscriptions with AI coding tools - no API keys needed

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages