AI Prompts Library

Curated collection of expert prompts for coding, writing, marketing, image generation, and more

Have a great prompt? Submit it to the library →

Image-generation

DALL-E 3: Infographic Design

Optimized for: dall-e-3 • IMAGE
Infographic about [topic], clean modern design, [5-7] key statistics/facts, icons and visual data representations, [color scheme], professional, easy to read, suitable for [blog/presentation/social media], vertical layout

Data visualization, educational content, presentations

Image-generation

Midjourney: Fashion Editorial

Optimized for: midjourney • IMAGE
[fashion style: haute couture/street/minimalist] editorial photo, model wearing [clothing description], [location/backdrop], dramatic lighting, high fashion, magazine quality, styled by top designers, professional color grading, --ar 2:3 --v 6 --style raw

Fashion marketing, lookbooks, editorial content

Image-generation

Stable Diffusion: Album Cover Art

Optimized for: stable-diffusion • IMAGE
(masterpiece, high quality) album cover for [genre: rock/hip-hop/electronic/indie], [mood/theme], artistic, bold composition, [abstract/realistic/surreal], vibrant colors, square format 3000x3000px, professional music artwork, eye-catching

Album covers, music marketing, artist branding

Business

Pitch Deck Creator for Startups

Optimized for: general • TEXT
Create a compelling 10-slide pitch deck for [STARTUP NAME].

**Company Info:**
- Industry: [INDUSTRY]
- Problem: [PROBLEM STATEMENT]
- Solution: [YOUR SOLUTION]
- Market Size: [TAM, SAM, SOM]
- Business Model: [REVENUE MODEL]
- Traction: [METRICS]
- Competition: [COMPETITORS]
- Team: [KEY MEMBERS]
- Ask: [FUNDING AMOUNT]

**Slides:**
1. **Cover**: Company name, tagline, visual
2. **Problem**: Pain points with compelling stats
3. **Solution**: Product demo/screenshots
4. **Market**: Market size & opportunity
5. **Product**: Features & benefits
6. **Business Model**: Revenue streams
7. **Traction**: Growth metrics & milestones
8. **Competition**: Competitive advantage
9. **Team**: Founders & advisors
10. **Ask**: Funding needs & use of funds

For each slide provide:
- Headline
- Key points (3-5 bullets)
- Visual suggestions
- Speaker notes

Startup fundraising, investor pitches, accelerator applications

Business

OKR Goal Setting Framework

Optimized for: general • TEXT
Create Objectives and Key Results (OKRs) for [TEAM/DEPARTMENT] for [QUARTER].

**Context:**
- Company Goal: [OVERALL OBJECTIVE]
- Team: [TEAM NAME]
- Current State: [WHERE YOU ARE]
- Desired State: [WHERE YOU WANT TO BE]

**Format for each Objective:**

**Objective 1**: [Inspiring, qualitative goal]
- Key Result 1: [Measurable metric with target]
- Key Result 2: [Measurable metric with target]
- Key Result 3: [Measurable metric with target]

**Requirements:**
- 3-5 Objectives per team
- 3-4 Key Results per Objective
- Key Results must be measurable (numbers, %)
- Ambitious but achievable
- Aligned with company goals
- Include tracking method
- Define owner for each KR

**Also provide:**
- Progress tracking template
- Weekly check-in questions
- End-of-quarter evaluation criteria

Goal setting, team alignment, performance tracking

Business

Meeting Minutes & Action Items Generator

Optimized for: general • TEXT
Transform the following meeting notes into structured minutes with clear action items.

**Meeting Info:**
- Date: [DATE]
- Attendees: [NAMES]
- Duration: [TIME]
- Topic: [MEETING PURPOSE]

**Raw Notes:**
[PASTE MEETING NOTES HERE]

**Generate:**

1. **Meeting Summary** (2-3 sentences)
2. **Key Decisions Made**
   - Decision 1
   - Decision 2
3. **Action Items**
   - [ ] Task description | Owner | Deadline | Priority
4. **Open Questions**
   - Question | Who needs to answer
5. **Next Meeting**
   - Date, time, agenda items

**Format Requirements:**
- Chronological order
- Clear, concise language
- Actionable task descriptions
- Specific deadlines
- Identified owners
- Follow-up items highlighted

Meeting documentation, team coordination, action tracking

Business

Competitor Analysis Deep Dive

Optimized for: general • TEXT
Conduct comprehensive competitor analysis for [YOUR COMPANY] in [INDUSTRY].

**Competitors to Analyze:**
1. [COMPETITOR 1]
2. [COMPETITOR 2]
3. [COMPETITOR 3]

**Analysis Framework:**

**For Each Competitor:**

1. **Company Overview**
   - Founded, size, funding
   - Mission & positioning
   - Target market

2. **Product Analysis**
   - Core features
   - Unique selling points
   - Pricing model
   - User experience

3. **Marketing Strategy**
   - Channels used
   - Content strategy
   - Brand voice
   - Social media presence

4. **Strengths**
   - What they do well
   - Competitive advantages

5. **Weaknesses**
   - Gaps & limitations
   - Customer complaints

6. **Market Position**
   - Market share estimate
   - Growth trajectory
   - Customer base

