skills$openclaw/antigravity-image
houzl34167.1k

by houzl3416

antigravity-image – OpenClaw Skill

antigravity-image is an OpenClaw Skills integration for coding workflows. Generate images using the internal Antigravity Sandbox API (Gemini 3 Pro Image). Supports text-to-image generation via internal Google endpoints.

7.1k stars7.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameantigravity-image
descriptionGenerate images using the internal Antigravity Sandbox API (Gemini 3 Pro Image). Supports text-to-image generation via internal Google endpoints. OpenClaw Skills integration.
ownerhouzl3416
repositoryhouzl3416/antigravity-image
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @houzl3416/antigravity-image
last updatedFeb 7, 2026

Maintainer

houzl3416

houzl3416

Maintains antigravity-image in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
references
internal-api.md
1.3 KB
scripts
generate_image_antigravity.py
3.3 KB
_meta.json
289 B
SKILL.md
1.5 KB
SKILL.md

name: antigravity-image description: Generate images using the internal Antigravity Sandbox API (Gemini 3 Pro Image). Supports text-to-image generation via internal Google endpoints. metadata: { "openclaw": { "emoji": "🎨", "requires": { "bins": ["python3"] }, }, }

Antigravity Image Generation

Use the internal Google Antigravity sandbox to generate images with the gemini-3-pro-image model. This skill bypasses standard API restrictions by impersonating the VS Code plugin environment.

Usage

Generate an image from a prompt:

python3 {baseDir}/scripts/generate_image_antigravity.py --prompt "A futuristic cityscape with flying cars" --filename "city.png"

How it works

  1. Authentication: Automatically retrieves OAuth tokens and Project ID from the local auth-profiles.json.
  2. Impersonation: Uses the specific antigravity User-Agent and internal sandbox headers.
  3. Reliability: Includes automatic retry logic for 503 Service Unavailable errors.

Parameters

  • --prompt / -p: Text description of the image to generate.
  • --filename / -f: Path where the resulting PNG will be saved.

Notes

  • The script prints a MEDIA: path which OpenClaw uses to automatically upload the image to the chat channel.
  • Requires an active Antigravity session/login in the environment.
  • See internal-api.md for technical details on the impersonated endpoint.
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install antigravity-image?

Run openclaw add @houzl3416/antigravity-image in your terminal. This installs antigravity-image into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/houzl3416/antigravity-image. Review commits and README documentation before installing.