Data Artist logo

Data Artist

CommunityPopular
foryourhealth111-pixel
data-artist

Create beautiful data visualizations with mathematical elegance, color theory, and narrative design - the "Data is Beautiful" aesthetic.

Overview

Publisherforyourhealth111-pixel
RepositoryVibe-Skills
Skill namedata-artist
Stars
3.3K
Forks
288
Bundled files
Instructions only
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by foryourhealth111-pixel on GitHub. Read the source before you install it.

Installation

Install the Data Artist AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/foryourhealth111-pixel/Vibe-Skills.git /tmp/Vibe-Skills
mkdir -p .claude/skills
cp -r /tmp/Vibe-Skills/bundled/skills/data-artist .claude/skills/data-artist
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Data Artist in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Data Artist on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Data Artist is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Data Artist

You are creating a work of data art. This skill brings together mathematical elegance, emotional resonance, narrative design, and technical excellence to transform raw data into something beautiful that tells a story and moves the viewer.

The "Data is Beautiful" Philosophy

Core Principles

  1. Life is Beautiful - Data visualization should reveal the wonder in information
  2. Mathematical Elegance - Perceptually accurate encodings, thoughtful scales
  3. Emotional Resonance - Create moments of awe, reflection, insight
  4. Swiss Minimalism - Clean geometry, purposeful color, no chartjunk
  5. Narrative Journey - Guide the viewer through a story

What Makes Data Beautiful

  • Clarity - The data speaks clearly without distortion
  • Proportion - Visual weight matches data importance
  • Rhythm - Patterns emerge naturally from the encoding
  • Surprise - Reveals insights not obvious in raw numbers
  • Humanity - Connects data to human experience

Visualization Domains

1. Mathematical Foundations (@geepers_datavis_math)

Scale Selection:

  • Linear for comparison
  • Log for orders of magnitude
  • Sqrt for area perception
  • Time scales for temporal data

Visual Encoding:

  • Position (most accurate)
  • Length/height (good)
  • Angle/slope (moderate)
  • Area (requires sqrt scaling)
  • Color intensity (least precise)

Perceptual Accuracy:

  • Ensure encodings don't mislead
  • Account for human perception biases
  • Use perceptually uniform color scales

2. Color Design (@geepers_datavis_color)

Palette Types:

  • Sequential: Low → High (single hue)
  • Diverging: Negative ↔ Neutral ↔ Positive
  • Categorical: Distinct groups (max 7-9)

Color Principles:

  • Perceptual uniformity (Lab/HCL color space)
  • Colorblind accessibility (avoid red-green only)
  • Emotional resonance (warm/cool, muted/vibrant)
  • Cultural considerations

Signature Palettes:

css
/* Elegant Sequential */
--seq-1: #F7FBFF;
--seq-2: #DEEBF7;
--seq-3: #9ECAE1;
--seq-4: #4292C6;
--seq-5: #084594;

/* Thoughtful Diverging */
--div-neg: #B2182B;
--div-neutral: #F7F7F7;
--div-pos: #2166AC;

/* Accessible Categorical */
--cat-1: #1B9E77;
--cat-2: #D95F02;
--cat-3: #7570B3;
--cat-4: #E7298A;
--cat-5: #66A61E;

3. Narrative Design (@geepers_datavis_story)

Story Arc:

  1. Hook - What draws the viewer in?
  2. Context - Why does this matter?
  3. Journey - Guide through the data
  4. Insight - The "aha" moment
  5. Reflection - What does it mean?

Emotional Calibration:

  • What emotion should viewers feel?
  • How do we honor the subject matter?
  • Where are moments of wonder/pause/reflection?

Metaphor Selection:

  • Timelines → Rivers, journeys
  • Networks → Galaxies, ecosystems
  • Proportions → Physical objects, scale comparisons
  • Change → Growth, transformation

4. Technical Implementation (@geepers_datavis_viz)

Tools:

  • D3.js for custom visualizations
  • Chart.js for standard charts
  • SVG for crisp, scalable graphics
  • Canvas for high-performance rendering

Interaction Patterns:

  • Hover for details
  • Click for drill-down
  • Drag for exploration
  • Scroll for revelation

Responsive Design:

  • Mobile-first
  • Touch-friendly interactions
  • Graceful degradation

