Skip to content

v1.2.0

Choose a tag to compare

@github-actions github-actions released this 01 Sep 21:00
· 61 commits to main since this release

⚡ Antigravity Proxy v1.2.0 — Context Compactor, Live Google Search & Windows 1-Click Installers

We are excited to release Antigravity Proxy v1.2.0! This major update introduces our intelligent Context Compactor Engine, official Claude Code /compact interception, native Google Grounding live web search, 1-click installers for Windows, and comprehensive standalone package builds for all major platforms.


🌟 What's New in v1.2.0

🗜 1. Context Compactor & Auto-Summarization Engine

  • 80% to 98% Token Reduction: Automatically monitors session token counts and compresses large conversation histories down into a clean ~1,500-token structured context, allowing coding sessions to run indefinitely without hitting Google's hard limit of 1,048,576 tokens (Error 400 Context Overflow).
  • Official Claude Code /compact Interception: Intercepts Claude Code's manual /compact and /autocompact commands, routing summarization to gemini-3.1-flash-lite using the official 9-section summarization schema while preserving 100% of your primary model quota.
  • Dynamic Dashboard Controls: Interactive threshold slider (30k–200k tokens) and configurable uncompressed message preservation (Preserve Last Messages: 4–16 msgs) directly from the Web UI.

🌐 2. Live Web Search & Google Grounding (Vertex AI)

  • Native Google Search: Empowers coding assistants (like Claude Code) with real-time web search capabilities via Google Grounding without requiring paid third-party search API keys.
  • Concurrent Multi-Engine Fallback: Automatically queries DuckDuckGo, Bing, and Brave in parallel with domain filtering (site:), URL deduplication, and citation generation.

⚡ 3. Intelligent Background Task Optimization

  • Quota Preservation: Automatically detects non-interactive background tasks (title generation, context compaction, checkpoints) and transparently routes them to gemini-3.1-flash-lite with a 0-thinking budget, saving your primary reasoning model quota.

🛡 4. Zero-Delay Recovery (Retry-After: 2)

  • Prevents Claude Code from locking up in 4-minute exponential backoff retry loops during transient upstream errors by injecting standard Retry-After: 2 headers for instantaneous 2-second failovers across pool accounts.

💻 5. One-Click Installers & Cross-Platform Binaries

  • Added instant 1-click installer scripts for Windows PowerShell (install.ps1) and Windows Command Prompt (install.cmd), automatically setting up the executable in the user's system PATH.
  • Full matrix build support: Windows x64, Linux x64/ARM64, macOS ARM64 (Apple Silicon), and macOS Intel (x86_64).
  • Standalone Python Wheels (.whl) and Source Distributions (.tar.gz) published alongside every release.

🧹 6. Minimalist Logging & Protocol 1.1.23

  • Updated User-Agent to the official Antigravity CLI 1.1.23 protocol (cl=974125021).
  • Stripped console clutter and emojis from standard user logs; refined the --debug flag for full technical developer tracing.
  • Updated Cloudflare Edge Worker (cloudflare/worker.js) to support the 1.1.23 protocol and fast error recovery.

📦 Download Options

⚡ 1-Click Fast Install (No Python Required)

🔹 Linux & macOS (Bash):

curl -fsSL https://raw.githubusercontent.com/kqlio67/agy-proxy/main/install.sh | bash

🔹 Windows (PowerShell):

irm https://raw.githubusercontent.com/kqlio67/agy-proxy/main/install.ps1 | iex

🔹 Windows (Command Prompt / CMD):

curl -fsSL https://raw.githubusercontent.com/kqlio67/agy-proxy/main/install.cmd -o install.cmd && install.cmd && del install.cmd

🖥 Standalone Executables (Pre-built Binaries)

Platform Architecture Archive
Windows x64 (amd64) agy-proxy-windows-amd64.zip
Linux x64 (amd64) agy-proxy-linux-amd64.tar.gz
Linux ARM64 ARM64 (Raspberry Pi, VPS) agy-proxy-linux-arm64.tar.gz
macOS Apple Silicon (M1/M2/M3/M4) agy-proxy-darwin-arm64.tar.gz
macOS Intel (x86_64) agy-proxy-darwin-amd64.tar.gz

🐍 Python Package (PyPI / Pip)

pip install agy-proxy==1.2.0
  • Python Wheel: agy_proxy-1.2.0-py3-none-any.whl
  • Source Archive: agy_proxy-1.2.0.tar.gz

🐳 Docker Container (GHCR)

docker pull ghcr.io/kqlio67/agy-proxy:v1.2.0
docker pull ghcr.io/kqlio67/agy-proxy:latest

🔒 Verification

All release assets include verifiable cryptographic SHA256 hashes inside SHA256SUMS.txt.

sha256sum -c SHA256SUMS.txt

📋 Full Commits Changelog

  • e999396 chore(cli): refine clear separation between standard minimalist user mode and full --debug developer mode
  • 3fb77a6 feat(installer): add 1-click Windows PowerShell (install.ps1) and CMD (install.cmd) installers
  • f2bb168 chore(release): bump version to v1.2.0 and add python wheels, intel mac, sha256 checksums to release workflow
  • dab1492 fix(cloudflare): update worker User-Agent to 1.1.23 protocol and add Retry-After header
  • 6be8944 docs(readme): add comprehensive documentation for Context Compactor, Google Grounding search, and background routing
  • 0cc91a5 chore(logging): strip all remaining emojis from logs, banners, and compactor status
  • 35dc89f chore(logging): remove lightning emoji from request and cache logs
  • 896acc8 perf(cache): memoize unsupported Free Tier API keys to prevent redundant cachedContents 429 calls
  • 972fa60 refactor(compactor): make estimate_message_tokens fully unified, null-safe, and comprehensive
  • d159c70 fix(openai): initialize model and req_id in stream_openai_chat
  • a43719d chore(logging): silence uvicorn polling access logs and httpx spam in console
  • f2e0c8e feat: add context auto-compactor engine, official Claude /compact interception, and UI controls
  • e661bac feat(core): Antigravity CLI 1.1.23 integration, background model optimization, native Google Search & multi-account stability
  • 0ae0228 feat(search): add built-in live WebSearch engine and launcher danger mode prompt