
Infographic Template Updater
- 91 installs
- 5.7k repo stars
- Updated June 1, 2026
- antvis/infographic
Infographic Template Updater is a skill that updates public template catalogs and UI prompt lists after new infographic templates are added to the AntV infographic project.
About
A maintenance skill for the AntV infographic project that updates public template lists after new templates are added in src/templates. A developer uses it to propagate new template names into the infographic-creator SKILL.md list, the AIPlayground prompt list, and the syntax-creator prompt reference. It also extends the gallery datasets when a template needs example data.
- Updates template catalogs and UI prompt lists after new infographic templates are added under src/templates
- Keeps SKILL.md template list, the AIPlayground prompt list, and the gallery mappings in sync
- Verifies presence with ripgrep and preserves existing ordering and names
Infographic Template Updater by the numbers
- 91 all-time installs (skills.sh)
- Ranked #665 of 1,879 Documentation skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
infographic-template-updater capabilities & compatibility
- Capabilities
- docs sync · catalog update
- Use cases
- documentation
What infographic-template-updater says it does
Update template catalogs and UI prompts after adding new infographic templates (src/templates/*.ts)
Sanity check with `rg -n "<template-name>"` across the above files to confirm presence.
Do not remove or rename existing entries.
npx skills add https://github.com/antvis/infographic --skill infographic-template-updaterAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 91 |
|---|---|
| repo stars | ★ 5.7k |
| Last updated | June 1, 2026 |
| Repository | antvis/infographic ↗ |
What it does
Sync infographic template catalogs and UI prompt lists after adding new templates to src/templates.
When should I use this skill?
After adding a new template file under src/templates in the AntV infographic repo.
What you get
Template lists in SKILL.md, the AIPlayground prompt, and the syntax-creator reference all reflect the newly added templates.
- Updated Available Templates list
- Updated AIPlayground prompt template list
- Updated gallery datasets when needed
By the numbers
- updates 3 template lists (SKILL.md, Prompt.ts, prompt.md)
Files
Infographic Template Updater
Overview
Update public template lists and gallery mappings when new templates are added in src/templates.
Workflow
1. Collect new template names from the added src/templates/*.ts file (object keys).
- If templates are composed via spreads (e.g.
...listZigzagTemplates), also confirm the final keys insrc/templates/built-in.ts.
2. Update template lists:
skills/infographic-creator/SKILL.mdin the "Available Templates" list.site/src/components/AIPlayground/Prompt.tsin the template list.skills/infographic-syntax-creator/references/prompt.mdin the template list.
Keep existing ordering/grouping; add new list-* entries near other list templates. 3. Sanity check with rg -n "<template-name>" across the above files to confirm presence.
Notes
- Do not remove or rename existing entries.
- Keep template names exact and lower-case.
- If a template needs example data, update or extend
site/src/components/Gallery/datasets.tsto match its structure.