**Deliverables:**
- Competitive matrix (feature comparison)
- SWOT analysis summary
- Positioning map
- Differentiation opportunities
- Strategic recommendations

Market research, strategic planning, product positioning

Business

Job Description Writer

Optimized for: general • TEXT
Create an attractive, inclusive job description for [POSITION] at [COMPANY].

**Role Details:**
- Position: [JOB TITLE]
- Level: [Junior/Mid/Senior]
- Department: [TEAM]
- Location: [LOCATION/REMOTE]
- Salary Range: [RANGE]

**Company Culture:**
- Values: [VALUES]
- Mission: [MISSION]
- Benefits: [KEY BENEFITS]

**Generate:**

**[JOB TITLE]**

**About Us**
[2-3 sentences about company & mission]

**The Role**
[Compelling description of position & impact]

**Responsibilities**
- [Action verb] + outcome-focused description
- [5-7 key responsibilities]

**Requirements**
**Must Have:**
- [Essential skills]
**Nice to Have:**
- [Preferred qualifications]

**What We Offer**
- Salary range (transparent)
- Benefits & perks
- Growth opportunities
- Work environment

**Our Values**
[Brief culture description]

**How to Apply**
[Clear application process]

**Tone**: Inclusive, authentic, inspiring (avoid jargon, gendered language, unnecessary requirements)

Hiring, recruitment marketing, HR

Coding

API Documentation Generator (OpenAPI/Swagger)

Optimized for: gpt-4o • TEXT
Generate comprehensive API documentation for [API NAME].

**API Details:**
- Base URL: [URL]
- Authentication: [TYPE]
- Version: [VERSION]

**For Each Endpoint:**

```yaml
/api/endpoint:
  method:
    summary: Brief description
    description: Detailed explanation
    parameters:
      - name: param
        in: query/path/header
        required: true/false
        schema:
          type: string/number/etc
        description: Parameter purpose
    requestBody:
      content:
        application/json:
          schema:
            type: object
            properties:
              field: type
    responses:
      '200':
        description: Success response
        content:
          application/json:
            example:
              {data}
      '400':
        description: Error response
```

**Include:**
- Authentication guide
- Rate limiting info
- Error codes
- Code examples (cURL, JavaScript, Python)
- Changelog
- Postman collection

API documentation, developer onboarding

Coding

Git Commit Message Generator

Optimized for: general • TEXT
Generate semantic commit messages following Conventional Commits standard.

**Changes Made:**
[DESCRIBE YOUR CHANGES]

**Generate commits in format:**

```
type(scope): subject

body (optional)

footer (optional)
```

**Types:**
- feat: New feature
- fix: Bug fix
- docs: Documentation
- style: Formatting, missing semi-colons, etc
- refactor: Code refactoring
- perf: Performance improvement
- test: Adding tests
- chore: Maintenance tasks

**Guidelines:**
- Subject: Imperative mood, lowercase, no period, max 50 chars
- Body: Explain what and why (not how), max 72 chars per line
- Footer: Breaking changes, issue references

**Examples:**
```
feat(auth): add OAuth2 Google login

Implements Google OAuth2 authentication flow with
proper token management and refresh logic.

Closes #123
```

Git workflows, version control, documentation

Coding

Database Migration Script Generator

Optimized for: gpt-4o • TEXT
Generate database migration script for [DATABASE: PostgreSQL/MySQL/MongoDB].

**Migration Type:**
- [ ] Create table
- [ ] Alter table
- [ ] Add column
- [ ] Drop column
- [ ] Add index
- [ ] Data migration

**Details:**
[DESCRIBE SCHEMA CHANGES]

**Generate:**

1. **Up Migration** (apply changes)
2. **Down Migration** (rollback)
3. **Data Migration** (if needed)
4. **Validation Queries**

**Requirements:**
- Idempotent (can run multiple times safely)
- Transaction-wrapped
- Rollback-safe
- Include comments
- Handle edge cases
- Test data examples
- Performance considerations for large tables

**Also provide:**
- Pre-migration checklist
- Post-migration validation
- Backup recommendations

Database migrations, schema changes, data migrations

Coding

Regex Pattern Generator & Explainer

Optimized for: general • TEXT
Create and explain regular expression patterns.

**Task**: [DESCRIBE WHAT YOU WANT TO MATCH]

**Examples of valid inputs:**
- [EXAMPLE 1]
- [EXAMPLE 2]

**Examples of invalid inputs:**
- [EXAMPLE 1]
- [EXAMPLE 2]

**Generate:**

1. **Regex Pattern**
```
/pattern/flags
```

2. **Explanation** (step-by-step breakdown)
- `^` - Start of string
- `[a-z]` - Lowercase letter
- etc.

3. **Flags Explained**
- `g` - Global match
- `i` - Case insensitive
- `m` - Multiline

4. **Test Cases**
```
Should match:
✓ "example1"
✓ "example2"

Should not match:
✗ "invalid1"
✗ "invalid2"
```

5. **Code Examples**
- JavaScript
- Python
- PHP

6. **Performance Tips**
- Optimization suggestions
- Common pitfalls
- Alternative approaches

Input validation, data parsing, text processing

Want Custom Prompts?

Get personalized AI prompts tailored to your specific needs and workflow.

Contact Us