antv-infographic-skills
NewAn Infographic Generation and Rendering Framework, bring words to life!
Overview
<div align="center">
Infographic, bring words to life!
๐ฆ An Infographic Generation and Rendering Framework, bring words to life!
  !Visitors 
<img src="https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*EdkXSojOxqsAAAAAQHAAAAgAemJ7AQ/original" width="256">
</div>
AntV Infographic is AntV's next-generation declarative infographic visualization engine. With a carefully designed infographic syntax, it can quickly and flexibly render high-quality infographics, making information presentation more efficient and data storytelling simpler.
<div align="center">
<p align="center"> <a href="https://infographic.antv.vision"> <img src="https://img.shields.io/badge/Website-2F54EB?style=for-the-badge" alt="Website" /> </a> <a href="https://github.com/antvis/infographic"> <img src="https://img.shields.io/badge/GitHub-000000?style=for-the-badge&logo=github&logoColor=white" alt="GitHub" /> </a> <a href="https://infographic.antv.vision/learn"> <img src="https://img.shields.io/badge/Docs-722ED1?style=for-the-badge" alt="Docs" /> </a> <a href="https://infographic.antv.vision/gallery"> <img src="https://img.shields.io/badge/Gallery-13C2C2?style=for-the-badge" alt="Gallery" /> </a> <a href="https://github.com/antvis/Infographic/tree/main/skills"> <img src="https://img.shields.io/badge/Skills-FA8C16?style=for-the-badge" alt="Skills" /> </a> <a href="https://infographic.antv.vision/ai"> <img src="https://img.shields.io/badge/AI%20Agent-EB2F96?style=for-the-badge" alt="AI Agent" /> </a> </p>
<img src="https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*ZdeISZWHuyIAAAAAbEAAAAgAemJ7AQ/fmt.webp" width="768" alt="AntV Infographic Preview">
</div>
โจ Features
- โข๐ค AI-friendly: Configuration and syntax are tuned for AI generation, provide concise prompts, and support AI streaming output and rendering
- โข๐ฆ Ready to use: ~200 built-in infographic templates, data-item components, and layouts to build professional infographics in minutes
- โข๐จ Theme system: Hand-drawn, gradients, patterns, multiple preset themes, plus deep customization
- โข๐ง๐ปโ๐ป Built-in editor: Includes an editor for infographics so AI-generated results can be edited further
- โข๐ High-quality SVG output: Renders with SVG by default to ensure visual fidelity and easy editing
๐ Installation
npm install @antv/infographic๐ Quick Start
  
import { Infographic } from '@antv/infographic';
const infographic = new Infographic({
container: '#container',
width: '100%',
height: '100%',
editable: true,
});
infographic.render(`
infographic list-row-simple-horizontal-arrow
data
lists
- label Step 1
desc Start
- label Step 2
desc In Progress
- label Step 3
desc Complete
`);The rendered result looks like this:
<img src="https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*uvj8Qb26F1MAAAAARAAAAAgAemJ7AQ/fmt.webp" width="480" alt="AntV Infographic DEMO">
Streaming Rendering

With a highly fault-tolerant infographic syntax you can stream AI output in real time and progressively render the infographic.
let buffer = '';
for (const chunk of chunks) {
buffer += chunk;
infographic.render(buffer);
}<img src="https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*e_PFSZrR9AQAAAAASdAAAAgAemJ7AQ/original" width="480" alt="AntV Infographic Streaming Rendering">
๐ง Skills Integration
AntV Infographic provides skills to integrate with AI agents:
- โขinfographic-creator: Create an HTML file that renders an infographic
- โขinfographic-syntax-creator: Generate infographic syntax from descriptions
- โขinfographic-structure-creator: Generate custom structure designs
- โขinfographic-item-creator: Generate custom item designs
- โขinfographic-template-updater: (For developers) update the template library
Claude Code
Claude marketplace is now available. You can install from marketplace, or keep using manual install.
/plugin marketplace add https://github.com/antvis/Infographic.git
/plugin install antv-infographic-skills@antv-infographicManual install:
set -e
VERSION=0.2.4 # Replace with the latest tag, e.g. 0.2.14
BASE_URL=https://github.com/antvis/Infographic/releases/download
mkdir -p .claude/skills
curl -L --fail -o skills.zip "$BASE_URL/$VERSION/skills.zip"
unzip -q -o skills.zip -d .claude/skills
rm -f skills.zipCodex
Enter codex
# Replace <SKILL> with the skill name, e.g. infographic-creator
# https://github.com/antvis/Infographic/tree/main/skills/<SKILL>
$skill-installer install https://github.com/antvis/Infographic/tree/main/skills/infographic-creator๐ Ecosystem
Community projects and products powered by AntV Infographic:
- โข๐ผ Products
- Alma โ Desktop AI provider orchestration app with Infographic - Markdown Viewer โ Markdown viewer with Infographic support, export to Word, extensions for Chrome/VS Code/Firefox - InfographicAI โ Generate PPT slides powered by Infographic - LangChat Slides โ Next-Gen AI Slide Generator using @antv/infographic - Nowledge Mem โ AI Memory Bank with Presentation Creator supporting Infographic - WeChat Markdown Editor โ Markdown to WeChat article editor with Infographic - Welight โ WeChat article creation platform with Infographic support - Zojo โ Generate professional infographics with simple syntax
- โข๐ฆ Libraries
- astro-koharu โ Anime blog theme (Astro) with Infographic support - docsify-infographic โ Plugin to render Infographic diagrams in Docsify - feffery-infographic โ Create infographics in Python with Plotly Dash - infographic-cli โ CLI tool to generate SVG infographics - infographic-for-react โ React component wrapper for @antv/infographic - markdown-it-infographic โ markdown-it plugin for @antv/infographic - markstream-vue โ Streaming Markdown rendering for Vue 3 with Infographic - obsidian-infographic โ Obsidian plugin for @antv/infographic - slidev-addon-infographic โ @antv/infographic component for Slidev - VSCode Extension โ Preview Infographic in VSCode Markdown files
๐ก Have a project using AntV Infographic? Share it in Issue #99!
๐ฌ Community & Communication
- โขSubmit your questions or suggestions on GitHub
- โขJoin GitHub Discussions to communicate with the community
- โขContributions are welcome! Let's improve AntV Infographic together!
If you have any suggestions, feel free to communicate with us on GitHub! Star โญ us to show your support.
๐ License
This project is open source under the MIT license. See LICENSE for details.
Install & Usage
mkdir -p .claude/skillsmkdir -p .claude/skills && curl -o .claude/skills/antv-infographic-skills.md https://raw.githubusercontent.com/antvis/Infographic/main/SKILL.md/antv-infographic-skillsFrequently Asked Questions
What is antv-infographic-skills?
An Infographic Generation and Rendering Framework, bring words to life!
How to install antv-infographic-skills?
To install antv-infographic-skills, create the .claude/skills directory in your project, then run the curl command to download the skill file. Once installed, invoke it in Claude Code with /antv-infographic-skills.
What is antv-infographic-skills best for?
antv-infographic-skills is a community categorized under General. It is designed for: antv, infographic, visualization. Created by AntV Visualization Team.