AugmentClaude

Figure Planner

Design manuscript figures by defining claims, assigning panel roles, and aligning legends with text.

Installation

  1. Make sure Claude is on your device and in your terminal.

    Skills load from ~/.claude/skills/ when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then run claude in any terminal to verify.

    One-time setup
    npm i -g @anthropic-ai/claude-code

    Already have it? Skip ahead.

  2. Paste into Claude Code or into your terminal.

    This copies the whole skill folder into ~/.claude/skills/figure-planner-boom5426/ — the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.

    Faster alternative (instruction-only skills)

    Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.

    Quick install (SKILL.md only)
    Sign up to copy
  3. Restart Claude Code.

    Quit and reopen Claude Code (or any other agent that loads from ~/.claude/skills/). New skills are picked up on startup.

  4. Just ask Claude.

    Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.

Prefer to read the source first? Open on GitHub.

When Claude uses it

Use when designing, restructuring, or auditing manuscript figures and you need to define one main claim per figure, assign panel roles, align legends with the text, or decide what belongs in main figures versus supplement.

What this skill does

Figure Planner

Overview

Use this skill when the bottleneck is no longer sentence writing but figure logic. The goal is to make each figure carry a defensible scientific job, keep the panel set coherent, and ensure that the legend and Results text tell the same story.

This skill is narrower than manuscript-optimizer. Use manuscript-optimizer when the whole paper structure is unstable. Use figure-planner when the central issue is what each figure should prove and how each panel should function.

When To Use

Use this skill when:

  • a figure feels overloaded, fragmented, or hard to summarize
  • the paper has too many Results subsections driven by panel count
  • it is unclear what belongs in the main figure versus the supplement
  • legends, panel letters, and Results text may have drifted apart
  • you need to redesign figure titles or panel grouping around claims rather than around plotting convenience

Do not use this skill for:

  • low-level visual styling only
  • final proofreading without figure changes
  • manuscript-wide claim restructuring that exceeds the figures themselves

Core Rule

Each main figure should earn its place by carrying one dominant claim.

If a figure cannot be summarized by one clean sentence, either:

  • split it,
  • demote part of it to the supplement,
  • or rewrite the figure around a clearer claim.

Panel Roles

Assign each panel one primary role before writing the legend or Results paragraph:

  • claim-supporting evidence
  • methodological bridge or definition
  • validation under a new regime
  • ranking or benchmark comparison
  • translational or practical consequence
  • case illustration
  • failure mode or limitation

Do not let one panel pretend to do three jobs at once.

Planning Order

  1. Write the single-sentence claim of the figure.
  2. List the minimum panels needed to support that claim.
  3. Assign each panel one role.
  4. Decide which panel is the anchor panel:
    • the panel the Results paragraph should revolve around
  5. Move secondary detail to:
    • another figure
    • the supplement
    • the legend
  6. Rewrite the figure title and legend to match the actual claim.
  7. Check that the Results subsection matches the same panel logic.

Main Figure Versus Supplement

Keep in the main figure:

  • the panels required to establish the core claim
  • the key comparison readers must see immediately
  • the panel that defines a new metric, decomposition, or evaluation regime when that definition is part of the argument

Move to the supplement:

  • robustness variants
  • denser method-by-method comparisons
  • extended cases
  • secondary ablations
  • additional examples that support but do not define the main claim

Legend Rules

Legends should do more than decode axes.

Each legend should:

  • define the role of each panel
  • preserve the key quantitative anchors omitted from the compressed main text
  • stay consistent with panel letters, metrics, datasets, and baselines
  • avoid interpretation that is stronger than the plotted evidence

Visual Hygiene Pass

After the figure logic is stable, run one visual-hygiene pass:

  • keep figure-internal fonts consistent and close to the manuscript's reading scale
  • prefer vector graphics for plots, diagrams, and schematic panels when possible
  • use a restrained palette; keep the same category in the same color family
  • avoid accidental salience from one panel or module being much darker or brighter unless that emphasis is deliberate
  • trim dead margins and unnecessary whitespace around panels
  • reduce text load inside the figure; let shapes, alignment, and grouping do more of the explanatory work
  • keep arrow direction and symbol conventions consistent when the figure is showing flow or process
  • borrow proven table or panel arrangements as layout references when useful, but do not inherit conference-template clutter by default

Common Failure Modes

  • one figure trying to carry multiple unrelated claims
  • panel order following plotting chronology instead of argument logic
  • methodological bridge panels described as generic motivation
  • Results text claiming something the legend or panel does not support
  • supplementary figures cited too vaguely when one panel is doing the real work
  • keeping weak auxiliary metrics at headline level instead of demoting them
  • inconsistent figure typography, whitespace, or color logic making the scientific comparison harder to read

Nature-Style Enhancements

Matplotlib Figure Standards

For figures targeting Nature or similar high-impact journals, apply the following rcParams:

import matplotlib.pyplot as plt

plt.rcParams['font.family'] = 'sans-serif'
plt.rcParams['font.sans-serif'] = ['Arial']
plt.rcParams['svg.fonttype'] = 'none'          # editable text in SVG/PDF
plt.rcParams['font.size'] = 16                 # 24 for large bar panels
plt.rcParams['axes.spines.right'] = False
plt.rcParams['axes.spines.top'] = False
plt.rcParams['axes.linewidth'] = 2.5           # 3 for big bars, 2 for compact
plt.rcParams['legend.frameon'] = False

Use text.usetex = True only when LaTeX is installed and math-rich labels are required.

Nature-Style Palette

When a figure needs a fixed, print-friendly palette, this warm Nature-style set works well for Nature Communications and similar journals. Give the baseline or reference series terracotta, then walk down the list for the remaining categories, keeping one category in one color family:

#C96144  terracotta (baseline / reference)   #99C290  light green
#E99D4E  amber                                #C0BEDC  light purple
#5185C0  blue                                 #8EA9D4  light blue
#8281B9  purple                               #F2CB9F  light amber
#55966B  green                                #99AABB  grey-blue
#FFB3C1  pink        #FFD3E0  light pink       #87CEEB  sky blue
NATURE_PALETTE = [
    "#C96144", "#E99D4E", "#5185C0", "#8281B9", "#55966B",
    "#99C290", "#C0BEDC", "#8EA9D4", "#F2CB9F", "#99AABB",
    "#FFB3C1", "#FFD3E0", "#87CEEB",
]

def nature_assign(labels, baseline=None):
    """Map labels to palette colors; the baseline label gets terracotta."""
    result, idx = {}, 0
    for label in labels:
        if label == baseline:
            result[label] = NATURE_PALETTE[0]
        else:
            result[label] = NATURE_PALETTE[min(idx + 1, len(NATURE_PALETTE) - 1)]
            idx += 1
    return result

When to Use

  • Figures for papers, slides, or reports targeting Nature, NeurIPS, ICLR, or similar venues.
  • Requests involving grouped bars, trend lines, heatmaps, radar plots, multi-panel grids, or PDF/SVG/high-DPI output.
  • Any mention of "Nature style", "publication figure", "paper figure", or "high-quality scientific plot".

Output Standard

When using this skill, produce:

  • the figure's one-sentence claim
  • the proposed panel list with roles
  • what stays in the main figure versus what moves to supplement
  • the legend logic
  • the visual-hygiene notes that still need attention
  • the matching Results subsection title or topic sentence

Related skills