InfoGenius
Create knowledge-first visuals: research the topic, convert the facts into a precise image prompt, generate with Gemini image tools, then report sources and key facts.
When To Use
Use this skill for:
/infogenius ...
- Infographics, diagrams, explainers, visual summaries, technical architecture visuals
- Educational visuals where factual accuracy matters
- Prompt generation for Gemini/Nano Banana/Imagen when no image MCP is available
Do not use this for character art, photorealistic marketing photography, or purely decorative images unless the user explicitly asks.
Inputs
Parse the user request into:
topic: required
style: default standard
audience: default general
aspect_ratio: default 16:9
language: default English
Supported styles:
standard: clean modern scientific illustration
minimalist: Bauhaus flat vector, 2-3 colors, strong negative space
photorealistic: cinematic realistic composite with annotation overlays
3d: isometric 3D render, clay/glass/plastic materials, studio light
technical: Da Vinci notebook / technical blueprint, ink annotations
futuristic: restrained HUD/data visualization, luminous lines
vintage: 19th-century scientific lithograph
cartoon: educational comic for younger audiences
premium: luxury knowledge visual with glass, titanium, light, and negative space
Supported audiences:
elementary: ages 6-10, 3-4 visual elements, minimal text
highschool: textbook clarity, 5-8 elements
college: academic detail, data-rich labels
expert: dense technical schematic with precise annotations
Workflow
- Clarify only if the topic is missing or the request is too ambiguous to execute.
- Research current facts with WebSearch/search tools. For stable evergreen topics, still collect 3-5 reliable facts.
- Extract:
- 3-5 key facts
- 3-6 visual elements
- short labels that should appear in the image
- source URLs or source names
- Compose a single detailed image prompt using the template below.
- Generate with the available image MCP. Prefer
mcp__nano-banana__generate_image with grounding/high quality if available.
- If no image MCP exists, return the finished prompt and source grounding clearly.
- Present the result with style, audience, aspect ratio, facts used, and sources.
Image Prompt Template
Create a {aspect_ratio} {style} infographic about {topic}.
AUDIENCE:
{audience instruction}
FACTUAL CONTENT TO VISUALIZE:
- {fact 1 as a concrete visual element}
- {fact 2 as a concrete visual element}
- {fact 3 as a concrete visual element}
VISUAL STRUCTURE:
- Clear central model of {topic}
- Labeled parts with large, legible text
- Directional arrows or numbered sequence where useful
- Use only accurate labels from the research
STYLE:
{style instruction}
QUALITY REQUIREMENTS:
- Publication quality, sharp detail
- No unreadable microtext
- No invented statistics or unsupported claims
- Keep the layout scannable and educational
Preferred MCP Call
If the nano-banana MCP is available, use:
mcp__nano-banana__generate_image({
prompt: imagePrompt,
aspect_ratio: aspectRatio,
model_tier: "pro",
enable_grounding: true,
thinking_level: "high",
resolution: "high"
})
If the installed MCP exposes a different schema, adapt to its available fields while preserving: prompt, aspect ratio, Gemini Pro/high quality, and search grounding when supported.
Response Template
## InfoGenius: {topic}
Style: {style} | Audience: {audience} | Aspect: {aspect_ratio}
Key facts used:
1. ...
2. ...
3. ...
Sources:
- ...
Generated output:
{image or prompt, depending on available tools}
Quality Bar
Before finalizing, check:
- The visual teaches the topic, not just decorates it.
- Labels are specific and source-grounded.
- The style supports comprehension.
- Any time-sensitive facts were searched during this session.
- The user can regenerate from the prompt without hidden local context.
1---2name: infogenius3description: Research-grounded infographic and knowledge-visual generation for Claude Code. Use when the user asks for /infogenius, infographics, visual explainers, technical diagrams, educational images, or image prompts that should be factually grounded before generation. Uses Google Search/WebSearch plus a Gemini image MCP such as nano-banana.4---56# InfoGenius78Create knowledge-first visuals: research the topic, convert the facts into a precise image prompt, generate with Gemini image tools, then report sources and key facts.910## When To Use1112Use this skill for:1314- `/infogenius ...`15- Infographics, diagrams, explainers, visual summaries, technical architecture visuals16- Educational visuals where factual accuracy matters17- Prompt generation for Gemini/Nano Banana/Imagen when no image MCP is available1819Do not use this for character art, photorealistic marketing photography, or purely decorative images unless the user explicitly asks.2021## Inputs2223Parse the user request into:2425- `topic`: required26- `style`: default `standard`27- `audience`: default `general`28- `aspect_ratio`: default `16:9`29- `language`: default `English`3031Supported styles:3233- `standard`: clean modern scientific illustration34- `minimalist`: Bauhaus flat vector, 2-3 colors, strong negative space35- `photorealistic`: cinematic realistic composite with annotation overlays36- `3d`: isometric 3D render, clay/glass/plastic materials, studio light37- `technical`: Da Vinci notebook / technical blueprint, ink annotations38- `futuristic`: restrained HUD/data visualization, luminous lines39- `vintage`: 19th-century scientific lithograph40- `cartoon`: educational comic for younger audiences41- `premium`: luxury knowledge visual with glass, titanium, light, and negative space4243Supported audiences:4445- `elementary`: ages 6-10, 3-4 visual elements, minimal text46- `highschool`: textbook clarity, 5-8 elements47- `college`: academic detail, data-rich labels48- `expert`: dense technical schematic with precise annotations4950## Workflow51521. Clarify only if the topic is missing or the request is too ambiguous to execute.532. Research current facts with WebSearch/search tools. For stable evergreen topics, still collect 3-5 reliable facts.543. Extract:55 - 3-5 key facts56 - 3-6 visual elements57 - short labels that should appear in the image58 - source URLs or source names594. Compose a single detailed image prompt using the template below.605. Generate with the available image MCP. Prefer `mcp__nano-banana__generate_image` with grounding/high quality if available.616. If no image MCP exists, return the finished prompt and source grounding clearly.627. Present the result with style, audience, aspect ratio, facts used, and sources.6364## Image Prompt Template6566```text67Create a {aspect_ratio} {style} infographic about {topic}.6869AUDIENCE:70{audience instruction}7172FACTUAL CONTENT TO VISUALIZE:73- {fact 1 as a concrete visual element}74- {fact 2 as a concrete visual element}75- {fact 3 as a concrete visual element}7677VISUAL STRUCTURE:78- Clear central model of {topic}79- Labeled parts with large, legible text80- Directional arrows or numbered sequence where useful81- Use only accurate labels from the research8283STYLE:84{style instruction}8586QUALITY REQUIREMENTS:87- Publication quality, sharp detail88- No unreadable microtext89- No invented statistics or unsupported claims90- Keep the layout scannable and educational91```9293## Preferred MCP Call9495If the `nano-banana` MCP is available, use:9697```javascript98mcp__nano-banana__generate_image({99 prompt: imagePrompt,100 aspect_ratio: aspectRatio,101 model_tier: "pro",102 enable_grounding: true,103 thinking_level: "high",104 resolution: "high"105})106```107108If the installed MCP exposes a different schema, adapt to its available fields while preserving: prompt, aspect ratio, Gemini Pro/high quality, and search grounding when supported.109110## Response Template111112```markdown113## InfoGenius: {topic}114115Style: {style} | Audience: {audience} | Aspect: {aspect_ratio}116117Key facts used:1181. ...1192. ...1203. ...121122Sources:123- ...124125Generated output:126{image or prompt, depending on available tools}127```128129## Quality Bar130131Before finalizing, check:132133- The visual teaches the topic, not just decorates it.134- Labels are specific and source-grounded.135- The style supports comprehension.136- Any time-sensitive facts were searched during this session.137- The user can regenerate from the prompt without hidden local context.