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 페이지를 검토하고 설치를 진행할 수 있습니다.
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.
SOC 직업 분류 기준
| 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.