Infographics
Overview
Infographics are visual representations of information, data, or knowledge designed to present complex content quickly and clearly. This skill uses Nano Banana Pro AI for infographic generation with Gemini 3 Pro quality review and Perplexity Sonar for research.
How it works:
- (Optional) Research phase: Gather accurate facts and statistics using Perplexity Sonar
- Describe your infographic in natural language
- Nano Banana Pro generates publication-quality infographics automatically
- Gemini 3 Pro reviews quality against document-type thresholds
- Smart iteration: Only regenerates if quality is below threshold
- Professional-ready output in minutes; no design skills required
Quality Thresholds by Document Type:
| Document Type |
Threshold |
Description |
| marketing |
8.5/10 |
Marketing materials - must be compelling |
| report |
8.0/10 |
Business reports - professional quality |
| presentation |
7.5/10 |
Slides, talks - clear and engaging |
| social |
7.0/10 |
Social media content |
| internal |
7.0/10 |
Internal use |
| draft |
6.5/10 |
Working drafts |
| default |
7.5/10 |
General purpose |
When to Use This Skill
Use the infographics skill when:
- Presenting data or statistics in a visual format
- Creating timeline visualizations for project milestones or history
- Explaining processes, workflows, or step-by-step guides
- Comparing options, products, or concepts side-by-side
- Summarizing key points in an engaging visual format
- Creating geographic or map-based data visualizations
- Building hierarchical or organizational charts
- Designing social media content or marketing materials
Use scientific-schematics instead for:
- Technical flowcharts and circuit diagrams
- Biological pathways and molecular diagrams
- Neural network architecture diagrams
- CONSORT/PRISMA methodology diagrams
Quick Start
Generate any infographic by describing it; the script handles generation, review, and iteration.
# Generate a list infographic (default threshold 7.5/10)
python scripts/generate_infographic.py \
"5 benefits of regular exercise" \
-o figures/exercise_benefits.png --type list
# Marketing (highest threshold: 8.5/10)
python scripts/generate_infographic.py \
"Product features comparison" \
-o figures/product_comparison.png --type comparison --doc-type marketing
# Corporate style + colorblind-safe palette
python scripts/generate_infographic.py \
"Company milestones 2010-2025" \
-o figures/timeline.png --type timeline --style corporate
# WITH RESEARCH for accurate, up-to-date data
python scripts/generate_infographic.py \
"Global AI market size and growth projections" \
-o figures/ai_market.png --type statistical --research
What happens behind the scenes:
- (Optional) Research: Perplexity Sonar gathers accurate facts, statistics, and data
- Generation 1: Nano Banana Pro creates the initial infographic
- Review 1: Gemini 3 Pro evaluates quality against the document-type threshold
- Decision: quality >= threshold → DONE (early stop); below threshold → improve prompt and regenerate
- Repeat until quality meets threshold OR max iterations reached
Output: Versioned images plus a detailed JSON review log with quality scores, critiques, and early-stop info.
Core Workflow
- Pick the type (
--type) — one of 10 presets (statistical, timeline, process, comparison, list, geographic, hierarchical, anatomical, resume, social). Full catalog with examples in references/type_catalog.md.
- Pick a style and (optionally) palette — 8 industry
--style presets, 3 colorblind-safe --palette presets. Tables in references/type_catalog.md.
- Set
--doc-type to choose the quality threshold (see table above).
- Add
--research when accurate sourced data matters.
- Configure the API key (
OPENROUTER_API_KEY) and run; review the JSON log and regenerate with a more specific prompt if needed.
Configuration
Set the OpenRouter API key (read from the environment):
export OPENROUTER_API_KEY='your_api_key_here' # https://openrouter.ai/keys
Data & privacy: prompts and research/infographic content are sent to a third-party API (OpenRouter) for generation and quality review. Avoid sending confidential, clinical, or unpublished material.
Reference Index
| File |
Contents |
references/type_catalog.md |
All 10 --type presets with runnable examples; --style and --palette tables |
references/cli_and_workflow.md |
Full CLI options, smart-refinement loop + Gemini review criteria + review-log schema, --research integration, prompt-engineering tips, troubleshooting, cross-skill integration, checklist |
references/design_principles.md |
Visual hierarchy, layout, typography |
references/color_palettes.md |
Full palette specifications |
references/infographic_types.md |
Extended layout templates for all types |
Use this skill to create professional, accessible, and visually compelling infographics using Nano Banana Pro AI with intelligent Gemini 3 Pro quality review.
1---2name: alterlab-infographics3description: Creates professional infographics with Nano Banana Pro AI and smart iterative refinement, using Gemini 3 Pro for automated quality review and an optional Perplexity Sonar research phase for accurate, sourced data — supports 10 infographic types, 8 industry styles, and colorblind-safe palettes. Use when the request is for an infographic, data-story graphic, statistical poster, comparison chart, timeline, process/how-to visual, or list/social graphic that pairs a designed layout with figures. Use alterlab-scientific-schematics instead for technical flowcharts, CONSORT/PRISMA, pathways, or architecture diagrams; alterlab-generate-image for non-infographic illustrations. Part of the AlterLab Academic Skills suite.4license: MIT5---67# Infographics89## Overview1011Infographics are visual representations of information, data, or knowledge designed to present complex content quickly and clearly. **This skill uses Nano Banana Pro AI for infographic generation with Gemini 3 Pro quality review and Perplexity Sonar for research.**1213**How it works:**14- (Optional) **Research phase**: Gather accurate facts and statistics using Perplexity Sonar15- Describe your infographic in natural language16- Nano Banana Pro generates publication-quality infographics automatically17- **Gemini 3 Pro reviews quality** against document-type thresholds18- **Smart iteration**: Only regenerates if quality is below threshold19- Professional-ready output in minutes; no design skills required2021**Quality Thresholds by Document Type:**22| Document Type | Threshold | Description |23|---------------|-----------|-------------|24| marketing | 8.5/10 | Marketing materials - must be compelling |25| report | 8.0/10 | Business reports - professional quality |26| presentation | 7.5/10 | Slides, talks - clear and engaging |27| social | 7.0/10 | Social media content |28| internal | 7.0/10 | Internal use |29| draft | 6.5/10 | Working drafts |30| default | 7.5/10 | General purpose |3132## When to Use This Skill3334Use the **infographics** skill when:35- Presenting data or statistics in a visual format36- Creating timeline visualizations for project milestones or history37- Explaining processes, workflows, or step-by-step guides38- Comparing options, products, or concepts side-by-side39- Summarizing key points in an engaging visual format40- Creating geographic or map-based data visualizations41- Building hierarchical or organizational charts42- Designing social media content or marketing materials4344**Use scientific-schematics instead for:**45- Technical flowcharts and circuit diagrams46- Biological pathways and molecular diagrams47- Neural network architecture diagrams48- CONSORT/PRISMA methodology diagrams4950## Quick Start5152Generate any infographic by describing it; the script handles generation, review, and iteration.5354```bash55# Generate a list infographic (default threshold 7.5/10)56python scripts/generate_infographic.py \57 "5 benefits of regular exercise" \58 -o figures/exercise_benefits.png --type list5960# Marketing (highest threshold: 8.5/10)61python scripts/generate_infographic.py \62 "Product features comparison" \63 -o figures/product_comparison.png --type comparison --doc-type marketing6465# Corporate style + colorblind-safe palette66python scripts/generate_infographic.py \67 "Company milestones 2010-2025" \68 -o figures/timeline.png --type timeline --style corporate6970# WITH RESEARCH for accurate, up-to-date data71python scripts/generate_infographic.py \72 "Global AI market size and growth projections" \73 -o figures/ai_market.png --type statistical --research74```7576**What happens behind the scenes:**771. **(Optional) Research**: Perplexity Sonar gathers accurate facts, statistics, and data782. **Generation 1**: Nano Banana Pro creates the initial infographic793. **Review 1**: **Gemini 3 Pro** evaluates quality against the document-type threshold804. **Decision**: quality >= threshold → **DONE** (early stop); below threshold → improve prompt and regenerate815. **Repeat** until quality meets threshold OR max iterations reached8283**Output**: Versioned images plus a detailed JSON review log with quality scores, critiques, and early-stop info.8485## Core Workflow86871. **Pick the type** (`--type`) — one of 10 presets (statistical, timeline, process, comparison, list, geographic, hierarchical, anatomical, resume, social). Full catalog with examples in `references/type_catalog.md`.882. **Pick a style and (optionally) palette** — 8 industry `--style` presets, 3 colorblind-safe `--palette` presets. Tables in `references/type_catalog.md`.893. **Set `--doc-type`** to choose the quality threshold (see table above).904. **Add `--research`** when accurate sourced data matters.915. **Configure the API key** (`OPENROUTER_API_KEY`) and run; review the JSON log and regenerate with a more specific prompt if needed.9293## Configuration9495Set the OpenRouter API key (read from the environment):9697```bash98export OPENROUTER_API_KEY='your_api_key_here' # https://openrouter.ai/keys99```100101**Data & privacy:** prompts and research/infographic content are sent to a third-party API (OpenRouter) for generation and quality review. Avoid sending confidential, clinical, or unpublished material.102103## Reference Index104105| File | Contents |106| ---- | -------- |107| [`references/type_catalog.md`](references/type_catalog.md) | All 10 `--type` presets with runnable examples; `--style` and `--palette` tables |108| [`references/cli_and_workflow.md`](references/cli_and_workflow.md) | Full CLI options, smart-refinement loop + Gemini review criteria + review-log schema, `--research` integration, prompt-engineering tips, troubleshooting, cross-skill integration, checklist |109| [`references/design_principles.md`](references/design_principles.md) | Visual hierarchy, layout, typography |110| [`references/color_palettes.md`](references/color_palettes.md) | Full palette specifications |111| [`references/infographic_types.md`](references/infographic_types.md) | Extended layout templates for all types |112113Use this skill to create professional, accessible, and visually compelling infographics using Nano Banana Pro AI with intelligent Gemini 3 Pro quality review.