5. Data Integrity (@geepers_datavis_data)

Source Verification:

  • Cite authoritative sources
  • Document methodology
  • Note limitations/caveats

Data Pipeline:

  • Clean, validated data
  • Reproducible transformations
  • Cached appropriately

Execution Strategy

For a new visualization, launch in PARALLEL:

1. @geepers_datavis_story - Define narrative arc and emotional journey
2. @geepers_datavis_math - Design encodings and scales
3. @geepers_datavis_color - Develop color palette
4. @geepers_datavis_data - Validate and prepare data

Then:

5. @geepers_datavis_viz - Technical implementation

Output Format

🎨 DATA ARTIST BRIEF

Visualization: {title}
Data Source: {source}
Story: {one-line narrative}

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           NARRATIVE DESIGN
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Central Question: {what we're answering}

Emotional Journey:
Entry → Curiosity
Middle → {surprise/concern/wonder}
Exit → {reflection/action/understanding}

Metaphor: {chosen metaphor and rationale}

Key Insight: {the "aha" moment}

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       MATHEMATICAL APPROACH
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Visualization Type: {bar/line/scatter/custom}

Encodings:
- X-axis: {variable} → {encoding}
- Y-axis: {variable} → {encoding}
- Color: {variable} → {encoding}
- Size: {variable} → {encoding}

Scale Choices:
- {scale type with rationale}

Perceptual Considerations:
- {any adjustments needed}

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
          COLOR PALETTE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Palette Type: {sequential/diverging/categorical}

Colors:
🔵 Primary: #2563EB - {meaning}
⚪ Neutral: #F8FAFC - {purpose}
🔴 Accent: #DC2626 - {usage}

Accessibility:
✓ Colorblind safe (simulated)
✓ Contrast ratio > 4.5:1

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
         IMPLEMENTATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Technology: {D3.js/Chart.js/SVG}

Key Components:
1. {component} - {purpose}
2. {component} - {purpose}

Interactions:
- Hover: {behavior}
- Click: {behavior}

Animation:
- Entry: {animation description}
- Update: {transition behavior}

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
          BEAUTY SCORE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Mathematical Elegance: ★★★★☆
Color Harmony: ★★★★★
Narrative Clarity: ★★★☆☆
Technical Polish: ★★★★☆
Emotional Impact: ★★★★☆

Overall: "Data is Beautiful" certified ✨

Visualization Types & When to Use

TypeBest ForAvoid When
Bar ChartComparing categoriesToo many categories (>12)
Line ChartTrends over timeDiscrete, unordered data
Scatter PlotRelationshipsOverplotting (use density)
Pie ChartPart-of-whole (few)>5 segments
TreemapHierarchical proportionsDeep hierarchies
Force NetworkRelationships>100 nodes without clustering
ChoroplethGeographic patternsUnequal area regions
TimelineTemporal eventsToo many overlapping events

Anti-Patterns to Avoid

  • ❌ Chartjunk (unnecessary decoration)
  • ❌ 3D effects that distort perception
  • ❌ Truncated axes that exaggerate
  • ❌ Rainbow color scales (not perceptually uniform)
  • ❌ Dual Y-axes (confusing comparisons)
  • ❌ Pie charts for comparison
  • ❌ Too much data (know when to aggregate)

Inspiration Sources

  • r/dataisbeautiful - Community examples
  • Information is Beautiful - David McCandless
  • Flowing Data - Nathan Yau
  • NYT Graphics - Journalism excellence
  • Observable - D3 community

Key Principles

  1. Data first - Let the data guide design decisions
  2. Less is more - Remove until it breaks
  3. Perception matters - Account for how humans see
  4. Tell a story - Every visualization has a narrative
  5. Respect the subject - Honor what the data represents

Frequently asked questions

What does the Data Artist AI skill do?

Create beautiful data visualizations with mathematical elegance, color theory, and narrative design - the "Data is Beautiful" aesthetic.

Why use Data Artist on TypingMind?

Because you install it once and use it with any model. Data Artist is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Data Artist in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/foryourhealth111-pixel/Vibe-Skills/tree/main/bundled/skills/data-artist. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Data Artist?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Data Artist?

As many as you like. As long as a model supports skills, you can use Data Artist with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Data Artist AI skill free?

Yes. It is published on GitHub by foryourhealth111-pixel under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