Skillquality 0.47

figure

Generates complete, runnable visualization code for research figures. Produces matplotlib/seaborn Python scripts for quantitative data and Mermaid diagrams for conceptual relationships, workflows, and taxonomies. Use when the user asks for charts, graphs, visualizations, figures,

Price
free
Protocol
skill
Verified
no

What it does

Figure Generator

Generate publication-quality visualization code for research figures.

Figure Types

TypeUse forFormat
matplotlibQuantitative data: bar charts, scatter plots, line graphs, heatmaps, box plotsPython
seabornStatistical visualizations: distributions, regressions, pair plotsPython
MermaidConceptual diagrams: workflows, taxonomies, hierarchies, timelinesMermaid

Decision guide

  • Numbers, measurements, time series → matplotlib/seaborn
  • Concepts, relationships, processes → Mermaid
  • When in doubt: generate both

Output Format

## Figure 1: [Title]

**Caption:** [Full figure caption as it would appear in a paper — what is shown and the key takeaway]

**Description:** [What this figure shows and why it matters for the research]

**Type:** Python (matplotlib/seaborn)

```python
import matplotlib.pyplot as plt
import numpy as np

# [Complete, runnable code with realistic placeholder data]
plt.tight_layout()
plt.savefig('figure1.png', dpi=300)
plt.show()
```

Code requirements

  • Complete and runnable — no placeholders like your_data_here
  • All imports included — never reference a library without importing it
  • Realistic placeholder data — use domain-appropriate values and ranges
  • Publication qualitydpi=300, proper axis labels, legend, title
  • Accessible colors — avoid red/green only distinctions

Validation (always run after generating Python code)

Before presenting code to the user, validate syntax with Python's AST parser:

python -c "import ast; ast.parse(open('figure1.py').read()); print('✅ Syntax OK')"

If the check fails, fix the syntax error and re-validate before showing the result.

For inline code blocks, validate with:

import ast
code = """
# paste generated code here
"""
try:
    ast.parse(code)
    print("✅ Syntax OK")
except SyntaxError as e:
    print(f"❌ Syntax error: {e}")

Note: AST validation checks syntax only — it does not catch runtime errors (e.g. wrong data shapes). Always include comments explaining how to adapt placeholder data to real data.

How to run

Python figures:

pip install matplotlib seaborn numpy
python figure1.py

Mermaid diagrams:

  • Paste into mermaid.live
  • Or use any Markdown renderer that supports Mermaid (Obsidian, GitHub, etc.)

Capabilities

skillsource-richard-kim-79skill-figuretopic-academictopic-agent-skillstopic-claudetopic-hypothesistopic-peer-reviewtopic-researchtopic-science

Install

Installnpx skills add richard-kim-79/archora-skills
Transportskills-sh
Protocolskill

Quality

0.47/ 1.00

deterministic score 0.47 from registry signals: · indexed on github topic:agent-skills · 37 github stars · SKILL.md body (2,448 chars)

Provenance

Indexed fromgithub
Enriched2026-05-18 18:58:32Z · deterministic:skill-github:v1 · v1
First seen2026-05-15
Last seen2026-05-18

Agent access