🌎 Choose your language: English | Português | Español | Русский | 中文
The unified master core that organizes and manages the architectures, blueprints, and terminal configurations of the Antigravity ecosystem.
- Ecosystem Core: Blueprint center for terminal-based Google AI and agent architectures.
- Termux Integration: Fully compatible with Android Termux terminal setups.
- Docs Library: Archive of detailed PDK manifestos, usage guides, and design blueprints in
/docs.
git clone https://github.com/opassoca/antigravity.git
cd antigravity
./install.shTo run your original commands directly from any directory without manual proxy startup, append these functions to your ~/.bashrc or ~/.zshrc:
# Auto-start proxy for Claude Code
claude() {
if ! curl -s -o /dev/null -w "%{http_code}" "http://127.0.0.1:8084/v1internal/" 2>/dev/null | grep -q "200"; then
python ~/free-antigravity/free-antigravity.py >/dev/null 2>&1 &
sleep 1
fi
CLAUDE_CODE_URL="http://127.0.0.1:8084" command claude "$@"
}
# Alias for Gemini CLI using the wrapper
alias agy="~/bin/free-antigravity"Run source ~/.bashrc to apply the changes.
Developed with 💙 by Paçoca (@opassoca).