# Send Gemini Image Simple 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gemini-image-simple",
    "name": "Gemini Image Simple",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Cluka-399/gemini-image-simple",
    "canonicalUrl": "https://clawhub.ai/Cluka-399/gemini-image-simple",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/gemini-image-simple",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gemini-image-simple",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/generate.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "gemini-image-simple",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T14:16:33.180Z",
      "expiresAt": "2026-05-10T14:16:33.180Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gemini-image-simple",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gemini-image-simple",
        "contentDisposition": "attachment; filename=\"gemini-image-simple-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gemini-image-simple"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gemini-image-simple"
    },
    "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-simple",
    "downloadUrl": "https://openagent3.xyz/downloads/gemini-image-simple",
    "agentUrl": "https://openagent3.xyz/skills/gemini-image-simple/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gemini-image-simple/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gemini-image-simple/agent.md"
  }
}
```
## Documentation

### Gemini Image Simple

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) - the highest quality image generation model.

### Why This Skill

FeatureThis SkillOthers (nano-banana-pro, etc.)DependenciesNone (stdlib only)google-genai, pillow, etc.Requires pip/uv❌ No✅ YesWorks on Fly.io free✅ Yes❌ FailsWorks in containers✅ Yes❌ Often failsImage generation✅ Full✅ FullImage editing✅ Yes✅ YesSetup complexityJust set API keyInstall packages first

Bottom line: This skill works anywhere Python 3 exists. No package managers, no virtual environments, no permission issues.

### Quick Start

# Generate
python3 /data/clawd/skills/gemini-image-simple/scripts/generate.py "A cat wearing a tiny hat" cat.png

# Edit existing image  
python3 /data/clawd/skills/gemini-image-simple/scripts/generate.py "Make it sunset lighting" edited.png --input original.png

### Generate new image

python3 {baseDir}/scripts/generate.py "your prompt" output.png

### Edit existing image

python3 {baseDir}/scripts/generate.py "edit instructions" output.png --input source.png

Supported input formats: PNG, JPG, JPEG, GIF, WEBP

### Environment

Set GEMINI_API_KEY environment variable. Get one at https://aistudio.google.com/apikey

### How It Works

Uses Nano Banana Pro (nano-banana-pro-preview) - Google's highest quality image generation model:

Pure urllib.request for HTTP (no requests library)
Pure json for parsing (stdlib)
Pure base64 for encoding (stdlib)

That's it. No external packages. Works on any Python 3.10+ installation.

### Model

Currently using: nano-banana-pro-preview (also known as Gemini 3 Pro Image)

Other available models (can be changed in generate.py if needed):

gemini-3-pro-image-preview - Same as Nano Banana Pro
imagen-4.0-ultra-generate-001 - Imagen 4.0 Ultra
imagen-4.0-generate-001 - Imagen 4.0
gemini-2.5-flash-image - Gemini 2.5 Flash with image gen

### Examples

# Landscape
python3 {baseDir}/scripts/generate.py "Misty mountains at sunrise, photorealistic" mountains.png

# Product shot
python3 {baseDir}/scripts/generate.py "Minimalist product photo of a coffee cup, white background" coffee.png

# Edit: change style
python3 {baseDir}/scripts/generate.py "Convert to watercolor painting style" watercolor.png --input photo.jpg

# Edit: add element
python3 {baseDir}/scripts/generate.py "Add a rainbow in the sky" rainbow.png --input landscape.png
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Cluka-399
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T14:16:33.180Z
- Expires at: 2026-05-10T14:16:33.180Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gemini-image-simple)
- [Send to Agent page](https://openagent3.xyz/skills/gemini-image-simple/agent)
- [JSON manifest](https://openagent3.xyz/skills/gemini-image-simple/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gemini-image-simple/agent.md)
- [Download page](https://openagent3.xyz/downloads/gemini-image-simple)