plot-styling

plot-styling is a skill for Claude Code from neuromechanist/research-skills. It costs 177 tokens per session (2,110 once invoked), scanned A, original, BSD-3-Clause.

Guidance for making publication-ready data plots in Python with Matplotlib, Seaborn, or Plotnine.

In plain words
What is it for?
Use it to create and style line, scatter, bar, statistical, faceted, and other plots for papers.
Why use it?
It helps choose a suitable plotting library and avoid unreadable labels, inconsistent styling, and export problems when figures are resized.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the figures plugin — 7 skills, 1 agent shipped together

Good fit Use it to create and style line, scatter, bar, statistical, faceted, and other plots for papers.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/neuromechanist/research-skills/plot-styling
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 neuromechanist/research-skills --skill plot-styling
Clone the repo
git clone --depth 1 https://github.com/neuromechanist/research-skills

Made for: Claude Code.

Or install figures, the plugin that ships this one along with the rest of its 7 skills, 1 agent.

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 plot-styling

README.md
[![agentmods](https://agentmods.dev/badge/skills/neuromechanist/research-skills/plot-styling/github.svg)](https://agentmods.dev/skills/neuromechanist/research-skills/plot-styling)
Your own site
<a href="https://agentmods.dev/skills/neuromechanist/research-skills/plot-styling"><img src="https://agentmods.dev/badge/skills/neuromechanist/research-skills/plot-styling/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 plot-styling

Your own site · 80×15
<a href="https://agentmods.dev/skills/neuromechanist/research-skills/plot-styling"><img src="https://agentmods.dev/badge/skills/neuromechanist/research-skills/plot-styling.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 177 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,110 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found 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.00177 $0.02110
Opus 5 $0.00088 $0.01055
Sonnet 5 $0.00035 $0.00422
Haiku 4.5 $0.00018 $0.00211

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

Security

Grade A, and why

plot-styling 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 10d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (examples/matplotlib-element.py, examples/sciplots_panel.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.

plugins/figures/skills/plot-styling/SKILL.md · 115 lines

How it starts

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

Plot Styling

Choose the right Python plotting library for the chart type, then apply journal-quality defaults so the panel that comes out of savefig is ready for the [[scientific-figure]] composer — no manual cleanup, no font-size firefighting, no chart junk.

Two questions, two minutes

  1. What chart type am I drawing? That answer picks the library (references/library-decision-tree.md).
  2. Which journal am I targeting? That answer picks the style sheet and font minimum (references/sciplots-recipes.md).

Run those choices through the export conventions below and the output SVG should pass figure-qa's plot-script branch and feed scientific-figure without scale-down surprises.

Library decision tree (summary)

Chart type Library Why
Line / scatter / bar with custom layout matplotlib Most control; the lingua franca. Pair with SciencePlots styles to fix defaults.
Statistical (box, violin, regression, faceted) seaborn Better defaults than matplotlib; less code for the common cases. Built on top of matplotlib so the SciencePlots style still applies.
Grammar-of-graphics / R-style faceting plotnine Same geom_* API as ggplot2 without the rpy2 bridge.
Interactive HTML supplement (deck / dashboard) plotly Use plotly for the interactive companion; ship a matplotlib version for print.
3D / volumetric / mesh PyVista (when interactive matters) or matplotlib 3d (for static print) matplotlib 3d is acceptable for simple panels; PyVista when the figure is the interaction.
Already in matplotlib, output looks ugly stay matplotlib + SciencePlots plt.style.use(['science', 'nature']) fixes 80% of "ugly defaults" complaints without rewriting.

Full decision tree with concrete code snippets per branch: references/library-decision-tree.md.

Journal-quality defaults (matplotlib / seaborn)

The cleanest path is to install SciencePlots and apply its style sheet at the top of every plot script. The relevant style names:

Read the full file on GitHub · 115 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 115 lines · 177 tokens per session scan A 7e8a9434fa78

Subscribe to this mod's changes

plot-styling is a skill published in the GitHub repository neuromechanist/research-skills (45 stars, last pushed 7d ago), licensed BSD-3-Clause. It adds 177 tokens to every session and 2,110 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

imaging-data-commons

Query and download public cancer imaging data from NCI Imaging Data Commons using idc-index. Use for accessing large-scale radiology (CT, MR, PET) and pathology datasets for AI training or research. No authentication required. Query by metadata, visualize in browser, check licenses.

foryourhealth111-pixel/Vibe-Skills · 62 tokens

LQF_Machine_Learning_Expert_Guide

LQF Machine Learning Expert Guide - Routed skill for ML/Statistical Modeling with Critical Discussion Mode. Triggers on: machine learning, modeling, prediction, training, classification, regression, clustering, deep learning, neural network, model evaluation, feature engineering, hyperparameter tuning, overfitting…

foryourhealth111-pixel/Vibe-Skills · 152 tokens

scientific-data-preprocessing

⚠️ CRITICAL USER EXPERIENCE-BASED SKILL - ALWAYS CONSULT BEFORE DATA PREPROCESSING ⚠️ Prevents catastrophic errors (88.9% error rate in V1.0 case study) through multi-level feature analysis, data leakage detection, and semantic validation. MANDATORY for: data preprocessing, feature engineering, standardization…

foryourhealth111-pixel/Vibe-Skills · 137 tokens

godot-optimization

Use when optimizing Godot games — profiler, draw calls, physics tuning, memory management, and common bottlenecks.

jame581/GodotPrompter · 28 tokens

ml

ML development and experimentation.

arbazkhan971/godmode · 7 tokens

nlp-pipeline-designer

Conception de pipelines NLP (tokenization, embeddings, NER, sentiment, summarization) — guide opérationnel avec snippets, critères de décision et anti-patterns. Se déclenche avec : \"NLP\", \"traitement du langage\", \"NER\", \"sentiment analysis\", \"text classification\", \"spaCy\", \"HuggingFace\". Se déclenche…

khalilbenaz/claude-skills-collection · 133 tokens