Prompt Library

🤖 AI Prompt Library

Production-ready prompts for Claude, ChatGPT, Gemini, and other LLMs. Copy, customize, and execute.

📖 How to Use This Library

  1. Browse prompts by category or use the filters below
  2. Click “View Prompt” to see the full template
  3. Customize variables inside brackets [like this]
  4. Paste into your AI (Claude, ChatGPT, Gemini, etc.)
  5. Get high-quality results every time
Content Creation

SEO Blog Post Generator

Create SEO-optimized blog posts with perfect structure, keyword placement, and engaging content for any topic.

⚡ Beginner ⏱️ 5-10 min 🤖 Claude, ChatGPT, Gemini
Marketing & Social

Social Media Post Generator

Generate engaging social media posts for any platform with hooks, CTAs, and optimized hashtags.

⚡ Beginner ⏱️ 2-5 min 🤖 Claude, ChatGPT
Email Marketing

Email Campaign Writer

Create high-converting email campaigns with compelling subject lines, body copy, and CTAs.

⚡ Beginner ⏱️ 5 min 🤖 Claude, ChatGPT, Gemini
Coding & Development

Code Generator & Debugger

Get production-ready code with explanations, error handling, and best practices for any programming task.

⚡ Intermediate ⏱️ 10-30 min 🤖 Claude, ChatGPT, Copilot
Business Strategy

Business Strategy Analyzer

Get comprehensive business strategy analysis with competitive insights and actionable growth plans.

⚡ Intermediate ⏱️ 15-30 min 🤖 Claude, ChatGPT, Gemini
Automation & Workflows

Automation Workflow Designer

Design complete automation workflows with step-by-step module configuration, error handling, and optimization.

⚡ Advanced ⏱️ 30-60 min 🤖 Claude, ChatGPT
Data Analysis

Data Analysis & Insights Generator

Transform raw data into actionable insights with statistical analysis, patterns, and strategic recommendations.

⚡ Intermediate ⏱️ 10-20 min 🤖 Claude, ChatGPT, GPT-4
Prompt Engineering

Prompt Improvement Engineer

Transform vague AI prompts into precise, high-performing instructions that get consistent, quality outputs.

⚡ Beginner ⏱️ 5 min 🤖 Any LLM
Image & Design

AI Image Prompt Generator

Generate optimized AI image prompts with detailed descriptions, style keywords, and platform-specific formatting.

⚡ Intermediate ⏱️ 5-10 min 🤖 DALL-E, Midjourney, SD
YouTube & Video

YouTube Video Script Writer

Create complete YouTube video scripts with hooks, segments, CTAs, titles, descriptions, and thumbnail ideas.

⚡ Beginner ⏱️ 10-15 min 🤖 Claude, ChatGPT
const filterButtons = document.querySelectorAll(‘.filter-button'); const promptCards = document.querySelectorAll(‘.prompt-card'); filterButtons.forEach(button => { button.addEventListener(‘click', () => { filterButtons.forEach(btn => btn.classList.remove(‘active')); button.classList.add(‘active'); const filter = button.getAttribute(‘data-filter'); promptCards.forEach(card => { if (filter === ‘all' || card.getAttribute(‘data-category') === filter) { card.style.display = ‘flex'; } else { card.style.display = ‘none'; } }); }); });
Scroll to Top