Infographics
Describe your content and get a publication-quality infographic that auto-refines until it passes a quality threshold.
Image & VideoIntermediate★ 33,030⑂ 3,248AI score 8/10Last updated: Aug 9, 2026
What it does
You describe the content in plain language; an image model (Nano Banana Pro) generates the infographic, then a reviewer model (Gemini Flash) scores it out of 10. If the score meets the threshold for your document type (marketing 8.5, report 8.0, presentation 7.5, draft 6.5, etc.) it stops immediately; otherwise the prompt is improved from the critique and regenerated.
- 10 types: statistical, timeline, process, comparison, list, geographic, hierarchical, anatomical, resume, social
- 8 industry style presets: corporate, healthcare, technology, nature, education, marketing, finance, nonprofit
- Colorblind-safe palettes (wong, ibm, tol)
- Optional
--researchflag pulls current facts and statistics via Perplexity Sonar and folds them into the prompt - Versioned image output plus a review log with scores, critiques and early-stop info
Who it's for
- Marketers and content teams who need visuals fast without a designer
- Analysts and researchers summarizing market or scientific data with sources
- Social media managers producing repeated campaign graphics
- Public-sector, health and education writers who must meet accessibility requirements
Examples
- Marketing comparison graphic: run
--type comparison --doc-type marketingso a product feature comparison keeps regenerating until it clears 8.5/10. - Research-backed statistics: "Global AI market size and growth projections" with
--type statistical --researchgathers fresh numbers and saves sources to_research.json. - Company timeline: "Milestones 2010-2025" with
--type timeline --style corporatefor an investor report slide.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/infographics folder from the GitHub repo K-Dense-AI/scientific-agent-skills into my ~/.claude/skills/infographics/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git && mkdir -p ~/.claude/skills && cp -r scientific-agent-skills/skills/infographics ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal in the folder where you keep tools.
- Clone the repo:
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git - Copy the skill into your Claude Code skills directory:
mkdir -p ~/.claude/skills && cp -r scientific-agent-skills/skills/infographics ~/.claude/skills/ - Set your API key:
export OPENROUTER_API_KEY="sk-or-..."(add it to~/.zshrcor~/.bashrcto persist). - Install Python dependencies for the script (use
pip install -r requirements.txtif the repo ships one). - Restart Claude Code and ask it to "make an infographic about ...", or test directly:
python ~/.claude/skills/infographics/scripts/generate_infographic.py "5 benefits of exercise" -o out.png --type list - Check the output image and the review log; if the score is low, retry with
--iterations 3and a more specific prompt.
View source on GitHub ↗License: MIT