nano-banana-pro-openrouter

nano-banana-pro-openrouter is a skill for Claude Code from opensquilla/opensquilla. It costs 49 tokens per session (888 once invoked), scanned A, original, Apache-2.0.

A controlled OpenRouter adapter for generating images with Nano Banana Pro or Gemini image models during automated workflows.

In plain words
What is it for?
Use it to generate image slots, save image files to a supplied folder, and emit structured records that a larger webpage-generation process can consume.
Why use it?
It keeps credentials out of commands and saved run data, validates the provider handoff, and reports successful or failed image generation in a fixed format.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Good fit Use it to generate image slots, save image files to a supplied folder, and emit structured records that a larger webpage-generation process can consume.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/opensquilla/opensquilla/nano-banana-pro-openrouter
About the project

OpenSquilla is a token-efficient AI agent with a shared execution loop for CLI, web, and chat interfaces. It routes requests among language models, while providing persistent memory, sandboxing, web search, embeddings, and tool handling for agent-based tasks. Its catalogue entries are skills that extend the agent's workflows.

opensquilla/opensquilla · 6,940 stars · on GitHub · opensquilla.ai

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 opensquilla/opensquilla --skill nano-banana-pro-openrouter
Clone the repo
git clone --depth 1 https://github.com/opensquilla/opensquilla

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 nano-banana-pro-openrouter

README.md
[![agentmods](https://agentmods.dev/badge/skills/opensquilla/opensquilla/nano-banana-pro-openrouter/github.svg)](https://agentmods.dev/skills/opensquilla/opensquilla/nano-banana-pro-openrouter)
Your own site
<a href="https://agentmods.dev/skills/opensquilla/opensquilla/nano-banana-pro-openrouter"><img src="https://agentmods.dev/badge/skills/opensquilla/opensquilla/nano-banana-pro-openrouter/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for nano-banana-pro-openrouter

Your own site · 80×15
<a href="https://agentmods.dev/skills/opensquilla/opensquilla/nano-banana-pro-openrouter"><img src="https://agentmods.dev/badge/skills/opensquilla/opensquilla/nano-banana-pro-openrouter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 888 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.00049 $0.00888
Opus 5 $0.00024 $0.00444
Sonnet 5 $0.00010 $0.00178
Haiku 4.5 $0.00005 $0.00089

Measured 12d ago against content hash dedbb140c877, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

nano-banana-pro-openrouter 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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/openrouter_image.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

src/opensquilla/skills/bundled/nano-banana-pro-openrouter/SKILL.md · 93 lines

How it starts

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

Nano Banana Pro OpenRouter Adapter

This skill is a deterministic adapter around OpenRouter image generation. It is intended for meta-skill skill_exec use, not as an open-ended agent surface.

Contract

  • During MetaSkill execution, accepts only the parent-resolved, process-local provider lease. The credential, endpoint, and proxy never enter with, argv, the plan, or persisted run data. Direct standalone CLI use may still provide OPENROUTER_API_KEY.
  • Does not read .env files, prompt for credentials, print credentials, or write credentials to disk.
  • Uses only the model, base URL, output directory, and local path prefix passed by the caller.
  • Saves generated image bytes under the supplied output directory.
  • Emits one IMAGE_READY: JSON line per saved image.
  • A missing/invalid required MetaSkill lease exits 78 before any provider submission. Provider failures after submission emit IMAGE_GENERATION_FAILED with exit 0 so the webpage can bind a replacement slot without auto-replay.

Meta-Skill Payload Mode

When stdin is JSON containing media_slots, image_slots, slots, or page_outline, the adapter generates image slots and preserves already downloaded images. Structured slots are preferred over free-form outline text:

{
  "requirement_framing": "...",
  "media_slots": {"slots": [{"slot_id": "hero-visual", "modality": "image"}]},
  "page_outline": "...",
  "image_download": "...",
  "include_images": "YES",
  "visual_style": "..."
}

Existing IMAGE_READY: records in image_download are preserved. If IMAGE_DOWNLOAD_INCOMPLETE: lists unfilled_slot_ids, only those slots are generated. If the caller requested images but both structured slots and outline slot parsing are empty, the adapter synthesizes minimal webpage-safe image slots from the brief instead of emitting no_image_slots_to_generate.

Plain Prompt Mode

When stdin is plain text, the adapter generates one image using that text as the prompt and the --filename stem as the slot_id.

Read the full file on GitHub · 93 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 93 lines · 49 tokens per session scan A dedbb140c877

Subscribe to this mod's changes

nano-banana-pro-openrouter is a skill published in the GitHub repository opensquilla/opensquilla (6,940 stars, last pushed 5d ago), licensed Apache-2.0. It adds 49 tokens to every session and 888 once invoked, about $0.0002 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

torch-geometric

Graph Neural Networks (PyG). Node/graph classification, link prediction, GCN, GAT, GraphSAGE, heterogeneous graphs, molecular property prediction, for geometric deep learning.

synthetic-sciences/openscience · 41 tokens

esm

Comprehensive toolkit for protein language models including ESM3 (generative multimodal protein design across sequence, structure, and function) and ESM C (efficient protein embeddings and representations). Use this skill when working with protein sequences, structures, or function prediction; designing novel…

synthetic-sciences/openscience · 86 tokens

structure-prediction

Protein structure prediction from sequence. ESMFold-based, single GPU, no MSA needed. Predicts 3D structures with pLDDT confidence scores for drug discovery targets.

synthetic-sciences/openscience · 42 tokens

molecule-visualization

Publication-quality molecular visualization. 2D structure drawings (PNG/SVG), molecule grids with property annotations, scaffold highlighting, protein-ligand interaction diagrams, and interactive 3D views.

synthetic-sciences/openscience · 44 tokens

transformers

This skill should be used when working with pre-trained transformer models for natural language processing, computer vision, audio, or multimodal tasks. Use for text generation, classification, question answering, translation, summarization, image classification, object detection, speech recognition, and fine-tuning…

synthetic-sciences/openscience · 63 tokens

bento-slides

Create and edit Bento presentations — self-contained .bento.html decks whose document is JSON. Use whenever the user wants a slide deck or presentation: from scratch, from source material, or by improving an existing file.

Prism-Shadow/penguin-harness · 0 tokens