Generate or edit images using AI models (FLUX, Gemini). Use for general-purpose image generation including photos, illustrations, artwork, visual assets, concept art, and any image that isn't a technical diagram or schematic. For flowcharts, circuits, pathways, and technical diagrams, use the scientific-schematics skill instead.
Generate or edit a high-quality image with OpenScience's native generate_image tool. The tool keeps credentials in the trusted host and saves the returned image directly into the connected workspace.
Inside OpenScience, always call the native generate_image tool. Do not invoke scripts/generate_image.py through Bash: the native tool uses a connected Gemini or OpenRouter account and saves the result into the workspace.
Credential routing is automatic:
Never ask the user to paste a secret into chat. Direct them to Customize → Models to connect an account.
Call generate_image with:
prompt (required): detailed generation or editing instructions.output_path: destination in the connected workspace; default generated-image.png.input_path: existing image for an edit. Omit it entirely for a new image;
never create or pass a blank canvas, directory, . or /dev/null.model: OpenRouter image model; default google/gemini-3-pro-image (Nano Banana Pro).aspect_ratio: optional 1:1, 3:2, 2:3, 4:3, 3:4, 16:9, or 9:16.Example generation:
{
"prompt": "Editorial scientific illustration of a DNA double helix with one mutation site highlighted, restrained blue and amber palette, no decorative text",
"output_path": "figures/dna-mutation.png",
"aspect_ratio": "3:2"
}Example edit:
{
"prompt": "Preserve every plotted value and label; improve spacing and contrast for a two-column conference paper",
"input_path": "figures/ablation-draft.png",
"output_path": "figures/ablation-refined.png",
"aspect_ratio": "4:3"
}google/gemini-3-pro-image: Nano Banana Pro; recommended for generation and editing.black-forest-labs/flux.2-pro: fast, high-quality generation and editing.black-forest-labs/flux.2-flex: cheaper generation-only alternative.Use Nano Banana Pro unless the user requests another model or a measured iteration shows a reason to switch.
For a technical architecture, method flow, pathway, or experimental diagram, load scientific-schematics and apply its publication checks while still using the native generate_image tool for the Nano Banana call.
scripts/generate_image.py remains a user-key helper for use outside OpenScience. It reads --api-key, OPENROUTER_API_KEY, or .env and calls public OpenRouter directly.
1d182e9
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.