ワンクリックで
gemini-imagegen
// Generate AI images using Google Gemini via OpenRouter. Use when the user wants to create images, generate pictures, make AI art, edit images, or transform photos. Supports both text-to-image and image-to-image generation.
// Generate AI images using Google Gemini via OpenRouter. Use when the user wants to create images, generate pictures, make AI art, edit images, or transform photos. Supports both text-to-image and image-to-image generation.
Synthesize research reports into 3-5 concrete, ranked artist concepts for the AI artist factory. Use this skill after all research skills have produced their reports (Phase 2), when you need to generate artist concepts from data, or when the manager requests new concept ideas. Every idea must be grounded in research data, not personal taste.
Turn a chosen artist concept into a complete, production-ready concept bible at docs/concept-bible.md. Use this skill after the brainstorm skill has produced concepts and one has been selected (Phase 2 completion), or when the manager needs an updated concept bible. The bible must be detailed enough that any production skill can create on-brand content without additional guidance.
Create voice style descriptions for ElevenLabs. Use when the user wants to describe a voice, create a voice profile, or generate voice style text. Outputs exactly 300 characters describing voice characteristics.
Write all text content for the AI artist — social captions, bios, press releases, cryptic messages, interviews, fan responses. Use this skill when the manager delegates writing, when creating captions for posts, when drafting press releases, or when crafting the artist's voice in any text form. Always read docs/concept-bible.md first for voice and tone.
Create all visual assets for the AI artist — artist photos, album covers, social content, event documentation, studio glimpses. Use this skill when the manager delegates visual work, when creating artwork for releases or social posts, or when generating event photos for the tour hack. Requires the imagegen skill. Always read docs/concept-bible.md first for visual identity.
Orchestrate all production skills — plan sprints, delegate tasks, track status, review outputs. Use this skill when starting Phase 4, when asking "what should we do next", when planning a release or event campaign, or when any coordination between production skills is needed. This is the primary entry point for all production work.
| name | gemini-imagegen |
| description | Generate AI images using Google Gemini via OpenRouter. Use when the user wants to create images, generate pictures, make AI art, edit images, or transform photos. Supports both text-to-image and image-to-image generation. |
Generate high-quality AI images using Google's Gemini model via OpenRouter API.
Before using this skill, ensure:
Python packages are installed:
pip install openai python-dotenv
API key is set:
export OPENROUTER_API_KEY="your-openrouter-api-key"
Get your key at: https://openrouter.ai/keys
Generate an image from a text description:
python scripts/generate_image.py --prompt "A serene Japanese garden with cherry blossoms" --output garden.png
Transform an existing image:
python scripts/generate_image.py --input photo.jpg --prompt "Transform into a watercolor painting style" --output watercolor.png
| Argument | Short | Required | Description |
|---|---|---|---|
--prompt | -p | Yes | Text description of the desired image |
--output | -o | No | Output file path (default: generated_image.png) |
--input | -i | No | Input image for image-to-image mode |
--model | -m | No | Model ID (default: google/gemini-3-pro-image-preview) |
For best results:
Portrait:
A portrait of an elderly fisherman with weathered skin and kind eyes,
wearing a knit cap, soft natural lighting, shallow depth of field,
photorealistic style
Landscape:
A misty mountain valley at dawn, pine forests in the foreground,
snow-capped peaks in the distance, rays of sunlight breaking through
clouds, epic cinematic composition
Abstract:
Abstract fluid art with deep ocean blues and metallic gold,
swirling patterns resembling galaxies, high contrast,
luxurious and elegant mood
"OPENROUTER_API_KEY not set"
export OPENROUTER_API_KEY="your-key""openai package not installed"
pip install openai"No images found in response"
The script will: