Battle-tested prompts for serious builders

The Prompt Library
that ships faster

Copy-ready prompts for Claude, ChatGPT, Gemini, Midjourney & more. Organized by model and use case. Zero fluff.

115+
Prompts
6
Categories
6
AI Models
100%
Free

+Most Searched

5 prompts

All Prompts

115 prompts

Neo-Brutalist UI Screenshot

image generation
A brutalist web UI dashboard screenshot, thick black borders, primary color blocks in #FF6B35 and #004E98, monospace font, flat design, no shadows, grid-based layout, data charts, dark mode, ultra-high resolution, Dribbble-worthy, editorial design, product UI mockup
Midjourney DALL-E

Pro Tip: DALL-E 3 via ChatGPT interprets layout intent better. Midjourney excels at texture and mood.

Viral Hook Generator

short form-video
Generate 10 scroll-stopping opening hooks (first 3 seconds) for a TikTok/Reel about [TOPIC] targeting [AUDIENCE]. Each hook must use one of these proven patterns: bold false assumption, shocking statistic, direct address ('You're doing X wrong'), cliffhanger, or rapid visual list. Format: Hook text | Pattern used | Suggested visual. Rank by estimated retention score.
Claude ChatGPT

Pro Tip: Test hooks A/B by posting the same video with different first-frame text overlays.

Meeting Notes → Action Items

productivity
You are a chief of staff. Parse the following meeting transcript and output: 1) A 3-sentence executive summary, 2) A table of action items (Owner | Task | Deadline | Priority), 3) Key decisions made, 4) Open questions / blockers, 5) A follow-up email draft. Format in clean Markdown. Here is the transcript: [PASTE_TRANSCRIPT]
Claude ChatGPT

Pro Tip: Works best with raw Otter.ai or Fireflies transcripts.

Code Review Beast

coding
Review the following code for: 1) Bugs and edge cases, 2) Performance bottlenecks, 3) Security vulnerabilities, 4) Naming conventions, 5) Missing error handling. Output a structured markdown report with severity ratings (Critical/High/Medium/Low) for each issue and a refactored version of the most problematic function. Code: [PASTE_CODE]
ClaudeChatGPT

Pro Tip: Ask it to focus on one language paradigm at a time for deeper analysis.

SQL Query Optimizer

coding
You are a senior database engineer. Optimize the following SQL query for maximum performance on a PostgreSQL 15 database with 10M+ rows. Explain each optimization, add appropriate indexes, rewrite using CTEs where beneficial, and provide a EXPLAIN ANALYZE prediction. Query: [PASTE_QUERY]
ClaudeChatGPTGemini Pro

Pro Tip: Works best if you paste your current indexes alongside the query.

React Component Refactor

coding
Refactor the following React component to: use proper TypeScript types, extract custom hooks, memoize expensive computations with useMemo/useCallback, add error boundaries, and follow React 18 best practices. Keep the same functionality. Component: [PASTE_COMPONENT]
ClaudeChatGPT

Pro Tip: Specify your React version — hooks behavior differs between v17 and v18.

API Design Architect

coding
Design a RESTful API for [APP_NAME] that handles [CORE_FUNCTION]. Include: full endpoint documentation (method, path, request body, response schema), authentication strategy (JWT/OAuth2), rate limiting approach, error response standards (RFC 7807), versioning strategy, and a sample OpenAPI 3.0 spec for the 5 most critical endpoints.
ClaudeChatGPTGemini Pro

Pro Tip: Paste your existing data models to get more accurate schema suggestions.

Bug Squasher

coding
Act as a senior debugging specialist. I have a bug that causes [DESCRIBE_BUG]. Here is my code: [PASTE_CODE]. Here is the error: [PASTE_ERROR]. Walk me through: 1) Root cause analysis, 2) Why the current code fails, 3) The fix with explanation, 4) How to prevent this class of bug in the future.
ClaudeChatGPT

Pro Tip: Include your full stack trace — partial errors lead to partial fixes.

Docker & CI/CD Setup

coding
Generate a production-ready Docker setup for a [STACK] application. Include: multi-stage Dockerfile, docker-compose.yml with [DB] and Redis, a GitHub Actions CI/CD pipeline that tests, builds, and deploys to [PLATFORM], environment variable management, and health check endpoints.
ClaudeChatGPT

Pro Tip: Specify your cloud provider — AWS ECS, Railway, and Fly.io have different deployment configs.

Unit Test Generator

coding
Generate comprehensive unit tests for the following function using [JEST/VITEST/PYTEST]. Include: happy path tests, edge cases, error condition tests, mocked dependencies, and aim for 100% branch coverage. Explain the reasoning behind each test case. Function: [PASTE_FUNCTION]
ClaudeChatGPTGemini Pro

Pro Tip: Ask it to use the AAA pattern (Arrange-Act-Assert) for consistent test structure.

Algorithm Complexity Analyzer

coding
Explain the time and space complexity of the following algorithm using Big O notation. Then provide: 1) A step-by-step breakdown with a concrete example, 2) An optimized version if complexity can be improved, 3) When to use vs. avoid this approach, 4) Real-world applications. Algorithm: [PASTE_CODE]
ClaudeChatGPT

Pro Tip: Great for interview prep — ask it to also write a simpler brute-force version for comparison.

Python Automation Script

coding
Write a production-ready Python 3.12 script that [DESCRIBE_TASK]. Include: type hints, proper logging (not print statements), error handling with specific exceptions, argparse CLI interface, a requirements.txt, and a README with usage examples. Add docstrings to all functions.
ClaudeChatGPT

Pro Tip: Mention if you need it async — asyncio changes the structure significantly.

Chrome Extension Builder

coding
Build a complete Chrome Extension (Manifest V3) that [DESCRIBE_FUNCTIONALITY]. Include: manifest.json with minimal permissions, background service worker, content script, popup UI (HTML/CSS/JS), storage using chrome.storage.local, and instructions for loading in developer mode.
ClaudeChatGPT

Pro Tip: Keep permissions minimal — Chrome Web Store rejects extensions with unnecessary permissions.

GraphQL Schema Designer

coding
Design a GraphQL schema for [APP_TYPE] with [MAIN_ENTITIES]. Include: type definitions, queries, mutations, subscriptions, input types, enums, custom scalars where appropriate, N+1 problem mitigation strategy using DataLoader, and example queries for the 5 most common use cases.
ClaudeChatGPT

Pro Tip: Ask for a comparison with a REST equivalent to help your team decide which approach to use.

Regex Pattern Generator

coding
Generate a production-safe regex pattern for the following use case: [DESCRIBE_WHAT_TO_MATCH]. Provide: the pattern in /pattern/flags format, a line-by-line breakdown of each component, test cases that should match, test cases that should NOT match, and performance considerations for large strings.
ClaudeChatGPTGemini Pro

Pro Tip: Always test regex on regex101.com with your actual data before shipping to production.

WebSocket Real-Time App

coding
Build a real-time [APP_TYPE] using WebSockets. Server: Node.js with ws or Socket.io. Client: vanilla JS or React. Include: connection management with reconnection logic, room/channel system, typing indicators, message queuing for offline users, and deployment config for a VPS or Railway.
ClaudeChatGPT

Pro Tip: For scale, add Redis Pub/Sub so WebSocket can work across multiple server instances.

Authentication System Builder

coding
Implement a complete authentication system for a [FRAMEWORK] app with: email/password sign up and sign in, JWT refresh token rotation, OAuth2 (Google + GitHub), email verification flow, password reset, rate limiting on auth endpoints, and session management. Use [PREFERRED_DB] for user storage.
ClaudeChatGPT

Pro Tip: Ask it to include a security checklist — things like HTTPS-only cookies, SameSite flags, etc.

VS Code Extension Creator

coding
Build a VS Code extension called [NAME] that [DESCRIBE_FUNCTIONALITY]. Include: package.json manifest, activation events, command palette integration, settings contribution, status bar item, and a webview panel if needed. Add keybinding defaults and explain how to publish to the VS Code Marketplace.
ClaudeChatGPT

Pro Tip: Use the Yeoman generator first to scaffold — then paste the output for Claude to build on.

Serverless Function Collection

coding
Write a set of 5 serverless functions for [PLATFORM] (Vercel Edge / AWS Lambda / Cloudflare Workers) that handle: [LIST_FUNCTIONS]. Each function should include: input validation, proper HTTP status codes, CORS headers, error logging, and a cold start optimization strategy.
ClaudeChatGPT

Pro Tip: Edge functions have no Node.js built-ins — ask it to flag any Node-specific code upfront.

Monorepo Setup Guide

coding
Set up a production monorepo for [PROJECT] using Turborepo + pnpm workspaces. Include: workspace structure for apps/ and packages/, shared TypeScript config, shared ESLint/Prettier config, internal UI component package, build pipeline with caching, and GitHub Actions that only test/build affected packages.
ClaudeChatGPT

Pro Tip: Turborepo's --filter flag is essential — ask it to document the most common filter patterns.

Performance Audit Script

coding
Write a Playwright script that audits [URL] for: Core Web Vitals (LCP, CLS, FID), page load waterfall, largest DOM elements, render-blocking resources, and unused JavaScript. Output a JSON report with scores, and generate a prioritized list of fixes sorted by impact.
ClaudeChatGPT

Pro Tip: Run it in headed mode first to watch what Playwright sees — catches timing issues quickly.

Long-Form Article Writer

writing
Write a 2,000-word authoritative article on [TOPIC] for [TARGET_AUDIENCE]. Structure: attention-grabbing headline using the 4 U's formula, problem-agitation intro (200 words), 4 main sections with H2/H3 headers, data-backed claims with source placeholders, a FAQ block (5 questions), and a CTA conclusion. SEO target keyword: [KEYWORD].
ClaudeChatGPT

Pro Tip: Ask it to also generate 10 alternate headline options after the article is done.

Email Newsletter Writer

writing
Write a weekly newsletter edition for [BRAND/PERSON] targeting [AUDIENCE]. Sections: 1) A punchy 3-sentence opener on [TOPIC], 2) Main story (400 words), 3) 3 things I found interesting this week with commentary, 4) One actionable tip, 5) A question to reply to. Tone: [TONE]. Subject line: write 5 options.
ClaudeChatGPT

Pro Tip: A/B test subject lines — mark which ones use curiosity gap vs. benefit-driven framing.

LinkedIn Thought Leadership

writing
Write 5 LinkedIn posts for [NAME/BRAND] on the topic of [TOPIC]. Each post should use a different hook style: bold statement, personal story, contrarian take, list format, and question. Each post should be 150-300 words, end with a question to drive comments, and include 3-5 relevant hashtags.
ClaudeChatGPT

Pro Tip: Post natively, not through schedulers — LinkedIn suppresses third-party tool posts algorithmically.

Cold Email Sequence

writing
Write a 5-email cold outreach sequence for [PRODUCT/SERVICE] targeting [ICP]. Email 1: Value-first intro (no pitch). Email 2: Case study/social proof. Email 3: Objection handling. Email 4: Breakup email with soft CTA. Email 5: Final last attempt. Each under 150 words. Subject lines optimized for open rate.
ClaudeChatGPT

Pro Tip: Personalize the first line of each email with the prospect's name and company before sending.

Case Study Writer

writing
Write a compelling B2B case study for [CLIENT_NAME] who achieved [RESULT] using [PRODUCT/SERVICE]. Structure: 1) Challenge (problem before), 2) Solution (what was implemented), 3) Results (specific metrics), 4) Quote from client, 5) Lessons learned. Format for both a webpage and a PDF one-pager. Word count: 600-800 words.
ClaudeChatGPTGemini Pro

Pro Tip: Include 3 pull quotes suitable for social sharing — short, punchy, and result-focused.

Press Release Writer

writing
Write a professional press release announcing [NEWS/LAUNCH] for [COMPANY]. Follow AP style. Include: headline (under 10 words), dateline, opening paragraph (5 Ws), 2 body paragraphs, an executive quote, a boilerplate about the company, and contact information placeholder. Optimized for Google News indexing.
ClaudeChatGPT

Pro Tip: Send to journalists on a Tuesday or Wednesday morning — highest open rates for press releases.

Product Description Writer

writing
Write product descriptions for [PRODUCT] targeting [AUDIENCE]. Versions needed: 1) E-commerce listing (150 words, SEO-focused), 2) Instagram caption with emojis (80 words), 3) Amazon bullet points (5 bullets, keyword-rich), 4) Video ad script hook (15 seconds). Focus on benefits over features. Core selling point: [USP].
ClaudeChatGPT

Pro Tip: Lead with the emotional benefit, follow with the feature that delivers it.

Twitter/X Thread Writer

writing
Write a 12-tweet thread for [PERSON/BRAND] on [TOPIC]. Tweet 1: bold hook that promises the value. Tweets 2-11: one insight per tweet, each self-contained but building on the last. Tweet 12: CTA + summary. Each tweet under 280 characters. Voice: [DESCRIBE_TONE]. Add suggested images to pair with each tweet.
ClaudeChatGPT

Pro Tip: Threads that start with '1/' underperform — lead with the hook tweet, not the thread label.

White Paper Writer

writing
Write an executive white paper on [TOPIC] for [INDUSTRY]. Structure: Executive Summary (1 page), Problem Statement, Market Analysis, Solution Framework, Implementation Roadmap, ROI Case Study (fictional but realistic), Conclusion, and References section. Tone: authoritative, data-driven. Length: 2,500-3,000 words.
ClaudeChatGPTGemini Pro

Pro Tip: Add a Key Takeaways box at the top — executives often read only that section.

Brand Voice Guide

writing
Create a comprehensive brand voice guide for [BRAND] targeting [AUDIENCE]. Include: brand personality (3 adjectives with definitions), tone-of-voice spectrum (formal to casual), writing do's and don'ts (10 each), vocabulary list (words to use/avoid), examples of on-brand vs off-brand copy for: social, email, website, and error messages.
ClaudeChatGPT

Pro Tip: Include 'we are/we are not' statements — they make on-brand writing decisions instinctive for teams.

YouTube Script Writer

writing
Write a YouTube video script for [CHANNEL] on [TOPIC]. Length: 8-10 minutes (~1,200-1,500 words spoken). Structure: Pattern interrupt hook (30 sec), tease of value, main content (5 sections), midroll CTA at 40% mark, outro with subscribe CTA. Include B-ROLL suggestions in brackets throughout. Thumbnail concept: suggest 3 options.
ClaudeChatGPT

Pro Tip: Write the hook last — once you know the full video, you can tease it more accurately.

Sales Page Copywriter

writing
Write a long-form sales page for [PRODUCT/COURSE/SERVICE] priced at [PRICE]. Sections: Headline + subhead, Problem (agitate the pain), Solution intro, Features to Benefits translation, Social proof (testimonial placeholders), FAQ (7 questions), Guarantee section, and CTA. Use AIDA structure. Target: [AUDIENCE]. Reading level: 8th grade.
ClaudeChatGPT

Pro Tip: The guarantee section often does more conversion work than the testimonials — make it prominent.

Personal Bio Writer

writing
Write a personal bio for [NAME] who is [DESCRIBE_PERSON]. Versions needed: 1) 50-word Twitter/X bio, 2) 150-word LinkedIn summary, 3) 300-word speaker bio for conference programs, 4) 500-word About Me page for personal website. Tone: [TONE]. Highlight: [KEY_ACHIEVEMENTS]. Write in third person for 2-4, first person for 1.
ClaudeChatGPT

Pro Tip: The LinkedIn summary is most valuable — it shows in search results and gets clicked most.

Podcast Show Notes

writing
Write podcast show notes for an episode where [GUEST] discusses [TOPIC] with [HOST]. Include: Episode title (SEO-optimized, under 60 chars), 200-word summary, 5 key takeaways as bullet points, 10 timestamps with descriptions, 3 quotes worth sharing, mentioned resources list, and a transcript excerpt from the best 60 seconds.
ClaudeChatGPT

Pro Tip: Show notes are your SEO engine — optimize for the keyword your ideal listener would search.

Technical Blog Post

writing
Write a technical blog post for developers about [TOPIC]. Include: a practical problem setup, working code examples in [LANGUAGE], common pitfalls section, performance comparison if applicable, and a Further Reading section. Aim for dev.to or Hashnode style. Target keyword: [KEYWORD]. Length: 1,500-2,000 words. Clear subheadings every 300 words.
ClaudeChatGPT

Pro Tip: Add a TL;DR code snippet at the very top — developers scan first, then read if relevant.

Investor Update Writer

writing
Write a monthly investor update email for [STARTUP]. Structure: 1) KPI Dashboard (3-5 metrics vs. last month), 2) Wins this month, 3) Challenges + how you're addressing them, 4) Focus for next month, 5) Asks (specific help needed from investors). Tone: honest, confident, concise. Length: 400-500 words max.
ClaudeChatGPT

Pro Tip: The Asks section is the most underutilized part — be very specific about what you need.

Crisis Communication Template

writing
Write a crisis communication plan for [COMPANY] facing [CRISIS_TYPE]. Include: 1) Initial holding statement (within 1 hour), 2) Full public statement (within 24 hours), 3) Internal employee communication, 4) Social media response protocol, 5) FAQ for customer service team, 6) Media briefing talking points. Tone: transparent, accountable, solution-focused.
ClaudeChatGPT

Pro Tip: Always have a human personalize before sending — boilerplate language reads as inauthentic in a crisis.

Job Description Writer

writing
Write an inclusive, compelling job description for a [ROLE] at [COMPANY]. Include: role summary (2 sentences), what you'll do (5-7 bullets, action verbs), what we're looking for (must-haves vs nice-to-haves separate), what we offer (benefits + culture), and an inclusive closing paragraph. Avoid jargon and gendered language. Optimized for LinkedIn posting.
ClaudeChatGPT

Pro Tip: Separate must-have from nice-to-have requirements — women apply only when they meet 100% otherwise.

Weekly Review System

productivity
Design a complete weekly review framework for a [ROLE] professional. Include: 15-minute daily shutdown ritual (questions + checklist), 60-minute weekly review process, monthly strategic review template, OKR tracking system, energy audit (not just time), and a friction log to capture recurring blockers. Output as a Notion-ready template.
ClaudeChatGPT

Pro Tip: Do the weekly review on Friday afternoon, not Sunday — it keeps work out of your weekend headspace.

SOP Document Generator

productivity
Create a Standard Operating Procedure (SOP) document for [PROCESS_NAME]. Include: Process owner, trigger conditions, step-by-step instructions with decision points, tools/systems involved, exception handling, quality checkpoints, KPIs for measuring success, and a revision log. Format: Notion-ready with proper heading hierarchy.
ClaudeChatGPT

Pro Tip: Record yourself doing the process once on Loom — it's 10x faster than writing from memory.

Priority Matrix Builder

productivity
I have the following list of tasks: [PASTE_TASKS]. Apply the Eisenhower Matrix to sort them into 4 quadrants (Do/Schedule/Delegate/Delete). Then apply a second filter using the ICE framework (Impact, Confidence, Ease) and score each task. Output: a prioritized action list for today, this week, and this month.
ClaudeChatGPT

Pro Tip: Do this exercise first thing Monday, not Sunday — you'll have better context on actual priorities.

Decision Framework Creator

productivity
Help me make the following decision: [DESCRIBE_DECISION]. Apply: 1) 10/10/10 framework (how will I feel in 10 mins/months/years?), 2) Regret minimization, 3) Pre-mortem analysis (what could go wrong?), 4) Second-order consequences, 5) A recommendation with confidence level. Context: [PROVIDE_CONTEXT].
ClaudeChatGPT

Pro Tip: For major decisions, sleep on it after this analysis — emotions and logic need different timescales.

Notion Dashboard Architect

productivity
Design a complete Notion workspace for [ROLE/TEAM] managing [PROJECTS/GOALS]. Include: database schema for Projects, Tasks, Meetings, and Goals with all properties, relationship links, filtered views (Today, In Progress, Blocked), a weekly dashboard page layout, and formulas for progress tracking and deadline alerts.
ClaudeChatGPT

Pro Tip: Linked databases are more powerful than inline ones — ask it to structure everything as linked.

Email Inbox Zero System

productivity
Design an inbox zero system for someone receiving [NUMBER] emails/day in [EMAIL_CLIENT]. Include: folder/label taxonomy, processing rules to automate sorting, a 4-action system (Do/Delegate/Defer/Delete), morning/afternoon email batching schedule, template library for the 10 most common email types I send, and an auto-responder setup.
ClaudeChatGPT

Pro Tip: Turn off all email notifications — batch processing only works if email doesn't interrupt you.

Content Calendar Creator

productivity
Create a 30-day content calendar for [BRAND/PERSON] across [PLATFORMS]. For each day include: Platform, Post type, Topic/Angle, Hook line, Optimal posting time, and Content format. Theme for the month: [THEME]. Mix: 40% educational, 30% engagement, 20% promotional, 10% personal. Include 4 long-form anchor pieces.
ClaudeChatGPT

Pro Tip: Batch produce content in one session per week — context-switching kills creative quality.

Project Kickoff Template

productivity
Create a complete project kickoff document for [PROJECT_NAME]. Include: Project brief (problem, goal, success metrics), Stakeholder map with RACI, Timeline with milestones, Risk register (top 5 risks with mitigation), Communication cadence, Definition of Done for each milestone, and a kickoff meeting agenda. Format for Notion or Confluence.
ClaudeChatGPT

Pro Tip: Run the kickoff meeting before touching any deliverable — alignment now prevents rework later.

OKR Writing Assistant

productivity
Write a set of OKRs (Objectives and Key Results) for [TEAM/PERSON] for Q[QUARTER]. I want to focus on [AREA/THEME]. Generate: 3 Objectives, each with 3-4 measurable Key Results. Ensure Key Results are outcomes (not outputs), have a clear baseline and target, and are achievable in 90 days. Explain how to score each KR at quarter end.
ClaudeChatGPT

Pro Tip: Score OKRs at 0.7, not 1.0 — a perfect score means your goals weren't ambitious enough.

Hiring Interview Kit

productivity
Create a structured interview kit for hiring a [ROLE]. Include: Job scorecard with weighted criteria, 3 screening questions for the phone screen, 8 behavioral interview questions using STAR format organized by competency, a technical assessment prompt, reference check questions, and a scoring rubric. Reduce bias by standardizing scores across all candidates.
ClaudeChatGPT

Pro Tip: Send candidates the competency areas (not questions) 48 hours before — it reduces anxiety and improves answers.

Delegation Playbook

productivity
Create a delegation playbook for a [ROLE] managing [TEAM_SIZE] people. Include: Delegation decision matrix (what to keep vs. delegate), briefing template (context, expected output, resources, deadline, check-in schedule), the 5 levels of delegation authority model, a follow-up cadence that doesn't micromanage, and 3 sample delegation conversations.
ClaudeChatGPT

Pro Tip: Delegate the outcome, not the method — specify what done looks like, not how to get there.

Customer Journey Map

productivity
Create a detailed customer journey map for [PRODUCT/SERVICE] targeting [PERSONA]. Stages: Awareness, Consideration, Decision, Onboarding, Retention, Advocacy. For each stage include: Customer mindset, touchpoints, pain points, emotions, opportunities, and success metrics. Output as a table. Highlight the 3 highest-leverage intervention points.
ClaudeChatGPT

Pro Tip: The Onboarding stage is where most startups lose customers — it deserves 2x the attention.

Team Retrospective Facilitator

productivity
Design a 60-minute team retrospective for a [TEAM_TYPE] after [PROJECT/SPRINT]. Include: Icebreaker (5 min), What went well with silent brainstorm + dot voting (15 min), What didn't with root cause using 5 Whys (20 min), Action items with owners and deadlines (15 min), Energy check close (5 min). Provide Miro/Figjam board layout instructions.
ClaudeChatGPT

Pro Tip: Time-box each section strictly — retros that run over feel punishing and reduce future participation.

Focus Block Scheduler

productivity
Design an ideal weekly schedule for a [ROLE] who needs to balance [WORK_TYPE_1], [WORK_TYPE_2], and meetings. Apply time-blocking with: 3-4 hour deep work blocks in peak energy windows, meeting clusters (no context switching), admin/email batch slots, buffer blocks for overflow, and a shutdown ritual. Format as a 7-day calendar grid.
ClaudeChatGPT

Pro Tip: Protect your first 2 hours of the day — it's when most people do their best creative work.

Second Brain Setup Guide

productivity
Design a Second Brain knowledge management system using [TOOL: Notion/Obsidian/Roam] for a [ROLE] professional. Include: folder structure using PARA (Projects/Areas/Resources/Archive), tagging taxonomy, capture workflow from mobile to desktop, weekly review process for notes, and a retrieval system that surfaces relevant notes when starting new projects.
ClaudeChatGPT

Pro Tip: The goal isn't to save everything — it's to save only what you'll actually use again.

Brand Identity Mood Board

image generation
[BRAND_TYPE] startup brand mood board, featuring: logo typography samples in [FONT_STYLE], color palette swatches in [COLOR_FAMILY], texture samples, icon system preview, packaging mockup, and lifestyle photography insets. Flat lay composition, editorial design, clean white negative space, professional agency presentation style
MidjourneyDALL-E

Pro Tip: Generate multiple at --chaos 30 to explore diverse directions, then zoom in on the strongest.

Architectural Visualization

image generation
[BUILDING_TYPE] exterior architectural visualization, [STYLE: modernist/brutalist/biophilic] design, golden hour lighting, surrounding [LANDSCAPE], rendered in Twinmotion quality, ultra-realistic materials, photogrammetry-level detail, 16:9 wide shot, no people, award-winning architecture photography style
MidjourneyDALL-E

Pro Tip: Use --style raw in Midjourney for photorealistic renders — the default style adds too much painterly quality.

Character Design Sheet

image generation
Character design reference sheet for [CHARACTER_NAME], a [DESCRIPTION]. Includes: front view, side view, back view, close-up face, 3 expression variations (happy/angry/surprised), and accessory details. Style: [ANIME/WESTERN ANIMATION/REALISTIC]. White background, clean lines, professional animation studio quality, character turnaround format
MidjourneyDALL-E

Pro Tip: Generate the front view first separately, then use --seed to maintain consistency across other views.

Editorial Infographic

image generation
Clean isometric infographic illustration explaining [CONCEPT]. Style: flat design, pastel color palette, icons with consistent 2px stroke, connected flow diagram, data visualization elements, white background, professional editorial style similar to HBR or Wired magazine graphics, 1:1 ratio
MidjourneyDALL-E

Pro Tip: Use this as a visual reference for your designer rather than a final asset — it communicates art direction perfectly.

Fantasy Map Creator

image generation
Hand-drawn style fantasy world map of [WORLD_NAME] with: mountain ranges, forests, kingdoms labeled in calligraphy, coastal cities, trade routes marked with dotted lines, compass rose, illustrated sea monsters in the ocean, aged parchment texture, ink and watercolor mixed media style, top-down view
MidjourneyDALL-E

Pro Tip: Add --tile to Midjourney if you want a seamless texture version for game backgrounds.

Editorial Food Photography

image generation
[DISH_NAME] overhead food photography, styled on [SURFACE: marble/linen/wood], surrounded by [GARNISHES/PROPS], shot with Canon 5D Mark IV 50mm macro lens, natural window light from left, slight steam wisps, ultra-sharp focus on hero ingredient, muted warm color grade, restaurant-quality editorial food styling, no text
MidjourneyDALL-E

Pro Tip: The 'light from left' instruction dramatically improves depth — change to 'backlit' for transparent liquids.

App Icon Set Design

image generation
Set of 12 matching UI icons for [APP_TYPE] including: [LIST_6_ICONS]. Style: [LINE/FILLED/DUOTONE], [ROUNDED/SHARP] corners, consistent 24x24px visual weight, color: [PRIMARY_COLOR], white background, grid layout, professional icon design quality similar to Feather Icons or Phosphor Icons
MidjourneyDALL-E

Pro Tip: Export at 512px then downscale — vector-style AI icons hold quality better at larger sizes.

Logo Concept Exploration

image generation
Logo concept explorations for [BRAND_NAME], a [INDUSTRY] company. Style: [WORDMARK/LETTERMARK/SYMBOL]. Design direction: [DESCRIBE_AESTHETIC]. Color: [COLOR]. Show 4 variations in a clean grid layout on white background, flat vector style, scalable mark, professional logo design quality, no gradients, single-color primary version
MidjourneyDALL-E

Pro Tip: These are concepts only — always recreate the winning direction in a real vector tool like Figma.

Textile Pattern Design

image generation
Seamlessly tileable textile surface pattern for [MARKET: home decor/fashion/stationery]. Motif: [DESCRIBE_MOTIF]. Style: [VINTAGE/CONTEMPORARY/MAXIMALIST]. Color palette: [COLORS]. Flat lay mockup shown on [FABRIC TYPE], repeat pattern clearly visible, suitable for print production, professional textile design studio quality
MidjourneyDALL-E

Pro Tip: Upscale in Midjourney before testing the tile — low-res patterns show seams more visibly.

Album Cover Art

image generation
Music album cover art for [ARTIST] - [ALBUM_NAME], genre: [GENRE]. Visual concept: [DESCRIBE_CONCEPT]. Style: [ARTISTIC_REFERENCE]. Square format 1:1. Mood: [MOOD]. Ultra-high detail, suitable for Spotify/Apple Music display, typographic space left at top for text overlay, award-winning album art quality
MidjourneyDALL-E

Pro Tip: Generate without the artist name first — add typography in Figma for better font control.

Environment Concept Art

image generation
Environment concept art for [SETTING: sci-fi space station/medieval market/underwater city/neon cyberpunk alley]. [TIME_OF_DAY] lighting, [WEATHER] atmosphere, [MOOD] emotional tone, populated with character silhouettes, foreground-midground-background depth, ArtStation quality concept art, cinematic composition, wide shot
MidjourneyDALL-E

Pro Tip: Start wide to establish scale, then generate close-up beauty shot versions for hero assets.

3D Product Mockup

image generation
Photorealistic 3D product mockup of [PRODUCT] in [COLOR/MATERIAL]. Studio white background, single key light from upper left with fill reflector, slight surface reflection, ultra-sharp render, Keyshot quality, floating composition, shadow beneath product, 1:1 format, no people, commercial product photography aesthetic, 8K resolution
MidjourneyDALL-E

Pro Tip: Try a dark background version too — many products read stronger on near-black than pure white.

Motion Graphics Storyboard

image generation
6-frame storyboard for a [DURATION]-second motion graphics explainer about [TOPIC]. Flat design style, each frame labeled 1-6, consistent character and color system, arrow overlays showing animation direction, white background, professional motion design studio storyboard format, keyframe moments only
MidjourneyDALL-E

Pro Tip: Use this to brief a motion designer or to prompt RunwayML for video generation.

Social Media Template Pack

image generation
Professional social media post template for [BRAND] in [COLOR_PALETTE]. Style: modern typographic layout, [GEOMETRIC/ORGANIC] design elements, text placeholder zones, consistent visual hierarchy, works at 1:1 and 9:16 ratio, clean minimal aesthetic, production-ready Canva/Figma template feel, [LIGHT/DARK] mode
MidjourneyDALL-E

Pro Tip: Generate at 3:2 and crop to different ratios — you lose less composition than generating multiple sizes.

Poster Design Generator

image generation
Event poster design for [EVENT_NAME] on [DATE] at [VENUE]. Style: [SWISS/BAUHAUS/CONTEMPORARY/RETRO]. Color palette: [COLORS]. Include: headline, date/time zone, venue name as text overlays. Illustration elements: [DESCRIBE]. Format: A2 portrait, high contrast, print-ready, award-winning graphic design quality
MidjourneyDALL-E

Pro Tip: Generate at 2:3 aspect ratio — it most closely matches standard poster dimensions.

TikTok Script Writer

short form-video
Write a 60-second TikTok script for [CREATOR] about [TOPIC]. Structure: Hook (0-3 sec): pattern interrupt line. Setup (3-15 sec): establish the stakes. Content (15-50 sec): 3 punchy points. CTA (50-60 sec): direct ask. Include: suggested transitions, text overlay copy, trending audio cue, on-screen visual actions. Tone: [TONE].
ClaudeChatGPT

Pro Tip: Film yourself doing the hook 5 different ways — the one that surprises you most usually wins.

Instagram Reel Concept Generator

short form-video
Generate 5 Instagram Reel concepts for [BRAND/CREATOR] in the [NICHE] space. For each concept include: Hook (first frame), Content angle, Visual format (POV/talking head/B-roll montage/text-only), Audio recommendation (trending/original), Expected emotion trigger, and Predicted save rate (high/medium/low) with reasoning.
ClaudeChatGPT

Pro Tip: Saves are the highest-value metric on Instagram — structure content around 'I need to save this for later' moments.

YouTube Shorts Script Pack

short form-video
Write 3 YouTube Shorts scripts (under 60 seconds each) for [CHANNEL] on the theme of [TOPIC]. Each script needs: a different hook style (question/stat/bold claim), tight 3-point delivery, no fluff, and a spoken CTA. Format: [SECOND MARKER] [DIALOGUE] format throughout. Optimize for watch-through rate.
ClaudeChatGPT

Pro Tip: YouTube Shorts get ranked by watch-through rate, not likes — every second must earn the next.

Faceless Channel Script

short form-video
Write a script for a faceless [NICHE] YouTube/TikTok channel video on [TOPIC]. Length: [DURATION]. Include: voiceover script (natural pacing, no AI-sounding phrases), B-roll shot list with timestamps, text overlay suggestions, background music mood, and a thumbnail concept with 3 options. Format for CapCut or Premiere Pro editing.
ClaudeChatGPT

Pro Tip: Use ElevenLabs for voiceover — their 'natural' voice setting sounds 10x more human than text-to-speech defaults.

Viral Hook Formula Pack

short form-video
Generate 10 scroll-stopping opening hooks (first 3 seconds) for a TikTok/Reel about [TOPIC] targeting [AUDIENCE]. Each hook must use one of these proven patterns: bold false assumption, shocking statistic, direct address (You're doing X wrong), cliffhanger, or rapid visual list. Format: Hook text | Pattern used | Suggested visual. Rank by estimated retention score.
ClaudeChatGPT

Pro Tip: Test hooks A/B by posting the same video with different first-frame text overlays to find what works.

Brand Awareness Short Creator

short form-video
Write a 30-second brand awareness video script for [BRAND] that introduces [PRODUCT/VALUE_PROP] to cold audiences on [PLATFORM]. Include: problem identification (0-8 sec), solution reveal (8-20 sec), social proof flash (20-25 sec), and brand CTA (25-30 sec). No hard sell. Aim for curiosity, not conversion.
ClaudeChatGPT

Pro Tip: Brand videos should make people feel something — lead with an emotion, not a feature.

Trend Hijack Content Brief

short form-video
Analyze the current trend/sound/format: [DESCRIBE_TREND] and create a content brief for [BRAND/CREATOR] to hijack it authentically. Include: Trend breakdown (why it's working), 3 ways to adapt it to our niche, script/concept for each adaptation, timing recommendation (post within [X] hours of peak), and what to avoid to prevent looking forced.
ClaudeChatGPT

Pro Tip: Trend hijacking works best within 24-48 hours of peak — after that you're late to the party.

Product Demo Short Script

short form-video
Write a 45-second product demo video script for [PRODUCT] targeting [AUDIENCE]. Structure: Pain point hook (0-5 sec), Before state (5-15 sec), Product introduction (15-25 sec), Key feature demo narration (25-35 sec), Result/outcome (35-42 sec), CTA (42-45 sec). Include: camera angles, on-screen text, and music mood suggestions.
ClaudeChatGPT

Pro Tip: Show the product being used in the worst-case scenario it solves — contrast creates desire.

UGC Brief Writer

short form-video
Write a UGC (User Generated Content) brief for [PRODUCT] to send to creators. Include: Brand background (2 sentences), Video objective, Hook options (give 3), Talking points (must-mention and avoid list), Call to action, Visual style direction, Do's and Don'ts, and deliverable specs (resolution, length, file format). Tone: [BRAND_TONE].
ClaudeChatGPT

Pro Tip: Give creators 3 hooks to choose from — constraint breeds creativity and consistency.

Behind The Scenes Series Brief

short form-video
Create a 5-part Behind The Scenes short-form video series for [BRAND/CREATOR] showing [PROCESS]. For each episode: Title, Hook concept, What to film, Voiceover/caption angle, Duration (15-60 sec), Platform recommendation, and How it connects to the next episode. Goal: build authentic authority in [NICHE].
ClaudeChatGPT

Pro Tip: BTS content has the highest authenticity score with audiences — rough edges are a feature, not a bug.

Comment Reply Video Script

short form-video
Turn this comment from my video into a reply video script: [PASTE_COMMENT]. Format: Stitch/Duet the original comment (0-3 sec), validate the question/push back (3-8 sec), deliver a 3-point answer (8-45 sec), expand on the original topic (45-55 sec), CTA to follow for more (55-60 sec). Make it feel like a natural conversation.
ClaudeChatGPT

Pro Tip: Comment reply videos get 2x the saves of original content — your audience created the prompt for you.

Educational Series Planner

short form-video
Plan a 10-video educational short-form series on [TOPIC] for [PLATFORM]. For each video provide: Episode number, Hook concept, Core lesson (1 insight only), Visual format recommendation, Length, How it builds on the previous episode, and a cliffhanger to drive series completion. Target audience: [DESCRIBE]. Goal: establish authority and grow followers.
ClaudeChatGPT

Pro Tip: One idea per video, no more — short-form audiences don't watch two ideas in one video.

Podcast Clip Repurposer

short form-video
I have a podcast transcript excerpt: [PASTE_EXCERPT]. Turn this into: 1) A 60-second vertical video script with hook rewrite, 2) An Instagram carousel (5 slides), 3) A Twitter thread (8 tweets), 4) A LinkedIn post, and 5) 3 pull-quote graphics. Optimize each for its platform's algorithm. Maintain the original speaker's voice.
ClaudeChatGPT

Pro Tip: The best podcast clips are arguments, not explanations — find the moment someone challenges a belief.

Ad Creative Script Generator

short form-video
Write 3 paid ad video scripts for [PRODUCT] targeting [AUDIENCE] on [PLATFORM]. Each script should use a different creative angle: 1) Problem/Solution, 2) Social proof/Testimonial-style, 3) Educational/how-it-works. Each under 30 seconds. Include: hook, key copy, CTA, and suggested visual. Optimize for lowest CPM and highest click-through.
ClaudeChatGPT

Pro Tip: Test 3 hooks before scaling spend — 80% of ad performance is determined in the first 3 seconds.

Live Stream Outline Creator

short form-video
Create a 60-minute live stream outline for [CREATOR] on [PLATFORM] covering [TOPIC]. Include: Pre-live hype checklist, Intro hook (first 2 minutes), 4 main content segments with engagement triggers, Midpoint CTA, Q&A framework, Closing ritual, and Post-live repurposing plan (clips to pull). Include chat engagement prompts every 10 minutes.
ClaudeChatGPT

Pro Tip: Go live on a consistent schedule — audiences form habits around reliable creators.

Collab Video Pitch Script

short form-video
Write a DM pitch for [CREATOR_A] to collaborate with [CREATOR_B] on a short-form video about [TOPIC]. Include: Personalized opener referencing their specific content, Value proposition (why this benefits BOTH audiences), Concept idea (2-3 sentences), Logistics suggestion, and a soft CTA with a clear next step. Keep it under 150 words.
ClaudeChatGPT

Pro Tip: Lead with what they get out of it, not what you get — reciprocity starts with giving.

Shorts/Reels Analytics Debrief

short form-video
Analyze the performance of my recent short-form videos based on this data: [PASTE_METRICS]. Identify: Top 3 performing patterns (hook style, length, topic, format), 3 underperforming patterns to drop, the optimal posting time based on my data, content gaps vs. what my audience is asking for in comments, and a revised content strategy for next month.
ClaudeChatGPT

Pro Tip: Run this analysis monthly — data compounds, and patterns invisible at 5 videos become obvious at 20.

SaaS Onboarding Flow Designer

website building
Design a complete user onboarding flow for [SAAS_PRODUCT] targeting [USER_TYPE]. Include: welcome email sequence (3 emails), in-app onboarding checklist UI (HTML/CSS), empty state designs for key screens, first-run tooltips copy, activation milestone triggers, and a progress indicator component. The goal: get users to their first 'aha moment' within [X] minutes.
ClaudeChatGPT

Pro Tip: Define your activation metric before designing onboarding — everything should point to that one moment.

E-commerce Product Page

website building
Build a conversion-optimized e-commerce product page for [PRODUCT] priced at [PRICE]. Include: image gallery with zoom, size/variant selector, add-to-cart button (sticky on mobile), trust signals (reviews, returns, security badges), product description with tabbed sections, related products carousel, and sticky buy bar. Output clean HTML + Tailwind CSS.
ClaudeChatGPT

Pro Tip: The add-to-cart button color should contrast with everything else on the page — make it impossible to miss.

Dashboard UI Component Library

website building
Create a dashboard UI component library for a [TYPE] analytics dashboard. Components needed: KPI metric card (with trend indicator), line/bar chart wrapper, data table with sorting and pagination, filter sidebar, date range picker, notification badge, skeleton loading states, and empty states for each component. Output: HTML + Tailwind CSS + vanilla JS.
ClaudeChatGPT

Pro Tip: Design empty states and loading states first — they appear most often during first-time user experience.

Portfolio Website Builder

website building
Build a personal portfolio website for a [ROLE: designer/developer/photographer]. Include: animated hero with role title, filterable work grid, case study modal with image gallery, skills section with visual indicators, testimonials carousel, and a contact form. Dark/light mode toggle. Output: single-file HTML + CSS + JS, no dependencies.
ClaudeChatGPT

Pro Tip: The case study modal converts better than a separate page — fewer clicks to see your work.

Blog Platform Template

website building
Build a minimal blog platform template with: homepage (latest 6 posts grid), single post page with reading time + author bio, category/tag filtering, search functionality, email subscription form, related posts section, and social share buttons. Optimize for Core Web Vitals. Output: clean semantic HTML + Tailwind CSS.
ClaudeChatGPT

Pro Tip: Reading time is one of the highest-impact additions to a blog — it sets expectations and reduces bounce.

Restaurant/Menu Website

website building
Build a restaurant website for [RESTAURANT_NAME] serving [CUISINE]. Include: full-screen hero with reservation CTA, interactive menu (filterable by dietary tags), photo gallery grid, about/story section, OpenTable-style reservation widget placeholder, hours + location with embedded map, and a reviews section. Mobile-first design.
ClaudeChatGPT

Pro Tip: Put the phone number and hours in the header — 60% of restaurant website visitors want exactly those two things.

Agency Website Redesign

website building
Redesign the website for a [TYPE] agency targeting [CLIENTS]. Structure: Hero with bold positioning statement, Services section (3 core offerings with icons + descriptions), Process section (4 steps), Case studies grid (3 featured projects), Team section, Client logos bar, and a Contact/CTA section. Output: HTML + Tailwind CSS, dark aesthetic.
ClaudeChatGPT

Pro Tip: Agencies convert better when they're specific — 'We build B2B SaaS websites' beats 'We build websites'.

Pricing Page Optimizer

website building
Build a high-converting pricing page for [PRODUCT] with [3 TIERS]. Include: annual/monthly toggle (with savings badge), feature comparison table, most popular badge on recommended tier, FAQ section (7 questions), trust signals, testimonial per tier, and a money-back guarantee banner. Output: HTML + Tailwind CSS + JS for toggle functionality.
ClaudeChatGPT

Pro Tip: Anchor pricing works — put your most expensive tier first so the middle tier feels reasonable.

Waitlist Landing Page

website building
Build a pre-launch waitlist page for [PRODUCT] in [CATEGORY]. Include: headline + 1-line value prop, 3 teaser benefit bullets, email capture form with CTA button, social proof counter (X people already joined), product screenshot/mockup placeholder, referral incentive section, and social share buttons. Optimize for email conversion. Output: single-file HTML.
ClaudeChatGPT

Pro Tip: Add a referral incentive (move up the waitlist) — it can 3x your signups through word of mouth.

Job Board / Directory Site

website building
Build a niche job board website for [INDUSTRY/NICHE] roles. Include: search + filter bar (by role type, location, salary, remote), job card component, individual job listing page with apply button, company profile pages, email alert subscription, featured jobs (paid placement) section, and a post-a-job flow. Output: HTML + Tailwind + Alpine.js.
ClaudeChatGPT

Pro Tip: Niche job boards outperform general ones for both companies and candidates — specificity is the product.

Web App Login/Auth UI

website building
Design a complete authentication UI for [APP_NAME]. Screens needed: Sign up, Log in, Forgot password, Reset password, Email verification, and Onboarding step 1. Include: social OAuth buttons (Google/GitHub), inline form validation states, loading states, error messages, password strength indicator, and a mobile-responsive layout. Output: HTML + Tailwind CSS.
ClaudeChatGPT

Pro Tip: Put social auth buttons above the email form — 70% of users prefer OAuth over creating a new password.

Real Estate Listing Page

website building
Build a real estate property listing page for [PROPERTY_TYPE]. Include: full-screen image gallery with lightbox, key details bar (beds/baths/sqft/price), tabbed sections (description/features/floorplan/neighborhood), an interactive map embed placeholder, mortgage calculator widget, agent contact card with booking form, and similar listings carousel. Output: HTML + Tailwind.
ClaudeChatGPT

Pro Tip: The mortgage calculator is the highest-engagement element on real estate pages — make it prominent.

Newsletter Landing Page

website building
Build a high-converting newsletter landing page for [NEWSLETTER_NAME] in [NICHE]. Include: headline focused on transformation (not features), 3 sample issue previews, subscriber count social proof, testimonials from subscribers, what you'll get section (3 bullets), an email capture hero, and sticky subscribe button on scroll. Output: single-file HTML + Tailwind CSS.
ClaudeChatGPT

Pro Tip: Show a real sample issue instead of describing the newsletter — seeing is converting.

Event / Conference Website

website building
Build a website for [EVENT_NAME], a [TYPE] conference on [DATE] in [LOCATION]. Include: hero with countdown timer, speaker lineup grid with bios, schedule/agenda with session filtering, ticket tiers section, sponsor logos bar, FAQ accordion, venue + travel section, and past event highlights gallery. Output: HTML + Tailwind + JS for countdown.
ClaudeChatGPT

Pro Tip: The speaker lineup is the primary conversion driver for events — feature it above the fold.

Chrome New Tab Dashboard

website building
Build a beautiful custom Chrome new tab page that shows: clock (large, centered), greeting based on time of day, daily focus input, weather widget (using IP geolocation), quick links grid (8 shortcuts), a daily quote, and a productivity task list with localStorage. Dark/light mode. Output: single-file HTML + CSS + vanilla JS.
ClaudeChatGPT

Pro Tip: People see their new tab page 20-30 times a day — it's the highest-visibility piece of UI you'll ever build.

Nonprofit/Charity Website

website building
Build a website for [NONPROFIT_NAME] focused on [CAUSE]. Include: emotional hero with mission statement, impact metrics section (bold numbers), programs overview (3 initiatives), stories/case studies section, donation widget with preset amounts, volunteer sign-up form, team + board section, and a press/media kit section. Output: HTML + Tailwind CSS.
ClaudeChatGPT

Pro Tip: Impact numbers convert donors better than descriptions — lead with your best metric, not your mission statement.

Micro SaaS Tool Page

website building
Build a clean single-page website for a micro SaaS tool called [TOOL_NAME] that [DOES_X]. Include: Hero (tool name, 1-line description, primary CTA), live interactive demo embed section, 3 use case cards, how it works (3 steps), pricing (free + pro tier), FAQ (5 questions), and footer with newsletter signup. Output: HTML + Tailwind CSS.
ClaudeChatGPT

Pro Tip: A live demo on the landing page increases conversion by 30%+ — let people touch the product immediately.