Back to catalogPending
antigravity-claude-proxy
Proxy that exposes Antigravity provided claude / gemini models, so we can use them in Claude Code and OpenClaw (Clawdbot)
2,463stars
317forks
JavaScript
Added 1/5/2026
CLI Toolsantigravityclaudeclaude-aiclaude-codeclawdbotgeminigemini-cliopenclawproxy
Installation
# Add to your Claude Code skills
git clone https://github.com/badrisnarayanan/antigravity-claude-proxyAntigravity Claude Proxy
A proxy server that exposes an Anthropic-compatible API backed by Antigravity's Cloud Code, letting you use Claude and Gemini models with Claude Code CLI and OpenClaw / ClawdBot.

How It Works
┌──────────────────┐ ┌─────────────────────┐ ┌────────────────────────────┐
│ Claude Code │────▶│ This Proxy Server │────▶│ Antigravity Cloud Code │
│ (Anthropic │ │ (Anthropic → Google│ │ (daily-cloudcode-pa. │
│ API format) │ │ Generative AI) │ │ sandbox.googleapis.com) │
└──────────────────┘ └─────────────────────┘ └────────────────────────────┘
- Receives requests in Anthropic Messages API format
- Uses OAuth tokens from added Google accounts (or Antigravity's local database)
- Transforms to Google Generative AI format with Cloud Code wrapping
- Sends to Antigravity's Cloud Code API
- Converts responses back to Anthropic format with full thinking/streaming support
Prerequisites
- Node.js 18 or later
- Antigravity installed (for single-account mode) OR Google account(s) for multi-account mode
Installation
Option 1: npm (Recommended)
# Run directly with npx (no install needed)
npx antigravity-claude-proxy@latest start
# Or install globally
npm install -g antigravity-claude-proxy@latest
antigravity-claude-proxy start
Option 2: Clone Repository
git clone https://github.com/badri-s2001/antigravity-claude-proxy.git
cd antigravity-claude-proxy
npm install
npm start
Quick Start
1. Start the Proxy Server
# If installed via npm
antigravity-claude-proxy start
# If using npx
npx antigravity-claude-proxy@latest start
# If cloned locally
npm start
The server runs on http://localhost:8080 by default.
2. Link Account(s)
Choose one of the following methods to authorize the proxy:
Method A: Web Dashboard (Recommended)
- With the proxy running, open
http://localhost:8080in your browser. - Navigate to the Accounts tab and click Add Account.
- Complete the Google OAuth authorization in the popup window.
Headless/Remote Servers: If running on a server without a browser, the WebUI supports a "Manual Authorization" mode. After clicking "Add Account", you can copy the OAuth URL, complete authorization on your local machine, and paste the authorization code back.
Method B: CLI (Desktop or Headless)
If you prefer the terminal or are on a remote server:
# Desktop (opens b...