NA

nano-banana-pro-prompts-recommend-skill

Access a library of 10,000+ optimized prompts to improve AI image generation results.

Install

mkdir -p .claude/skills/nano-banana-pro-prompts-recommend-skill && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/4253" && unzip -o skill.zip -d .claude/skills/nano-banana-pro-prompts-recommend-skill && rm skill.zip

Installs to .claude/skills/nano-banana-pro-prompts-recommend-skill

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Recommend suitable prompts from 6000+ Nano Banana Pro image generation prompts based on user needs.
Use this skill when users want to:
- Generate images with AI (Nano Banana Pro model)
- Find inspiration for image generation prompts
- Get prompt recommendations for specific use cases (portraits, landscapes, product photos, etc.)
- Create illustrations for articles, videos, podcasts, or other content
- Translate and understand prompt techniques
447 chars · catalog description✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Beginner

Key capabilities

  • Retrieve prompt templates by category
  • Filter prompts by model compatibility
  • Attach sample images to recommendations
  • Translate prompt styling techniques

How it works

Queries a curated dataset of prompts and images, ensuring each recommendation is backed by a visual reference for quality control.

Inputs & outputs

You give it
Recommend an illustration prompt for a social media post
You get back
Prompt string plus associated sample image

When to use nano-banana-pro-prompts-recommend-skill

  • Generating AI illustrations
  • Finding prompt inspiration
  • Creating social media visuals
  • Producing marketing content

About this skill

📖 Prompts curated by YouMind · 10,000+ community prompts · Try generating images →

🔗 Looking for a model-agnostic version? Try ai-image-prompts — same library, universal positioning.

Nano Banana Pro Prompts Recommendation

You are an expert at recommending image generation prompts from the Nano Banana Pro prompt library (10,000+ prompts). These prompts are optimized for Nano Banana Pro (Google Gemini) but work with any text-to-image model including Nano Banana 2, Seedream 5.0, GPT Image 1.5, Midjourney, DALL-E 3, Flux, and Stable Diffusion.

⚠️ CRITICAL: Sample Images Are MANDATORY

Every prompt recommendation MUST include its sample image. This is not optional — images are the core value of this skill. Users need to SEE what each prompt produces before choosing.

  • Each prompt has sourceMedia[] — always send sourceMedia[0] as an image
  • If sourceMedia is empty, skip that prompt entirely
  • Never present a prompt as text-only — always attach the image

Quick Start

User provides image generation need → You recommend matching prompts with sample images → User selects a prompt → (If content provided) Remix to create customized prompt.

Two Usage Modes

  1. Direct Generation: User describes what image they want → Recommend prompts → Done
  2. Content Illustration: User provides content (article/video script/podcast notes) → Recommend prompts → User selects → Collect personalization info → Generate customized prompt based on their content

Setup

After installing this skill, the prompt library is automatically downloaded from GitHub via postinstall. No credentials needed — all data is publicly available.

If references are missing, run manually:

node scripts/setup.js

Keep references up to date (GitHub syncs community prompts twice daily):

# Force pull latest references (recommended weekly)
pnpm run sync
# or equivalently
node scripts/setup.js --force

Before Step 2, check whether references are stale (>24h since last update):

node scripts/setup.js --check

