Stats
Actions
Tags
From maxgent
AI image generation and editing. Use when users ask to generate, create, or draw images with AI, or edit and modify existing images.
How this skill is triggered — by the user, by Claude, or both
Slash command
/maxgent:image-genThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate or edit images via Maxgent FAL API proxy.
Generate or edit images via Maxgent FAL API proxy.
MAX_API_KEY environment variable (auto-injected by Max)fal-ai/nano-banana-profal-ai/nano-banana-pro/editbun skills/image-gen/image-gen.js \
--model MODEL --prompt "PROMPT" --aspect-ratio RATIO \
--num-images N --output-dir DIR \
[--input-image PATH] [--output-format FORMAT] \
[--seed N] [--guidance-scale X] [--steps N]
Parameters:
--model: auto (recommended), gpt-image-1.5, nano-banana-pro, flux-dev--prompt: image description or editing instruction--aspect-ratio: 1:1, 4:3, 3:4, 16:9, 9:16--num-images: number of images to generate (default 1)--output-dir: output directory — default to $MAX_PROJECT_PATH (the user's project root)--input-image: optional, for image editing mode--output-format: png, jpg, webp (default png)--seed: random seed for reproducibility--guidance-scale: guidance scale for supported models--steps: number of inference steps for supported models# Default routing, text-to-image
bun skills/image-gen/image-gen.js --model auto --prompt "a cat under the starry sky" --aspect-ratio "1:1" --output-dir "$MAX_PROJECT_PATH"
# Specify model
bun skills/image-gen/image-gen.js --model gpt-image-1.5 --prompt "modern building facade, cinematic" --aspect-ratio "16:9" --num-images 2 --output-dir "$MAX_PROJECT_PATH"
# Image editing
bun skills/image-gen/image-gen.js --model auto --prompt "change background to a beach at sunset" --aspect-ratio "1:1" --output-dir "$MAX_PROJECT_PATH" --input-image "/path/to/input.jpg"
MAX_API_KEY exists.$MAX_PROJECT_PATH.npx claudepluginhub maxgent-ai/maxgent-plugin --plugin maxgentCreates, edits, and verifies skills using a test-driven development approach with pressure scenarios and subagents.