skills/scientific-schematics/SKILL.md
Scientific schematics and diagrams transform complex concepts into clear visual representations for publication. This skill uses Nano Banana 2 AI for diagram generation with Gemini 3.6 Flash quality review.
How it works:
Quality Thresholds by Document Type:
| Document Type | Threshold | Description |
|---|---|---|
| journal | 8.5/10 | Nature, Science, peer-reviewed journals |
| conference | 8.0/10 | Conference papers |
| thesis | 8.0/10 | Dissertations, theses |
| grant | 8.0/10 | Grant proposals |
| preprint | 7.5/10 | arXiv, bioRxiv, etc. |
| report | 7.5/10 | Technical reports |
| poster | 7.0/10 | Academic posters |
| presentation | 6.5/10 | Slides, talks |
| default | 7.5/10 | General purpose |
Simply describe what you want, and Nano Banana 2 creates it. All diagrams are stored in the figures/ subfolder and referenced in papers/posters.
What the output is: a raster PNG at whatever resolution the image model returns. This skill has no vector path and no DPI control — if a journal demands PDF, EPS, or 300 dpi TIFF, convert the PNG downstream and check the result at final print size.
Create any scientific diagram by simply describing it. Nano Banana 2 handles everything automatically with smart iteration:
# Generate for journal paper (highest quality threshold: 8.5/10)
python scripts/generate_schematic.py "CONSORT participant flow diagram with 500 screened, 150 excluded, 350 randomized" -o figures/consort.png --doc-type journal
# Generate for presentation (lower threshold: 6.5/10 - faster)
python scripts/generate_schematic.py "Transformer encoder-decoder architecture showing multi-head attention" -o figures/transformer.png --doc-type presentation
# Generate for poster (moderate threshold: 7.0/10)
python scripts/generate_schematic.py "MAPK signaling pathway from EGFR to gene transcription" -o figures/mapk_pathway.png --doc-type poster
# Custom max iterations (max 2)
python scripts/generate_schematic.py "Complex circuit diagram with op-amp, resistors, and capacitors" -o figures/circuit.png --iterations 2 --doc-type journal
What happens behind the scenes:
Smart Iteration Benefits:
Output: Versioned images (name_v1.png, name_v2.png), a copy of the winner at the path you
asked for, and name_review_log.json with the score, critique, and early-stop reason per iteration.
When the review cannot run — a rate limit, a content filter, a reviewer that answers in some
unexpected shape — the image is still generated and saved, but no score is invented for it. The log
records "score": null and "reviewed": false with the reason in "review_error", and the run
prints Review unavailable — image kept, quality not verified. Treat that image as unchecked and
look at it yourself; re-running is worth a try, since the failure is usually transient.
Set your OpenRouter API key:
export OPENROUTER_API_KEY='your_api_key_here'
Get an API key at: https://openrouter.ai/keys
Data leaves the machine. Your prompt is sent to OpenRouter to generate the image, and the generated image is sent back to OpenRouter for the quality review. Both are subject to OpenRouter's data policies and those of the underlying model providers. Do not describe unpublished data, patient information, or anything under embargo in the prompt.
Effective Prompts for Scientific Diagrams:
✓ Good prompts (specific, detailed):
✗ Avoid vague prompts:
Key elements to include:
Scientific Quality Guidelines (automatically applied):
This skill should be used when:
Simply describe your diagram in natural language. Nano Banana 2 generates it automatically:
python scripts/generate_schematic.py "your diagram description" -o output.png
That's it! The AI handles:
Works for all diagram types:
No coding, no templates, no manual drawing required.
The generate-review-refine loop, the Python API and command-line options, prompt engineering guidance, and four worked examples (CONSORT flowchart, neural network architecture, biological pathway, system architecture) are in references/iterative_refinement.md.
The loop stops as soon as the review passes, so a simple diagram usually costs one iteration; only complex figures use the full budget.
The main entry point for generating scientific schematics:
# Basic usage
python scripts/generate_schematic.py "diagram description" -o output.png
# Custom iterations (max 2)
python scripts/generate_schematic.py "complex diagram" -o diagram.png --iterations 2
# Verbose mode
python scripts/generate_schematic.py "diagram" -o out.png -v
Note: The Nano Banana 2 AI generation system includes automatic quality review in its iterative refinement process. Each iteration is evaluated for scientific accuracy, clarity, and accessibility.
The generator applies all of these by default, but naming them in your own words for the specific diagram works better than relying on the built-in guidelines alone.
For a journal that requires vector art or 300+ dpi TIFF, convert the PNG after generation and check the result at the size it will actually be printed.
\includegraphics{} for generated imagesGeneration is stochastic and iteration is capped at 2, so the levers that actually change the
outcome are the prompt, the document type, and re-running. There is no post-processing step and no
quality-checking library in this skill: everything you can inspect lives in the generated PNG and
in <name>_review_log.json.
Overlapping text, crowded elements, or arrows that miss their targets
Content is scientifically wrong or a component is missing
critique field in the review log: the reviewer usually names what it saw missingWrong text in labels, or figure numbering baked into the image
Score is lower than the diagram deserves
--doc-type journal demands 8.5A run stops at a score below the threshold
--iterations 2 is the maximum; the last image is kept and reported
with its real score"score": null and "reviewed": false in the log
"review_error", look at the image yourself, and re-runError: OPENROUTER_API_KEY not found
export OPENROUTER_API_KEY='sk-or-v1-...', or add it to a .env file, or pass --api-keyError: requests library not found
uv pip install requestsAny API error — run with -v to see the request, the model slug, and the full error body
Load these files for comprehensive information on specific topics:
references/iterative_refinement.md - The generate-review-refine loop, the Python API, every
command-line option, prompt engineering guidance, and four worked examplesreferences/best_practices.md - Publication standards and accessibility guidelines to draw
on when writing prompts and when judging the resultPublication Standards
This skill works synergistically with:
Before submitting diagrams, verify:
<name>_review_log.json exists and "reviewed" is true on the final iteration"final_score" is a real number, not null, and meets the threshold for your document type"critique" — the reviewer's remaining issues are listed even on a passing score_v1 and _v2 and keep the better one\ref{} points to correct figure)# Required
export OPENROUTER_API_KEY='your_api_key_here'
# Get key at: https://openrouter.ai/keys
Simplest possible usage:
python scripts/generate_schematic.py "your diagram description" -o output.png
Use this skill to create clear, accessible, publication-quality diagrams that effectively communicate complex scientific concepts. The AI-powered workflow with iterative refinement ensures diagrams meet professional standards.