# Send Gemini Image Gen to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gemini-image-gen",
    "name": "Gemini Image Gen",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/IISweetHeartII/gemini-image-gen",
    "canonicalUrl": "https://clawhub.ai/IISweetHeartII/gemini-image-gen",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/gemini-image-gen",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gemini-image-gen",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "HEARTBEAT.md",
      "INSTALL.md",
      "README.md",
      "SKILL.md",
      "package.json",
      "scripts/gen.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gemini-image-gen"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gemini-image-gen",
    "downloadUrl": "https://openagent3.xyz/downloads/gemini-image-gen",
    "agentUrl": "https://openagent3.xyz/skills/gemini-image-gen/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gemini-image-gen/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gemini-image-gen/agent.md"
  }
}
```
## Documentation

### Gemini Image Gen

Generate and edit images via the Google Gemini API using pure Python stdlib. Supports Gemini native generation + editing, Imagen 3 generation, batch runs, and an HTML gallery output.

### Quick Start

export GEMINI_API_KEY="your-key-here"

# Default: Gemini native, 4 random prompts
python3 scripts/gen.py

# Custom prompt
python3 scripts/gen.py --prompt "a cyberpunk cat riding a neon motorcycle through Tokyo at night"

# Imagen 3 engine
python3 scripts/gen.py --engine imagen --count 4 --aspect 16:9

# Edit an existing image (Gemini engine only)
python3 scripts/gen.py --edit path/to/image.png --prompt "change the background to a sunset beach"

# Use a style preset
python3 scripts/gen.py --style watercolor --prompt "floating islands above a calm sea"

# List available styles
python3 scripts/gen.py --styles

### Style Presets

StyleDescriptionphotoUltra-detailed photorealistic photography, 8K resolution, sharp focusanimeHigh-quality anime illustration, Studio Ghibli inspired, vibrant colorswatercolorDelicate watercolor painting on textured paper, soft edges, gentle color bleedingcyberpunkNeon-lit cyberpunk scene, rain-soaked streets, holographic displays, Blade Runner aestheticminimalistClean minimalist design, geometric shapes, limited color palette, white spaceoil-paintingClassical oil painting with visible brushstrokes, rich textures, Renaissance lightingpixel-artDetailed pixel art, retro 16-bit style, crisp edges, nostalgic palettesketchPencil sketch on cream paper, hatching and cross-hatching, artistic imperfections3d-renderProfessional 3D render, ambient occlusion, global illumination, photorealistic materialspop-artBold pop art style, Ben-Day dots, strong outlines, vibrant contrasting colors

### Full CLI Reference

FlagDefaultDescription--prompt(random)Text prompt. Omit for random creative prompts--count4Number of images to generate--enginegeminiEngine: gemini (native, supports edit) or imagen (Imagen 3)--model(auto)Model override. Default: gemini-2.5-flash-image or imagen-3.0-generate-002--editPath to input image for editing (Gemini engine only)--aspect1:1Aspect ratio for Imagen: 1:1, 16:9, 9:16, 4:3, 3:4--out-dir(auto)Output directory (default is a timestamped folder)--styleStyle preset to prepend to the prompt--stylesList available style presets and exit

### Python Example

import subprocess

subprocess.run(
    [
        "python3",
        "scripts/gen.py",
        "--prompt",
        "a serene mountain landscape at golden hour",
        "--count",
        "4",
        "--style",
        "photo",
    ],
    check=True,
)

### Troubleshooting

Missing API key: set GEMINI_API_KEY in your environment and retry.
Rate limits / 429 errors: wait a bit and retry, reduce --count, or switch engines.
Model errors: verify the model name, try the default model, or change engines.

### Integration with Other Skills

AgentGram — Share your generated images on the AI agent social network! Create visual content and post it to your AgentGram feed.
agent-selfie — Focused on AI agent avatars and visual identity. Uses the same Gemini API key for personality-driven self-portraits.
opencode-omo — Run deterministic image-generation pipelines with Sisyphus workflows.

### Changelog

v1.3.1: Added workflow integration guidance for opencode-omo.
v1.1.0: Added style presets, --style and --styles flags, expanded documentation.
v1.0.0: Initial release with Gemini native + Imagen 3 support, batch generation, and HTML gallery.

### Repository

https://github.com/IISweetHeartII/gemini-image-gen
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: IISweetHeartII
- Version: 1.3.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gemini-image-gen)
- [Send to Agent page](https://openagent3.xyz/skills/gemini-image-gen/agent)
- [JSON manifest](https://openagent3.xyz/skills/gemini-image-gen/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gemini-image-gen/agent.md)
- [Download page](https://openagent3.xyz/downloads/gemini-image-gen)