figure-drawing

figure-drawing is a skill for Claude Code from nanoAgentTeam/research-claw. It costs 62 tokens per session (1,185 once invoked), scanned A, original, MIT.

A guide for creating figures in academic papers, such as diagrams, charts, tables, timelines, and TikZ graphics. TikZ is a LaTeX tool for drawing structured graphics.

In plain words
What is it for?
Use it to plan and create standalone figures for papers, including flowcharts, architecture diagrams, taxonomy trees, charts, comparison tables, and timelines.
Why use it?
It keeps drawings separate from the paper text, compiles them into image files, and checks them before they are included.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to plan and create standalone figures for papers, including flowcharts, architecture diagrams, taxonomy trees, charts, comparison tables, and timelines.

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

Made for: Claude Code.

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 figure-drawing

README.md
[![agentmods](https://agentmods.dev/badge/skills/nanoagentteam/research-claw/figure-drawing.svg)](https://agentmods.dev/skills/nanoagentteam/research-claw/figure-drawing)
Your own site
<a href="https://agentmods.dev/skills/nanoagentteam/research-claw/figure-drawing"><img src="https://agentmods.dev/badge/skills/nanoagentteam/research-claw/figure-drawing.svg" alt="Measured on agentmods" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,185 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.00062 $0.01185
Opus 5 $0.00031 $0.00593
Sonnet 5 $0.00012 $0.00237
Haiku 4.5 $0.00006 $0.00119

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

Security

Grade A, and why

figure-drawing 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 8d ago.

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.

config/.skills/figure-drawing/SKILL.md · 127 lines

How it starts

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

Academic Figure Drawing

CRITICAL RULES (read first)

  1. NEVER inline TikZ code into paper sections. No \begin{tikzpicture} inside sections/*.tex or main.tex.
  2. NEVER \input{figures/xxx.tex} a raw .tex file. The paper must use \includegraphics.
  3. Every figure = standalone .tex → compile → PDF/PNG → \includegraphics.
  4. Always compile and verify the standalone figure before inserting into the paper.

SOP

Step 1: Plan the figure

Before writing any code, decide:

  • Type: taxonomy tree, architecture diagram, flowchart, bar/line chart, comparison table, timeline
  • Content: what nodes/elements to show (read the relevant paper sections first)
  • Layout direction: top-to-bottom or left-to-right (pick whichever avoids crowding)
  • Estimated element count: if > 20 nodes, split into multiple figures

Step 2: Write the TikZ source

Write a standalone .tex file in figures/:

\documentclass[tikz,border=10pt]{standalone}
\usepackage[T1]{fontenc}
\usepackage{tikz}
\usetikzlibrary{positioning, arrows.meta, shapes, fit, backgrounds}
% Add other libraries as needed

\begin{document}
\begin{tikzpicture}[...]
  % figure content
\end{tikzpicture}
\end{document}

Step 3: Compile to PDF, then convert to PNG

cd figures/
pdflatex -interaction=nonstopmode xxx.tex
# Convert PDF to PNG (try available tools in order)
pdftoppm -png -r 300 xxx.pdf xxx_fig  # produces xxx_fig-1.png
# OR: convert xxx.pdf -density 300 xxx.png
# OR: sips -s format png xxx.pdf --out xxx.png  (macOS)

If pdftoppm / convert / sips are all unavailable, keep the PDF and use \includegraphics{figures/xxx.pdf} as fallback.

Step 4: Insert into paper

\begin{figure}[t]
  \centering
  \includegraphics[width=\columnwidth]{figures/xxx.png}
  \caption{Descriptive caption.}
  \label{fig:xxx}
\end{figure}

Step 5: Visual check

After compiling the full paper, verify the figure renders correctly and is referenced in the text with \ref{fig:xxx}.

Read the full file on GitHub · 127 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. 8d ago First seen · 127 lines · 62 tokens per session scan A 943822d5e9c4

Subscribe to this mod's changes

figure-drawing is a skill published in the GitHub repository nanoAgentTeam/research-claw (292 stars, last pushed 3mo ago), licensed MIT. It adds 62 tokens to every session and 1,185 once invoked, about $0.0003 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

extracting-lab-tables

Detects and extracts tabular laboratory panels from PDFs, scans, and images into structured rows ready for OpenMed and FHIR. Use when the user has a CBC, CMP, lipid panel, or other lab report as a scanned image / PDF / spreadsheet and needs the test name, value, unit, reference range, and abnormal flag as clean rows.…

maziyarpanahi/openmed · 210 tokens

paper-length-gate

Deterministic artifact-backed manuscript readiness gate for meta-paper-write. Validates the workspace LaTeX artifact before compilation while leaving final page-count enforcement to compilepdf.

opensquilla/opensquilla · 38 tokens

paper-plot-stub

Plot a results CSV (x, ybaseline, yours) as a two-line matplotlib chart and write a PDF. Demo-only.

opensquilla/opensquilla · 35 tokens

light-typesetting

Build and preflight submission-ready LaTeX/PDF artifacts for Light stage 11. Use when receiving a paper-writing manuscript, figure delivery, citation delivery.json/references.bib/citekey-audit.json, or a venue/template profile; when selecting pdfLaTeX/XeLaTeX/LuaLaTeX and BibTeX/Biber; when diagnosing LaTeX errors or…

Light0305/Light-skills · 169 tokens

latex-compile

Compile a LaTeX document and fix every error plus aesthetic issue (overfull/underfull boxes, widows, alignment, fonts) for a clean PDF and log. Use this instead of running pdflatex/latexmk manually — it avoids the latexmk stale-log trap and silent grep failures on binary log output, and it reformats rather than…

Mexregkan/claude-for-researchers · 79 tokens

overleaf

Sync and manage Overleaf LaTeX projects from the command line. Pull projects locally, push changes back, compile PDFs, and download compile outputs like .bbl files for arXiv submissions. Use when working with LaTeX, Overleaf, academic papers, or arXiv.

aloth/overleaf-skill · 62 tokens