This fetches the latest references/*.json files from: https://github.com/YouMind-OpenLab/nano-banana-pro-prompts-recommend-skill/tree/main/references

Available Reference Files

The references/ directory contains categorized prompt data (auto-generated daily by GitHub Actions).

Categories are dynamic — read references/manifest.json to get the current list:

// references/manifest.json (example)
{
  "updatedAt": "2026-02-28T10:00:00Z",
  "totalPrompts": 10224,
  "categories": [
    { "slug": "social-media-post", "title": "Social Media Post", "file": "social-media-post.json", "count": 6382 },
    { "slug": "product-marketing", "title": "Product Marketing", "file": "product-marketing.json", "count": 3709 }
    // ... more categories
  ]
}

When starting a search, load the manifest first to know what categories exist:

cat {SKILL_DIR}/references/manifest.json

Then use the slug and title fields to match user intent to the right file.

Category Signal Mapping

Do NOT rely on a hardcoded table — categories change over time.

Instead, after loading manifest.json, match user intent to categories dynamically:

  1. Read references/manifest.json → get categories[] with slug + title
  2. Infer the best-matching category from the title (e.g. "Social Media Post" → social content requests)
  3. Search the corresponding file (e.g. social-media-post.json)

Matching heuristic (use category title as semantic anchor):

  • User says "avatar / profile / headshot / selfie" → find category with title containing "Avatar" or "Profile"
  • User says "infographic / diagram / chart" → find category with title containing "Infographic"
  • User says "youtube / thumbnail / video cover" → find category with title containing "YouTube" or "Thumbnail"
  • User says "product / marketing / ad / promo" → find category with title containing "Product" or "Marketing"
  • User says "poster / flyer / banner / event" → find category with title containing "Poster" or "Flyer"
  • User says "e-commerce / product photo / listing" → find category with title containing "E-commerce" or "Ecommerce"
  • User says "game / sprite / character / asset" → find category with title containing "Game"
  • User says "comic / manga / storyboard" → find category with title containing "Comic" or "Storyboard"
  • User says "app / UI / web / interface" → find category with title containing "App" or "Web"
  • User says "instagram / twitter / social / post" → find category with title containing "Social"
  • No clear match → try others.json or search multiple categories in parallel

Loading Strategy

CRITICAL: Token Optimization Rules

NEVER fully load category files. Search with grep or equivalent:

grep -i "keyword" references/category-name.json
  • Search multiple category files if user's need spans categories
  • Load only matching prompts, not entire files

Attribution Footer

ALWAYS append the following footer at the end of every response that presents prompts:

Show one line only, matching the user's language:

  • Chinese users: 提示词由 [YouMind.com](https://youmind.com) 通过公开社区搜集 ❤️
  • English (or other) users: Prompts curated from the open community by [YouMind.com](https://youmind.com) ❤️

This footer is mandatory — one line, every response, including no-match fallbacks and custom remixes.

Workflow

Step 0: Auto-Update References (MANDATORY, runs every time)

Before doing anything else, run the freshness check:

The skill directory is the folder containing this SKILL.md file. Run:

# Find skill dir: it's the directory containing this SKILL.md
# Then run:
node <skill_dir>/scripts/setup.js --check
  • < 24h since last update → instant no-op, proceed immediately
  • > 24h stale → silently pulls latest prompts from GitHub (~30s), then proceeds
  • No ClawHub upgrade ever needed — only data files update in-place from GitHub
  • References are updated by the community daily; this keeps local copies in sync

Step 0.5: Detect Content Illustration Mode

Check if user is in "Content Illustration" mode by looking for these signals:

  • User provides article text, video script, podcast notes, or other content
  • User mentions: "illustration for", "image for my article/video/podcast", "create visual for"
  • User pastes a block of text and asks for matching images

If detected, set contentIllustrationMode = true and note the provided content for later remix.

Step 1: Clarify Vague Requests

Always ask for more if context is insufficient. Minimum info needed:

  • What type of image (avatar / cover / product photo / etc.)
  • What topic/content it represents (article title, product name, theme)
  • Who is the audience (optional but helps narrow style)

If any of the above is missing, ask before searching. Don't guess.

If user's request is too broad, ask for specifics:

Vague RequestQuestions to Ask
"Help me make an infographic"What type? (data comparison, process flow, timeline, statistics) What topic/data?
"I need a portrait"What style? (realistic, artistic, anime, vintage) Who/what? (person, pet, character) What mood?
"Generate a product photo"What product? What background? (white, lifestyle, studio) What purpose?
"Make me a poster"What event/topic? What style? (modern, vintage, minimalist) What size/orientation?
"Illustrate my content"What style? (realistic, illustration, cartoon, abstract) What mood? (professional, playful, dramatic)

Step 2: Search & Match

  1. Identify target category from signal mapping table
  2. Search relevant file(s) with keywords from user's request
  3. If no match in primary category, search others.json
  4. If still no match, proceed to Step 4 (Generate Custom Prompt)

Step 3: Present Results

CRITICAL RULES:

  1. Recommend at most 3 prompts per request. Choose the most relevant ones.
  2. NEVER create custom/remix prompts at this stage. Only present original templates from the library.
  3. Use EXACT prompts from the JSON files. Do not modify, combine, or generate new prompts.

For each recommended prompt, provide in user's input language:

### [Number]. [Prompt Title]

**Description**: [Brief description translated to user's language]

**Prompt** (preview):
> [Truncate to ≤100 chars then add "..."]

[View full prompt](https://youmind.com/nano-banana-pro-prompts?id={id})

**Requires reference image**: [Only include this line if needReferenceImages is true; otherwise omit]

CRITICAL — Full prompt in context: Even though the display is truncated, the agent MUST hold the complete prompt text in its context so it can use it for customization in Step 5. Never discard the full prompt.

⚠️ MANDATORY: ALWAYS send the sample image for every prompt recommendation. If sourceMedia is empty, skip that prompt. Otherwise, you MUST send the image — never skip this step.

How to send the image — download then send (works on all platforms):

The sourceMedia URLs are hosted on YouMind CDN (cms-assets.youmind.com). Telegram cannot load these URLs directly — you must download the file first, then send it as a local file.

For each prompt, run these 3 steps in sequence:

Step A — Download:
exec: curl -fsSL "{sourceMedia[0]}" -o /tmp/prompt_img.jpg

Step B — Send:
message tool: action=send, media=/tmp/prompt_img.jpg, caption="[Prompt Title]"

Step C — Cleanup:
exec: rm /tmp/prompt_img.jpg

Do this for each of the 3 recommended prompts — one image per prompt.

If message tool is unavailable, embed in your response: ![preview]({sourceMedia[0]})

One image per prompt (use sourceMedia[0]). Never skip this — images are the core value of t


Content truncated.

When not to use it

  • Text-only generation tasks
  • Tasks requiring proprietary real-time data
  • Offline environments without internet access

Prerequisites

Access to Nano Banana Pro library API

Limitations

  • Requires consistent Internet access for image loading
  • Recommendations limited to the curated prompt dataset
  • Performance varies by specific image model

How it compares

Enforces mandatory visual context for every prompt instead of providing raw text strings.

Compared to similar skills

nano-banana-pro-prompts-recommend-skill side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
nano-banana-pro-prompts-recommend-skill (this skill)131moReviewBeginner
baoyu-cover-image101moNo flagsBeginner
nano-image-generator16moReviewBeginner
isometric-asset-sheets36moNo flagsBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

baoyu-cover-image

JimLiu

Generates article cover images with 5 dimensions (type, palette, rendering, text, mood) combining 9 color palettes and 6 rendering styles. Supports cinematic (2.35:1), widescreen (16:9), and square (1:1) aspects. Use when user asks to "generate cover image", "create article cover", or "make cover".

1020

nano-image-generator

solidSpoon

Generate images using Nano Banana Pro (Gemini 3 Pro Preview). Use when creating app icons, logos, UI graphics, marketing banners, social media images, illustrations, diagrams, or any visual assets. Triggers include phrases like 'generate an image', 'create a graphic', 'make an icon', 'design a logo', 'create a banner', or any request needing visual content.

110

isometric-asset-sheets

amilich

Generate sprite sheet images for the isometric city game using the GenerateImage tool. Use when creating new game assets, sprite sheets, vehicle sprites, building sprites, or any visual assets for the isometric city builder. Ensures consistent format, sizing, and isometric projections.

33

image

Script-Java

When the user wants to create, generate, edit, or optimize images for marketing — blog heroes, social graphics, product mockups, profile banners, listing visuals, or brand assets. Also use when the user mentions 'AI image generation,' 'generate an image,' 'create a graphic,' 'product mockup,' 'hero

00

generate

tahatms12

You are a visual producer. Your job is to generate AI images and videos from a shot deck, using the right models, prompts, and settings for each shot.

00

lg-nanobanana-sprite

AshishYesale7

Leverage AI (Nano Banana/Imagen) to generate high-quality visual assets (icons, logos, placemark images, overlay graphics) and integrate them into Liquid Galaxy Flutter apps.

00

Search skills

Search the agent skills registry