Skip to content

YouMind-OpenLab/gpt-image-2-prompts-search

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

33 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

AI Image Prompt Recommender β€” 1,000+ GPT Image 2 Prompts

Prompts OpenClaw Claude Code Daily Updates Multi-language License

Stop spending hours hunting for the right AI image prompt. Tell your AI assistant what you need in one sentence β€” it searches 1,000+ curated GPT Image 2 prompts and returns the top 3 matches with sample images, ready to use.

πŸ–ΌοΈ Browse the Prompt Gallery β†’

GPT Image 2 Prompts

What Is This?

An AI agent skill that gives Claude, OpenClaw, Cursor, and other AI assistants the ability to intelligently search a curated library of 1,000+ GPT Image 2 (OpenAI image model) prompts, recommend the best matches for your use case, and even customize prompts based on your content.

GPT Image 2 is OpenAI's latest image generation model β€” one of the most capable AI image generators available today. High-quality prompts are the key to great results.

Why Use This Skill?

  • βœ… 1,000+ prompts, organized by use case β€” not a random dump, but professionally categorized
  • βœ… Every prompt includes sample images β€” see the result before you copy
  • βœ… Smart semantic search β€” describe what you need, the AI finds the match
  • βœ… Content remix mode β€” paste your article or video script, get a custom prompt
  • βœ… Updated twice daily β€” always reflects the latest viral prompts from the community
  • βœ… Multi-language β€” responds in your language, always provides English prompt for generation

Installation

OpenClaw (Recommended)

clawhub install gpt-image-2-prompts-search

Or search inside OpenClaw chat:

"Install the gpt image 2 prompts skill from clawhub"

Claude Code

npx skills i YouMind-OpenLab/gpt-image-2-prompts-search

Other AI Assistants (Cursor, Codex, Gemini CLI, Windsurf)

# Universal installer β€” auto-detects your AI assistant
npx skills i YouMind-OpenLab/gpt-image-2-prompts-search

Manual / openskills

npx openskills install YouMind-OpenLab/gpt-image-2-prompts-search

How to Use

Mode 1: Direct Search

Just describe what you need:

"Find me a cyberpunk-style avatar prompt"
"I need prompts for travel blog article covers"
"Looking for a product photo on white background"
"Help me find a YouTube thumbnail for a tech review video"

You'll get up to 3 recommendations with:

  • Translated title & description (in your language)
  • The exact English prompt to copy
  • Sample images to preview the style
  • Whether reference images are needed

Mode 2: Content Illustration (Remix)

Paste your content and ask for a matching illustration:

"Here's my article about startup failure β€” help me create a cover image:
[paste article text]"

"I need a thumbnail for this video script: [paste script]"

"Generate an illustration for this podcast episode about AI: [paste notes]"

The skill will:

  1. Recommend matching style templates
  2. Ask a few questions to personalize (gender, mood, setting)
  3. Generate a customized prompt tailored to your content

Prompt Categories

Category Use Cases
Social Media Post Instagram, Twitter/X, Facebook, viral content
Product Marketing Ads, campaigns, promotional materials
Profile / Avatar Headshots, profile pictures, character portraits
Poster / Flyer Events, announcements, banners
Infographic Data visualization, educational content
E-commerce Product photos, listings, white background
Game Asset Sprites, characters, items
Comic / Storyboard Manga, panels, sequential art
YouTube Thumbnail Click-worthy video covers
App / Web Design UI mockups, interface designs
Others / Mixed Uncategorized creative prompts

Live counts are in references/manifest.json β€” auto-updated twice daily.


How It Works

User describes need
      ↓
Skill identifies category from keyword signals
      ↓
Searches matching JSON file (token-efficient grep, never loads full file)
      ↓
Returns top 3 prompts with images + translated descriptions
      ↓
[Optional] User picks one β†’ Skill remixes it to match their content

Token-efficient by design: The skill never loads full category files. It uses grep-style search to extract only matching prompts, keeping token usage minimal even as the library grows.


Data Source

Prompts are curated from viral posts by top AI artists on Twitter/X, automatically synced to this repository twice daily via GitHub Actions. The library grows continuously.

提瀺词由 YouMind.com ι€šθΏ‡ε…¬εΌ€η€ΎεŒΊζœι›† ❀️ Prompts curated from the open community by YouMind.com


Frequently Asked Questions

Q: What is GPT Image 2? GPT Image 2 is OpenAI's latest image generation model. It produces high-quality, photorealistic and artistic images from text prompts. Try it on YouMind β†’

Q: Do I need a YouMind account to use this skill? No. The skill is completely free and works with any AI assistant that supports custom skills (OpenClaw, Claude Code, Cursor, Codex, Gemini CLI). You only need a YouMind account if you want to generate images directly on youmind.com.

Q: How is this different from just searching Twitter for prompts? The library is pre-curated and categorized by use case β€” you don't have to scroll through noise. Every prompt includes sample images so you know what you're getting. The remix mode lets you personalize a template to match your specific content.

Q: Can I contribute prompts? Yes! The prompts are sourced from the public YouMind community. Share your GPT Image 2 creations on YouMind and they'll be picked up in the next sync.

Q: How often is the library updated? Twice daily (00:00 and 12:00 UTC) via automated GitHub Actions.

Q: Does this work with other image generation models? The prompts are optimized for GPT Image 2 (OpenAI), but many work well with other models like Nano Banana Pro (Gemini), Seedream, and DALL-E with minor adjustments.

Q: What's the difference between OpenClaw and Claude Code installation? OpenClaw uses the clawhub install command and integrates directly into your OpenClaw agent workspace. Claude Code uses npx skills i and installs into your Claude project context. Both use the same SKILL.md and prompt library.


Project Structure

gpt-image-2-prompts-search/
β”œβ”€β”€ SKILL.md                 # Skill instructions (works with OpenClaw, Claude Code, Cursor, etc.)
β”œβ”€β”€ README.md
β”œβ”€β”€ package.json
β”œβ”€β”€ scripts/
β”‚   └── generate-references.ts   # Fetches & categorizes prompts from CMS
β”œβ”€β”€ references/              # Auto-generated prompt data (updated twice daily)
β”‚   β”œβ”€β”€ social-media-post.json
β”‚   β”œβ”€β”€ product-marketing.json
β”‚   β”œβ”€β”€ profile-avatar.json
β”‚   β”œβ”€β”€ {other-categories}.json
β”‚   └── others.json
└── .github/workflows/
    └── generate-references.yml  # Scheduled sync job

Development

Prerequisites

  • Node.js 20+
  • pnpm

Setup

pnpm install

# Create .env with CMS credentials
echo "CMS_HOST=your_host" >> .env
echo "CMS_API_KEY=your_key" >> .env

# Generate references
pnpm run generate

GitHub Actions Secrets

Secret Description
CMS_HOST PayloadCMS API host
CMS_API_KEY PayloadCMS API key

Related Projects

Related Tools

  • OpenClaw β€” AI agent platform with skill ecosystem
  • ClawHub β€” Skill marketplace for OpenClaw
  • skills CLI β€” Universal AI skills installer
  • openskills β€” Multi-agent skills loader

License

MIT Β© YouMind

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors