scientific-visualization

scientific-visualization is a skill for Claude Code, Codex from dralkh/iktinah. It costs 72 tokens per session (6,484 once invoked), scanned A, a copy of scientific-visualization, MIT.

A guide for creating publication-ready scientific charts and figures. It covers multi-panel layouts, error bars, significance markers, accessible colours, journal formatting, and exports such as PDF, EPS, and TIFF.

In plain words
What is it for?
Use it to prepare manuscript figures, format plots for journals such as Nature or Science, improve existing charts, and export them in required formats.
Why use it?
It helps make data figures accurate, readable, and suitable for research papers or journal submissions. It also addresses consistency across panels and readability in colour or grayscale.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to prepare manuscript figures, format plots for journals such as Nature or Science, improve existing charts, and export them in required formats.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dralkh/iktinah/scientific-visualization
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dralkh/iktinah --skill scientific-visualization
Clone the repo
git clone --depth 1 https://github.com/dralkh/iktinah

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for scientific-visualization

README.md
[![agentmods](https://agentmods.dev/badge/skills/dralkh/iktinah/scientific-visualization/github.svg)](https://agentmods.dev/skills/dralkh/iktinah/scientific-visualization)
Your own site
<a href="https://agentmods.dev/skills/dralkh/iktinah/scientific-visualization"><img src="https://agentmods.dev/badge/skills/dralkh/iktinah/scientific-visualization/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for scientific-visualization

Your own site · 80×15
<a href="https://agentmods.dev/skills/dralkh/iktinah/scientific-visualization"><img src="https://agentmods.dev/badge/skills/dralkh/iktinah/scientific-visualization.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,484 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00072 $0.06484
Opus 5 $0.00036 $0.03242
Sonnet 5 $0.00014 $0.01297
Haiku 4.5 $0.00007 $0.00648

Measured 5d ago against content hash d63d0d42d93c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

scientific-visualization scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (assets/color_palettes.py, scripts/figure_export.py, scripts/style_presets.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to scientific-visualization — 11 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/scientific-visualization/SKILL.md · 777 lines

How it starts

The opening of the file, as written. The whole thing — 777 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Scientific Visualization

Overview

Scientific visualization transforms data into clear, accurate figures for publication. Create journal-ready plots with multi-panel layouts, error bars, significance markers, and colorblind-safe palettes. Export as PDF/EPS/TIFF using matplotlib, seaborn, and plotly for manuscripts.

When to Use This Skill

This skill should be used when:

  • Creating plots or visualizations for scientific manuscripts
  • Preparing figures for journal submission (Nature, Science, Cell, PLOS, etc.)
  • Ensuring figures are colorblind-friendly and accessible
  • Making multi-panel figures with consistent styling
  • Exporting figures at correct resolution and format
  • Following specific publication guidelines
  • Improving existing figures to meet publication standards
  • Creating figures that need to work in both color and grayscale

Quick Start Guide

Basic Publication-Quality Figure

import matplotlib.pyplot as plt
import numpy as np

# Apply publication style (from scripts/style_presets.py)
from style_presets import apply_publication_style
apply_publication_style('default')

# Create figure with appropriate size (single column = 3.5 inches)
fig, ax = plt.subplots(figsize=(3.5, 2.5))

# Plot data
x = np.linspace(0, 10, 100)
ax.plot(x, np.sin(x), label='sin(x)')
ax.plot(x, np.cos(x), label='cos(x)')

# Proper labeling with units
ax.set_xlabel('Time (seconds)')
ax.set_ylabel('Amplitude (mV)')
ax.legend(frameon=False)

# Remove unnecessary spines
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)

# Save in publication formats (from scripts/figure_export.py)
from figure_export import save_publication_figure
save_publication_figure(fig, 'figure1', formats=['pdf', 'png'], dpi=300)

Using Pre-configured Styles

Apply journal-specific styles using the matplotlib style files in assets/:

import matplotlib.pyplot as plt

# Option 1: Use style file directly
plt.style.use('assets/nature.mplstyle')

# Option 2: Use style_presets.py helper
from style_presets import configure_for_journal
configure_for_journal('nature', figure_width='single')

# Now create figures - they'll automatically match Nature specifications
fig, ax = plt.subplots()
# ... your plotting code ...

Read the full file on GitHub · 777 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 777 lines · 72 tokens per session scan A d63d0d42d93c

Subscribe to this mod's changes

scientific-visualization is a skill published in the GitHub repository dralkh/iktinah (77 stars, last pushed 2mo ago), licensed MIT. It adds 72 tokens to every session and 6,484 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to scientific-visualization, differing in 11 lines, and is treated as a copy.

Related

Other skills, from other repositories

Figure Styling Skills Index

Aesthetic guidelines and output-type recipes for scientific figure production. Supports lightweight default-agent use through SKILL.md + one outputType recipe, with optional venue-specific style guides when requested.

aristoteleo/PantheonOS · 41 tokens

abstraction-to-design

Abstract biological principle to design principle. Bridge from biology to engineering.

yogsoth-ai/de-anthropocentric-research-engine · 18 tokens

academic-plotting

Generates publication-quality figures for ML papers from research context. Given a paper section or description, extracts system components and relationships to generate architecture diagrams via Gemini. Given experiment results or data, auto-selects chart type and generates data-driven figures via matplotlib/seaborn.…

brycewang-stanford/Auto-Empirical-Research-Skills · 68 tokens

scientific-visualization

Meta-skill for publication-ready figures. Use when creating journal submission figures requiring multi-panel layouts, significance annotations, error bars, colorblind-safe palettes, and specific journal formatting (Nature, Science, Cell). Orchestrates matplotlib/seaborn/plotly with publication styles. For quick…

xintaofei/codeg · 72 tokens

academic-poster

A guide for turning a research paper or abstract into a printable academic conference poster. It covers large single-page layouts, including traditional columns and a design that enlarges the main finding.

Nero1688/claude-academic-skills · 298 tokens

paper-banana

Academic diagram and workflow aesthetic evolution engine.

tao3k/xiuxian-artisan-workshop · 12 tokens