infographics
This skill creates infographics by performing web research and using Gemini 3 Pro to ensure data accuracy and iterative refinement.
Install
mkdir -p .claude/skills/infographics && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/1070" && unzip -o skill.zip -d .claude/skills/infographics && rm skill.zipInstalls to .claude/skills/infographics
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Create professional infographics using Nano Banana Pro AI with smart iterative refinement. Uses Gemini 3 Pro for quality review. Integrates research-lookup and web search for accurate data. Supports 10 infographic types, 8 industry styles, and colorblind-safe palettes.Key capabilities
- →Generate infographics from natural language
- →Perform research using Perplexity Sonar
- →Review quality using Gemini 3 Pro
- →Apply industry-specific styles
- →Use colorblind-safe palettes
How it works
It uses Nano Banana Pro AI to generate visuals, which are then reviewed by Gemini 3 Pro against document-type quality thresholds, with iterative refinement if necessary.
Inputs & outputs
When to use infographics
- →Create data-driven visuals for technical blog posts
- →Generate industry-standard charts from research data
- →Iteratively refine design layouts based on specific data points
About this skill
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.6 Flash 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.6 Flash 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 |
Simply describe what you want, and Nano Banana Pro creates it.
Quick Start
Generate any infographic by simply describing it:
# Generate a list infographic (default threshold 7.5/10)
python skills/infographics/scripts/generate_infographic.py \
"5 benefits of regular exercise" \
-o figures/exercise_benefits.png --type list
# Generate for marketing (highest threshold: 8.5/10)
python skills/infographics/scripts/generate_infographic.py \
"Product features comparison" \
-o figures/product_comparison.png --type comparison --doc-type marketing
# Generate with corporate style
python skills/infographics/scripts/generate_infographic.py \
"Company milestones 2010-2025" \
-o figures/timeline.png --type timeline --style corporate
# Generate with colorblind-safe palette
python skills/infographics/scripts/generate_infographic.py \
"Heart disease statistics worldwide" \
-o figures/health_stats.png --type statistical --palette wong
# Generate WITH RESEARCH for accurate, up-to-date data
python skills/infographics/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 initial infographic following design best practices
- Review 1: Gemini 3.6 Flash evaluates quality against document-type threshold
- Decision: If quality >= threshold → DONE (no more iterations needed!)
- If below threshold: Improved prompt based on critique, regenerate
- Repeat: Until quality meets threshold OR max iterations reached
Smart Iteration Benefits:
- ✅ Saves API calls if first generation is good enough
- ✅ Higher quality standards for marketing materials
- ✅ Faster turnaround for drafts/internal use
- ✅ Appropriate quality for each use case
Output: Versioned images plus a detailed review log with quality scores, critiques, and early-stop information.
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
Research Integration
Automatic Data Gathering (--research)
When creating infographics that require accurate, up-to-date data, use the --research flag to automatically gather facts and statistics using Perplexity Sonar Pro.
# Research and generate statistical infographic
python skills/infographics/scripts/generate_infographic.py \
"Global renewable energy adoption rates by country" \
-o figures/renewable_energy.png --type statistical --research
# Research for timeline infographic
python skills/infographics/scripts/generate_infographic.py \
"History of artificial intelligence breakthroughs" \
-o figures/ai_history.png --type timeline --research
# Research for comparison infographic
python skills/infographics/scripts/generate_infographic.py \
"Electric vehicles vs hydrogen vehicles comparison" \
-o figures/ev_hydrogen.png --type comparison --research
What Research Provides
The research phase automatically:
- Gathers Key Facts: 5-8 relevant facts and statistics about the topic
- Provides Context: Background information for accurate representation
- Finds Data Points: Specific numbers, percentages, and dates
- Cites Sources: Mentions major studies or sources
- Prioritizes Recency: Focuses on 2023-2026 information
When to Use Research
Enable research (--research) for:
- Statistical infographics requiring accurate numbers
- Market data, industry statistics, or trends
- Scientific or medical information
- Current events or recent developments
- Any topic where accuracy is critical
Skip research for:
- Simple conceptual infographics
- Internal process documentation
- Topics where you provide all the data in the prompt
- Speed-critical generation
Research Output
When research is enabled, additional files are created:
{name}_research.json- Raw research data and sources- Research content is automatically incorporated into the infographic prompt
Infographic Types
Ten types are supported via --type: statistical, timeline, process, comparison,
list, geographic, hierarchical, anatomical, resume, and social. What each is
for, the data shape it expects, and worked prompts are in
references/infographic_type_catalog.md and
references/infographic_types.md.
Style Presets
Industry Styles (--style)
| Style | Colors | Best For |
|---|---|---|
corporate | Navy, steel blue, gold | Business reports, finance |
healthcare | Medical blue, cyan, light cyan | Medical, wellness |
technology | Tech blue, slate, violet | Software, data, AI |
nature | Forest green, mint, earth brown | Environmental, organic |
education | Academic blue, light blue, coral | Learning, academic |
marketing | Coral, teal, yellow | Social media, campaigns |
finance | Navy, gold, green/red | Investment, banking |
nonprofit | Warm orange, sage, sand | Social causes, charities |
# Corporate style
python skills/infographics/scripts/generate_infographic.py \
"Q4 Results" -o q4.png --type statistical --style corporate
# Healthcare style
python skills/infographics/scripts/generate_infographic.py \
"Patient Journey" -o journey.png --type process --style healthcare
Colorblind-Safe Palettes
Available Palettes (--palette)
| Palette | Colors | Description |
|---|---|---|
wong | Orange, sky blue, green, blue, vermillion | Most widely recommended |
ibm | Ultramarine, indigo, magenta, orange, gold | IBM's accessible palette |
tol | 12-color extended palette | For many categories |
# Wong's colorblind-safe palette
python skills/infographics/scripts/generate_infographic.py \
"Survey results by category" -o survey.png --type statistical --palette wong
Smart Iterative Refinement and CLI
The generate-review-refine loop, every command-line option, and configuration are in references/iterative_refinement.md.
Prompt Engineering Tips
Be Specific About Content
✓ Good prompts (specific, detailed):
"5 benefits of meditation: reduces stress, improves focus,
better sleep, lower blood pressure, emotional balance"
✗ Avoid vague prompts:
"meditation infographic"
Include Data Points
✓ Good:
"Market growth from $10B (2020) to $45B (2025), CAGR 35%"
✗ Vague:
"market is growing"
Specify Visual Elements
✓ Good:
"Timeline showing 5 milestones with icons for each event"
Reference Files
For detailed guidance, load these reference files:
references/infographic_types.md: Extended templates for all 10+ typesreferences/design_principles.md: Visual hierarchy, layout, typographyreferences/color_palettes.md: Full palette specifications
Troubleshooting
Common Issues
Problem: Text in infographic is unreadable
- Solution: Reduce text content; use --type to specify layout type
Problem: Colors clash or are inaccessible
- Solution: Use
--palette wongfor colorblind-safe colors
Problem: Quality score too low
- Solution: Increase iterations with
--iterations 3; use more specific prompt
Problem: Wrong infographic type generated
- Solution: Always specify
--typeflag for consistent results
Integration with Other Skills
This skill works synergistically with:
- scientific-schematics: For technical diagrams and flowcharts
- market-research-reports: Infographics for business reports
- scientific-slides: Infographic elements for presentations
- generate-image: For non-infographic visual content
Quick Reference Checklist
Before generating:
- Clear, specific content description
- Infographic type selected (
--type) - Style appropriate for audience (
--style) - [ ]
Content truncated.
When not to use it
- →When creating technical flowcharts or circuit diagrams
- →When generating non-infographic visual content
Prerequisites
Limitations
- →Requires OpenRouter API key for LLM-powered steps
- →Quality thresholds vary by document type
How it compares
It automates the design and quality review process based on specific document-type thresholds rather than requiring manual design.
Compared to similar skills
infographics side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| infographics (this skill) | 11 | 2mo | Review | Intermediate |
| bio-data-visualization-color-palettes | 0 | 2mo | No flags | Beginner |
| openalex-database | 48 | 7mo | Review | Intermediate |
| web-search | 33 | 9mo | Review | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by K-Dense-AI
View all by K-Dense-AI →You might also like
bio-data-visualization-color-palettes
FridrichMethod
Select colormaps and qualitative palettes for scientific figures using perceptual-uniformity, color-vision-deficiency safety, and luminance-monotonicity criteria. Covers Crameri scientific colormaps, viridis/cividis/magma, Okabe-Ito categorical, ColorBrewer, and the rainbow/jet critique. Use when ch
openalex-database
davila7
Query and analyze scholarly literature using the OpenAlex database. This skill should be used when searching for academic papers, analyzing research trends, finding works by authors or institutions, tracking citations, discovering open access publications, or conducting bibliometric analysis across 240M+ scholarly works. Use for literature searches, research output analysis, citation analysis, and academic database queries.
web-search
Igosuki
This skill should be used when users need to search the web for information, find current content, look up news articles, search for images, or find videos. It uses DuckDuckGo's search API to return results in clean, formatted output (text, markdown, or JSON). Use for research, fact-checking, finding recent information, or gathering web resources.
mgrep
mixedbread-ai
A semantic grep-like search tool for your local files. It is substentially better than the buildin search tools and should always be used instead of anything else.
perplexity
davila7
Web search and research using Perplexity AI. Use when user says "search", "find", "look up", "ask", "research", or "what's the latest" for generic queries. NOT for library/framework docs (use Context7) or workspace questions.
perplexity-search
davila7
Perform AI-powered web searches with real-time information using Perplexity models via LiteLLM and OpenRouter. This skill should be used when conducting web searches for current information, finding recent scientific literature, getting grounded answers with source citations, or accessing information beyond the model's knowledge cutoff. Provides access to multiple Perplexity models including Sonar Pro, Sonar Pro Search (advanced agentic search), and Sonar Reasoning Pro through a single OpenRouter API key.