スキル一覧に戻る
shuuul

obsidian-infographic

by shuuul

Render AntV Infographic visualizations from fenced code blocks in Obsidian notes

0🍴 0📅 2026年1月16日
GitHubで見るManusで実行

SKILL.md


name: obsidian-infographic description: | Create AntV Infographic visualizations in Obsidian using fenced infographic code blocks. Use when the user wants to render process flows, timelines, hierarchies, charts, or comparison matrices within Obsidian markdown documents.

Supports JSON and DSL syntax formats. metadata: author: shuuul version: "0.1.0"

Infographics

Render AntV Infographic visualizations in Obsidian markdown using fenced code blocks.

Quick Start

infographic list-row-simple-horizontal-arrow
data
  title My Infographic
  desc A brief description
  items
    - label Step 1
      desc Start here
    - label Step 2
      desc Continue
    - label Step 3
      desc Complete
theme
  palette antv

Syntax Format

infographic <template-name>
data
  title Title
  desc Description
  items
    - label Item 1
      desc Description
      value 100
      icon mdi/rocket-launch
theme
  palette antv

JSON Format

{
  "template": "list-row-simple-horizontal-arrow",
  "theme": { "colorPrimary": "#FF356A" },
  "data": {
    "title": "My Infographic",
    "items": [
      { "label": "Item 1", "desc": "Description" }
    ]
  }
}

Reference Documents

DocumentDescription
infographcs-creator.mdComplete syntax spec, templates, and examples
prompt.mdAntV Infographic syntax generation rules
item-prompt.mdItem component design guidelines
structure-prompt.mdStructure component design guidelines

Template Selection Guide

CategoryTemplatesUse For
Sequencessequence-*Processes, steps, timelines
Listslist-row-*, list-column-*, list-grid-*Bullet points, viewpoints
Comparisoncompare-binary-*, compare-swotPros/cons, SWOT
Hierarchyhierarchy-tree-*, hierarchy-structureTrees, org charts
Chartschart-*Data visualization
Quadrantquadrant-*Matrix analysis
Relationsrelation-*Relationships

Common Templates

TemplateDescription
list-row-simple-horizontal-arrowHorizontal steps with arrows
list-row-horizontal-icon-arrowSteps with icons and arrows
sequence-timeline-rounded-rect-nodeTimeline layout
sequence-roadmap-vertical-simpleVertical roadmap
hierarchy-structureOrganization chart
compare-binary-horizontal-badge-card-arrowPros/cons comparison
compare-swotSWOT analysis
chart-bar-plain-textBar chart
chart-pie-donut-plain-textDonut chart

Data Structure

interface Data {
  title?: string;
  desc?: string;
  items: ItemDatum[];
  relations?: RelationDatum[];
}

interface ItemDatum {
  id?: string;
  label?: string;
  desc?: string;
  value?: number;
  icon?: string;
  illus?: string;
  children?: ItemDatum[];
}

interface RelationDatum {
  from: string;
  to: string;
  label?: string;
  direction?: 'forward' | 'both' | 'none';
}

Icons and Illustrations

Icons (Iconify)

Illustrations (unDraw)

Theme Customization

infographic list-row-simple-horizontal-arrow
theme light
  palette
    - #61DDAA
    - #F6BD16
    - #F08BB4
data
  items
    - label Step 1
      desc Start
    - label Step 2
      desc Progress
    - label Step 3
      desc Complete

Theme Options

  • light, dark, hand-drawn
  • Stylization: rough, pattern, linear-gradient, radial-gradient
  • Font: theme.base.text.font-family

Toolbar

Each rendered infographic shows a toolbar with:

  • Copy: Copy source code to clipboard
  • Export: Save as SVG or PNG

Examples

Timeline

infographic sequence-timeline-rounded-rect-node
data
  title Internet Technology Evolution
  desc From Web 1.0 to AI era
  items
    - time 1991
      label Web 1.0
      desc First website published
      icon mdi/web
    - time 2004
      label Web 2.0
      desc Social media emerges
      icon mdi/account-multiple
    - time 2023
      label AI Era
      desc Generative AI revolution
      icon mdi/brain
theme
  palette antv

Hierarchy

infographic hierarchy-structure
data
  title Company Structure
  items
    - label CEO
      children
        - label CTO
        - label CFO
        - label COO
theme
  palette antv

Comparison

infographic compare-binary-horizontal-badge-card-arrow
data
  title Decision Matrix
  items
    - label Option A
      children
        - label Strength 1
        - label Strength 2
    - label Option B
      children
        - label Weakness 1
        - label Weakness 2
theme
  palette antv

Chart

infographic chart-bar-plain-text
data
  title Annual Revenue Growth
  items
    - label 2021
      value 120
      icon lucide/sprout
    - label 2022
      value 150
      icon lucide/zap
    - label 2023
      value 190
      icon lucide/brain-circuit
    - label 2024
      value 240
      icon lucide/trophy
theme
  palette antv

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です