Anti-Provider is a lightweight, zero-dependency Node.js bridge that wraps your authenticated Google Cloud Code Assist ("Antigravity") session behind a standard OpenAI-compatible REST API.
This allows you to use powerful Google-internal AI models (like Gemini 3 Flash, Claude Opus, and Claude Sonnet) directly inside your favorite AI coding environments—such as Cursor, Continue, Aider, Claude Code, or any other tool that accepts an OpenAI base URL and API key.
Follow these steps to generate your local API key and start using the models immediately.
Clone the repository. Since it has zero external dependencies, no npm install is required!
git clone https://github.com/PTBYSR/anti-provider.git
cd anti-providerFirst, authenticate your Google account via OAuth 2.0 PKCE:
npm startWhen prompted in the chat interface, type /login. This will open your browser to log in with your Google account. Your session token is saved securely to a local auth.json. Once authenticated, you can exit the chat (Ctrl+C).
Launch the OpenAI-compatible proxy server:
npm run serverOn the first run, the server will automatically generate a unique API Key (starting with ap-) and print it to your terminal. It will also bind to the first available port (default 3737).
You can now point any OpenAI-compatible client to your local server!
- Base URL:
http://localhost:3737/v1 - API Key:
ap-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx - Available Models:
gemini-3-flash,claude-opus-4-6-thinking,claude-sonnet-4-6,gpt-oss-120b-medium, and more.
Example for Cursor / Continue:
models:
- name: Anti-Provider
provider: openai
model: auto
apiBase: http://localhost:3737/v1
apiKey: ap-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxUse the interactive terminal chat as a gauge to verify your account login is working correctly:
npm startIf your current account gets rate-limited by the API, you can authorize a new account instantly from within the chat:
You: /loginNeed to quickly see your API key or change your default model?
npm run configWelcome to the Antigravity Configuration CLI!
--- Antigravity Configuration Menu ---
1. View architecture status (Gmail, Project, Model)
2. Change default model
3. Exit
--------------------------------------
Select an option (1-3): 1
- Zero Dependencies: Built entirely using Node.js native modules (
http,crypto,fs). - Endpoint Cascading: Automatically routes requests across Google's
daily,autopush, andprodendpoints to maximize uptime and bypass sandbox limitations. - Auto Token Refresh: Silently refreshes your OAuth token in the background when it expires.
- Streaming & Buffering: Fully supports both SSE streaming (
stream: true) and buffered JSON responses for maximum client compatibility. - Constant-Time Validation: API key validation uses
crypto.timingSafeEqualto prevent timing attacks. - Built-in Chat Client: Includes a sleek, dark-mode
test-chat.htmlyou can open in your browser to test the API directly.
When you run the server, it creates a config.json file. You can modify this to set your default model or view your generated API key manually.
{
"model": "gemini-3-flash",
"apiKey": "ap-38137c347030070fae20b6a84c17f2b33f6d47496a9c034f"
}The server exposes the following endpoints on http://localhost:3737:
GET /v1/models- Lists all available Antigravity models in OpenAI format.POST /v1/chat/completions- The main chat endpoint. Translates standard OpenAI JSON requests into the Antigravity format.GET /health- Simple health check to verify server status and authentication state.
If you want to use this with Anthropic-specific tools (like the claude CLI), note that claude expects the Anthropic /v1/messages format, not OpenAI. To use Anti-Provider with Claude Code, you will need to pass it through a translation proxy (like FreeLLMAPI) or use an OpenAI-compatible agent instead.
Anti-Provider is an independent, unofficial developer tool. This project is provided "as is", without warranty of any kind.
- This tool acts solely as a local HTTP proxy wrapper around your own authenticated sessions.
- It does not distribute, host, or claim ownership over any Google APIs, endpoints, models, or internal Intellectual Property (IP).
- All requests are made using the user's explicit consent and OAuth 2.0 tokens.
- The developers of Anti-Provider are not affiliated, associated, authorized, endorsed by, or in any way officially connected with Google LLC or Alphabet Inc.
- The terms "Cloud Code", "Antigravity", "Gemini", and related names are trademarks of their respective owners.
Users are solely responsible for ensuring their usage of this proxy complies with the Terms of Service of their respective Google Cloud / Google Workspace agreements.
