Help us improve
Share bugs, ideas, or general feedback.
From mays
Generates images via Google Gemini's API from text prompts or reference images, with configurable output size (1K/2K/4K). Useful for creating or editing visuals directly from prompts.
npx claudepluginhub stevenmays/dotfiles --plugin maysHow this skill is triggered — by the user, by Claude, or both
Slash command
/mays:gemini-image-generatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to generate images using Google Gemini's image generation model. The skill supports:
Generates and edits images via the Gemini API with configurable resolution (1K-4K) and aspect ratios. Useful for text-to-image, image editing, style transfers, logos, stickers, or product mockups.
Generates AI images via Gemini API for artwork, photos, banners, logos, thumbnails. Configures models and aspect ratios like 16:9 or 1:1. Requires GEMINI_API_KEY and Python 3.
Generates and edits images using Google's Gemini Nano Banana Pro model (gemini-3-pro-image-preview) via bash API calls. Supports logos, product mockups, photo edits; requires GEMINI_API_KEY.
Share bugs, ideas, or general feedback.
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.