Claude Code Plugin 'nice-figures' Creates Research-Blog Style Matplotlib Plots

nice-figures is a Claude Code skill that eliminates the boilerplate of recreating Anthropic's signature research-blog plot style (bold sans-serif titles, smoothed trend lines with shaded bands, rounded-top bars, and ↓better badges). You describe the chart in natural language—Claude auto-styles it.
How It Works
Install once, then prompt like:
/plugin marketplace add Mapika/nice-figures
/plugin install nice-figures@nice-figures
After installation, just describe the plot:
"training-curve plot of these RL scores with a smoothed trend and shaded band, research-blog style"
"grouped bar chart comparing three models across four evals, with the rounded bar tops"
You can supply your own CSV or arrays—the plugin maps them to the closest chart type. If you describe a figure without data, it generates a clearly-marked synthetic placeholder.
Under the Hood
The package consists of one skill + a small style helper (matplotlib + numpy only—no other dependencies) and 16 chart recipes including:
- Training curves
- Grouped bars (with rounded tops)
- ROC curves
- Heatmaps
- Scaling-law scatter plots
- Forest plots
- Pareto fronts
Output uses a white background by default for paper/conference-readiness, with an opt-in cream background for the blog aesthetic.
Source & License
MIT-licensed, repo with example images in the README at github.com/Mapika/nice-figures. The author is open to feedback and recipe requests.
📖 Read the full source: r/ClaudeAI
👀 See Also

LLM Architecture Gallery: Visual Reference for Model Designs
Sebastian Raschka's LLM Architecture Gallery collects architecture figures and fact sheets from The Big LLM Architecture Comparison and A Dream of Spring for Open-Weight LLMs, with detailed specs for models like Llama 3 8B, DeepSeek V3, and Gemma 3 27B.

AgentPeek: Open-source dashboard for monitoring Claude Code agent teams
AgentPeek is a local dashboard that hooks into Claude Code to provide visibility into agent teams, showing orchestration hierarchies, execution traces, token costs, and file operations. Installation requires cloning the GitHub repo and running pipx install.

Deploy OpenClaw on VPS with a One-Command CLI
A Reddit user claims to have developed a CLI that deploys OpenClaw on a $4.99/month VPS with a single command, offering a cost-effective alternative to using Mac Minis.

Phaselock: An AI Agent Control System Inspired by Parenting Techniques
Phaselock is an open-source Agent Skill that implements four control mechanisms for AI coding agents: explicit gates before action, immediate feedback on mistakes, constrained choices, and mechanical rule enforcement. It works with Claude Code, Cursor, Windsurf, and any tool supporting hooks.