Source profileQuality 72/100Review permissions

sonichi/sutando/skills/image-generation/SKILL.md

image-generation

Generate and edit images using Gemini Flash Image, and generate videos using Veo. Supports text-to-image, image editing, text-to-video, and image-to-video.

Source repository stars
359
Declared platforms
0
Static risk flags
1
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Generate images and videos using Gemini APIs.

Best for

  • "Generate a hero image for my project"
  • "Create a short video of a sunset timelapse"
  • "Edit this photo to remove the background"

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/sonichi/sutando --skill "skills/image-generation"
Safe inspection promptEditorial

Inspect the Agent Skill "image-generation" from https://github.com/sonichi/sutando/blob/6a8f0fccd32e5aa620a3572c8885544f144bb6fe/skills/image-generation/SKILL.md at commit 6a8f0fccd32e5aa620a3572c8885544f144bb6fe. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Usage

    Review the “Usage” section in the pinned source before continuing.

    Review and apply the “Usage” source section.
  2. 02

    Image Generation (Gemini Flash Image)

    Text-to-image: Generate images from text descriptions

    Text-to-image: Generate images from text descriptionsImage editing: Modify existing images with natural languageBackground replacement: Change or enhance backgrounds
  3. 03

    Video Generation (Veo)

    Text-to-video: Generate video clips from text prompts

    Text-to-video: Generate video clips from text promptsImage-to-video: Animate a reference image with a prompt- Text-to-video: Generate video clips from text prompts - Image-to-video: Animate a reference image with a prompt
  4. 04

    When to Use

    "Generate a hero image for my project"

    "Generate a hero image for my project""Create a short video of a sunset timelapse""Edit this photo to remove the background"

Permission review

Static risk signals and limitations

Runs scripts

medium · line 28

The documentation asks the agent to run terminal commands or scripts.

python3 "$SKILL_DIR/scripts/generate.py" --prompt "A futuristic city skyline at night"

Runs scripts

medium · line 31

The documentation asks the agent to run terminal commands or scripts.

python3 "$SKILL_DIR/scripts/generate.py" --input photo.jpg --prompt "Add dramatic clouds"

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score72/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars359SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
sonichi/sutando
Skill path
skills/image-generation/SKILL.md
Commit
6a8f0fccd32e5aa620a3572c8885544f144bb6fe
License
MIT
Collected
2026-07-28
Default branch
main
View the original SKILL.md

Media Generation

Generate images and videos using Gemini APIs.

Image Generation (Gemini Flash Image)

  • Text-to-image: Generate images from text descriptions
  • Image editing: Modify existing images with natural language
  • Background replacement: Change or enhance backgrounds
  • Hero/banner creation: Create branded images with text overlays
  • Style transfer: Apply artistic styles to photos

Video Generation (Veo)

  • Text-to-video: Generate video clips from text prompts
  • Image-to-video: Animate a reference image with a prompt

When to Use

  • "Generate a hero image for my project"
  • "Create a short video of a sunset timelapse"
  • "Edit this photo to remove the background"
  • "Make a video from this image"
  • "Generate a logo with a dark theme"

Usage

# Text-to-image
python3 "$SKILL_DIR/scripts/generate.py" --prompt "A futuristic city skyline at night"

# Edit an existing image
python3 "$SKILL_DIR/scripts/generate.py" --input photo.jpg --prompt "Add dramatic clouds"

# Specify output path
python3 "$SKILL_DIR/scripts/generate.py" --prompt "A cute robot mascot" --output mascot.png

# Text-to-video
python3 "$SKILL_DIR/scripts/generate.py" --video --prompt "A timelapse of a city at sunset"

# Video with portrait aspect ratio
python3 "$SKILL_DIR/scripts/generate.py" --video --prompt "Ocean waves" --aspect 9:16

# Image-to-video (animate a reference image)
python3 "$SKILL_DIR/scripts/generate.py" --video --input scene.jpg --prompt "Animate this scene with gentle wind"

# Specify output
python3 "$SKILL_DIR/scripts/generate.py" --video --prompt "Dancing robot" --output robot.mp4

Options

FlagDescriptionDefault
--promptText prompt describing what to generate(required)
--inputInput image path(s) for editing/referenceNone
--outputOutput file pathgenerated-{timestamp}.png or .mp4
--modelGemini model to usegemini-2.5-flash-image / veo-3.1-generate-preview
--videoGenerate video instead of imagefalse
--aspectVideo aspect ratio16:9
--qualityJPEG quality (1-100, images only)90

Requirements

  • google-genai Python package (pip3 install google-genai)
  • GEMINI_API_KEY in .env or environment
  • Pillow (pip3 install Pillow) — for image generation/editing

Notes

  • Video generation takes 1-3 minutes (polling every 10s)
  • Generated videos are stored on Google servers for 2 days
  • Gemini may refuse some prompts (people's faces, copyrighted characters, etc.)
  • For image editing, be explicit: "keep the subject unchanged, only modify the background"
  • Image output format inferred from extension (.jpg, .png, .webp)
  • Maximum input image size: ~20MB

Alternatives

Compare before choosing