Seamlessly proxy Gemini & Claude • OpenAI-Compatible API • Privacy First
Fork of Antigravity Manager — auto-synced every 6 hours, with Supreme branding
If you find this project useful, please consider supporting the development:
| Platform | Installer | Status |
|---|---|---|
| Windows | ⬇️ EXE / MSI | ✅ Stable |
| macOS Apple Silicon | ⬇️ ARM64 DMG | ✅ Stable |
| macOS Intel | ⬇️ x64 DMG | ✅ Stable |
| Linux | ⬇️ AppImage / DEB / RPM | ✅ Stable |
All features come from upstream Antigravity Manager — we stay perfectly in sync.
- Real-time quota monitoring for all accounts (Gemini Pro, Flash, Claude, Imagen)
- Best account recommendation with one-click switching
- Active account snapshot with usage percentages
- OAuth 2.0 authorization (auto & manual modes)
- Multi-dimensional import (single token, JSON batch, legacy migration)
- 403 Forbidden detection with automatic skip
- OpenAI Format —
/v1/chat/completionscompatible with 99% of AI apps - Anthropic Format — Native
/v1/messagesfor Claude Code CLI - Gemini Format — Direct Google AI SDK support
- Millisecond-level automatic retry and silent account rotation on 429/401
- Series-based mapping (route GPT-4 requests to Gemini models)
- Regex-level custom model redirects
- Tiered routing by account tier (Ultra/Pro/Free)
- Silent background downgrading for CLI title generation tasks
- Image generation via OpenAI
sizeparameters or model name suffixes - Payloads up to 100MB for 4K image recognition
- Device fingerprint protection
- JA3/BoringSSL fingerprinting via rquest
- All data stays local — no telemetry
This fork automatically syncs with upstream every 6 hours via GitHub Actions.
┌─────────────┐ ┌──────────────┐ ┌─────────────────┐ ┌───────────────┐
│ Every 6h │────▶│ Check latest │────▶│ Checkout fresh │────▶│ Apply Supreme │
│ (cron) │ │ upstream │ │ upstream code │ │ branding │
└─────────────┘ └──────────────┘ └─────────────────┘ └───────┬───────┘
│
┌──────────────┐ ┌─────────────────┐ ┌───────▼───────┐
│ Publish │◀────│ Tag & push │◀────│ Clean OAuth │
│ release │ │ v1.1.X │ │ secrets │
└──────────────┘ └─────────────────┘ └───────────────┘
What gets preserved: Workflows, README, icons, branding
What gets synced: All source code, dependencies, configurations
See SYNC_WORKFLOW.md for technical details.
Download the installer for your platform from the releases page.
Go to Accounts tab → add your Gemini/Claude accounts via OAuth.
Go to API Proxy → click Start Service.
Claude Code / Claude CLI:
export ANTHROPIC_API_KEY="your-api-key"
export ANTHROPIC_BASE_URL="http://127.0.0.1:8888"
claudePython (OpenAI SDK):
import openai
client = openai.OpenAI(
api_key="your-api-key",
base_url="http://127.0.0.1:8888/v1"
)
response = client.chat.completions.create(
model="gemini-2.0-flash",
messages=[{"role": "user", "content": "Hello!"}]
)Any OpenAI-compatible client:
Base URL: http://127.0.0.1:8888/v1
API Key: your-api-key
# Clone
git clone https://github.com/ai-dev-2024/Antigravity-Manager-Supreme.git
cd Antigravity-Manager-Supreme
# Install dependencies
npm install
# Run in development
npm run tauri dev
# Build for production
npm run tauri build| Layer | Technology |
|---|---|
| Frontend | React 19 · TypeScript · Ant Design · @lobehub/ui · TailwindCSS |
| Backend | Rust · Axum · SQLite · rquest (JA3 fingerprinting) |
| Framework | Tauri v2 |
| CI/CD | GitHub Actions — 4-platform build matrix |
CC BY-NC-SA 4.0 — Non-Commercial Use Only
- ✅ Free for personal use
- ✅ Modifications allowed (share under same license)
- ❌ Commercial use prohibited
- 📋 Attribution required
Original by lbjlaq & Antigravity Team
Supreme Edition maintained by ai-dev-2024
Licensed under CC BY-NC-SA 4.0