Agent skill

cell-figure-guide

Cell (Cell Press) figure preparation: resolution (300-1000 DPI), formats (TIFF/PDF), RGB color, Avenir/Arial fonts, uppercase panel labels, strict image manipulation policies.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill cell-figure-guide --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 14 KB
Bundled scripts: none
Version: 1.0
Requires: Python 3.10+, Pillow, Matplotlib
Path: skills/sciagent/cell-figure-guide/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Cell Figure Preparation Guide ## Overview This guide provides the complete specifications for preparing figures for submission to **Cell** and other Cell Press journals (e.g., Cell Stem Cell, Cell Reports, Molecular Cell). Cell Press has strict figure requirements and a rigorous image integrity policy. **Official reference**: https://www.cell.com/information-for-authors/figure-guidelines --- ## Resolution Requirements | Image Type | Minimum Resolution | Notes | |---|---|---| | Color / Grayscale photographs | **300 DPI** | At desired print size | | Black-and-white images | **500 DPI** | At desired print size | | Line art (graphs, diagrams) | **1,000 DPI** | At desired print size | **IMPORTANT**: All resolution measurements are at the **desired print size**, not at full-page size. ### Verify Resolution ```python from PIL import Image def check_cell_resolution(image_path, image_type='color'): """Check if image meets Cell journal resolution requirements. Args: image_path: Path to the image file image_type: 'color' (300 DPI), 'bw' (500 DPI), or 'lineart' (1000 DPI) """ min_dpi = {'color': 300, 'bw': 500, 'lineart': 1000} required = min_dpi.get(image_type, 300) img = Image.open(image_p

What's inside
Steps it walks through
  1. Overview
  2. Resolution Requirements
  3. Verify Resolution
  4. File Format
  5. Preferred Formats
  6. Also Accepted
  7. File Size
  8. Submission Notes
  9. Figure Size and Dimensions
  10. 2-Column Format Journals (Cell, Molecular Cell, etc.)
  11. 3-Column Format Journals
  12. Other Cell Press Journals (Chem, Joule, Matter, etc.)
  13. Python: Set Cell Figure Dimensions
  14. Color Mode
More from awesome-bio-agent-skills
All skills →
About this skill
What does the cell-figure-guide skill do?

Cell (Cell Press) figure preparation: resolution (300-1000 DPI), formats (TIFF/PDF), RGB color, Avenir/Arial fonts, uppercase panel labels, strict image manipulation policies.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill cell-figure-guide --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From BioTender-max/awesome-bio-agent-skills, a repository with 135 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going