infographic-creator

infographic-creator is a skill for Claude Code, Codex from antvis/chart-visualization-skills. It costs 24 tokens per session (2,906 once invoked), scanned A, original, MIT.

A skill for turning written information into infographics, which are visual layouts that explain facts or ideas with text, symbols, and data displays. It uses AntV Infographic's format for defining the layout and style.

In plain words
What is it for?
Creating infographics from supplied text, including choosing a layout, organizing titles and descriptions, and setting colors and fonts.
Why use it?
It helps structure complex information into a visual form that is easier to scan and remember.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

not rated 483repo +6 today A scan Socket: passSnyk: warnSkillSpector: pass 24 tokens original MIT

Good fit Creating infographics from supplied text, including choosing a layout, organizing titles and descriptions, and setting colors and fonts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/antvis/chart-visualization-skills/infographic-creator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add antvis/chart-visualization-skills --skill infographic-creator
Clone the repo
git clone --depth 1 https://github.com/antvis/chart-visualization-skills

Made for: Claude Code, Codex.

Its marketplace also offers this one on its own, as the plugin infographic-creator/plugin install infographic-creator after adding the marketplace above.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for infographic-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/antvis/chart-visualization-skills/infographic-creator.svg)](https://agentmods.dev/skills/antvis/chart-visualization-skills/infographic-creator)
Your own site
<a href="https://agentmods.dev/skills/antvis/chart-visualization-skills/infographic-creator"><img src="https://agentmods.dev/badge/skills/antvis/chart-visualization-skills/infographic-creator.svg" alt="Measured on agentmods" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,906 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 18 Mar 2026
  • Snyk warn 15 Feb 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00024 $0.02906
Opus 5 $0.00012 $0.01453
Sonnet 5 $0.00005 $0.00581
Haiku 4.5 $0.00002 $0.00291

Measured 8d ago against content hash a84142523e0a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

infographic-creator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/infographic-creator/SKILL.md · 379 lines

How it starts

The opening of the file, as written. The whole thing — 379 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Infographics convert data, information, and knowledge into perceptible visual language. They combine visual design with data visualization, compressing complex information with intuitive symbols to help audiences quickly understand and remember key points.

Infographic = Information Structure + Visual Expression

This task uses AntV Infographic to create visual infographics.

Before starting the task, you need to understand the AntV Infographic syntax specifications, including template list, data structure, themes, etc.

Specifications

AntV Infographic Syntax

AntV Infographic syntax is a custom DSL used to describe infographic rendering configurations. It uses indentation to describe information, has strong robustness, and is convenient for AI streaming output and infographic rendering. It mainly contains the following information:

  1. template: Use templates to express the text information structure.
  2. data: Infographic data, including title, desc, data items, etc. Data items typically contain fields such as label, desc, icon, etc.
  3. theme: Theme contains style configurations such as palette, font, etc.

For example:

infographic list-row-horizontal-icon-arrow
data
  title Title
  desc Description
  lists
    - label Label
      value 12.5
      desc Explanation
      icon document text
theme
  palette #3b82f6 #8b5cf6 #f97316

Syntax Specifications

  • The first line must be infographic <template-name>, template selected from the list below (see "Available Templates" section).
  • Use data / theme blocks, with two-space indentation within blocks.
  • Key-value pairs use "key space value"; arrays use - as entry prefix.
  • icon uses icon keywords (e.g., star fill).
  • data should contain title/desc + template-specific main data field (not necessarily items).
  • Main data field selection (use only one, avoid mixing):
    • list-*lists
    • sequence-*sequences (optional order asc|desc)
    • compare-*compares (supports children for grouped comparisons), can contain multiple comparison items
    • hierarchy-structureitems (each item corresponds to an independent hierarchy, each level can contain sub-items, can be nested up to 3 levels)
    • hierarchy-* → single root (tree structure, nested through children);
    • relation-*nodes + relations; simple relation diagrams can omit nodes, using arrow syntax in relations
    • chart-*values (numeric statistics, optional category)
    • Use items as fallback when uncertain
  • compare-binary-* / compare-hierarchy-left-right-* binary templates: must have two root nodes, all comparison items hang under these two root nodes' children
  • hierarchy-*: use single root, nested through children (do not repeat root)
  • theme is used to customize themes (palette, font, etc.) For example: dark theme + custom color scheme
    infographic list-row-horizontal-icon-arrow
    theme dark
      palette
        - #61DDAA
        - #F6BD16
        - #F08BB4
    
  • Use theme.base.text.font-family to specify font, such as handwriting style 851tegakizatsu
  • Use theme.stylize to select built-in styles and pass parameters Common styles:
    • rough: hand-drawn effect
    • pattern: pattern fill
    • linear-gradient / radial-gradient: linear/radial gradient

Read the full file on GitHub · 379 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 379 lines · 24 tokens per session scan A a84142523e0a

Subscribe to this mod's changes

infographic-creator is a skill published in the GitHub repository antvis/chart-visualization-skills (483 stars, last pushed today), licensed MIT. It adds 24 tokens to every session and 2,906 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.