gemini-image-generator
Generate images using Google Gemini with customizable options
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate images using Google Gemini with customizable options
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Simplified Technical English (ASD-STE100) adapted for software engineering. Use whenever writing or rewriting technical prose for other people — documentation, READMEs, runbooks, PR descriptions, commit bodies, release notes, incident updates, Slack messages, status reports — and whenever explaining anything technical, even if the user doesn't name a format. Also use when asked to simplify, tighten, clarify, or "plain English" existing technical text. Not for essays or blog posts — writing-style covers those.
Write in Steven's voice—pragmatic, curious, pedagogical. Opens with measurable payoffs, builds mental models from first principles, uses worked examples, and handles uncertainty honestly. Use for essays, blog posts, and technical articles.
Run an extremely strict maintainability review for abstraction quality, giant files, and spaghetti-condition growth. Use for an extreme code quality review, deep code quality audit, or especially harsh maintainability review.
Patterns for AWS Lambda, DynamoDB, SQS, and Secrets Manager. Use when working on serverless AWS projects.
| name | gemini-image-generator |
| description | Generate images using Google Gemini with customizable options |
Use this skill to generate images using Google Gemini's image generation model. The skill supports:
The API key must be set via the GEMINI_API_KEY environment variable.
--prompt (required): The text prompt describing the image to generate--output (required): Output file path for the generated image--reference: Optional reference image for style/content guidance--size: Image size - "1K", "2K", or "4K" (default: 4K)./scripts/generate.py --prompt "A serene mountain landscape at sunset" --output images/landscape.png
./scripts/generate.py --prompt "Same character but wearing a party hat" --reference images/character.png --output images/party.png
./scripts/generate.py --prompt "Abstract art" --output art.png --size 2K
Set your API key:
export GEMINI_API_KEY="your-api-key-here"
Requires uv - dependencies are managed inline via PEP 723.