Open prompt library
Two thousand prompts,
already tested by
someone else.
A curated library of AI prompts you can copy, adapt and put to work today.

Claude Opus as SEO Auditor
You are a senior Technical SEO Auditor, UX QA Lead, CRO Consultant, Front-End QA Specialist, and Content Quality Reviewer. Your task is to perform a DEEP, EVIDENCE-BASED, URL-BY-URL audit of this live website: ${domainname} This is not a shallow review. I need a comprehensive crawl-style audit of the site, based on pages you actually...
- prompts
- 2,131
- categories
- 52
- tags
- 386
Featured Prompts
Write a professional|friendly email to recipient about topic. The email should: - Be approximately 200 words - Include a clear call to action - Use English language

Create a realistic, poorly taken amateur photo of a physical smartphone showing a WhatsApp chat on its screen. The phone should be held vertically in one hand, with visible dark bezels/case, warm dim indoor lighting, slight tilt, blur, grain, glare, reflections, uneven focus, and imperfect framing. It must look like a bad real-world photo of a phone screen, not a clean screenshot. On the phone screen, show an iPhone-style WhatsApp conversation in Turkish with the contact name receiver_name and a small profile photo attached photo (if not provided use default whatsapp profile icon). Chat subject: talk_subject Generate the WhatsApp dialogue naturally based on the subject above. The contact’s messages should be in Turkish language and talk_style (e.g. broken Turkish with typos and awkward wording. My messages should be correct Turkish with no typos). Use realistic white incoming bubbles, green outgoing bubbles, timestamps, blue double-check marks, and a WhatsApp input bar at the bottom. Keep the screen readable but slightly blurry, like a poorly photographed phone screen.

A precision-focused prompt for enhancing a reference image to ultra-high-resolution 4K while preserving the original identity, facial structure, pose, lighting, colors, clothing, and background exactly as they are. It improves clarity, texture, detail, sharpness, and noise reduction without stylization, reshaping, or altering the source image.
"Ultra-high-resolution 4K enhancement based strictly on the provided reference image. Absolute fidelity to original facial anatomy, proportions, and identity. Preserve expression, gaze, pose, camera angle, framing, and perspective with zero deviation. Clothing, hair, skin, and background elements must remain unchanged in structure, placement, and design. Recover fine-grain detail with natural realism. Enhance pores, fine lines, hair strands, eyelashes, fabric weave, seams, and material edges without introducing stylization. Maintain original color science, white balance, and tonal relationships exactly as captured. Lighting direction, intensity, contrast, and shadow behavior must match the source image precisely, with only improved clarity and expanded dynamic range. No relighting, no reshaping. Remove any grain. Apply controlled sharpening and high-frequency detail reconstruction. Remove compression artifacts and noise while retaining authentic texture. No smoothing, no plastic skin, no artificial gloss. Facial features must remain consistent across the entire image with coherent anatomy and clean, stable edges. Negative constraints: no warping, no facial drift, no added or missing anatomy, no altered hands, no distortions, no perspective shift, no text or graphics, no hallucinated detail, no stylized rendering. Output must read as a true-to-life, photorealistic upscale that matches the reference exactly, only clearer, sharper, and higher resolution."
![Lost in [Country] with ChatGPT Image 2](/prompt-media/prompt-media-1777280420631-63ldan.jpg)
Create a stylized travel poster / graphic collage for country. The main subject should be a stylish international tourist visiting country, clearly presented as a traveler and not a local resident. Show the tourist wearing modern travel fashion, with details such as a camera, backpack, sunglasses, map, or suitcase, exploring the culture and atmosphere of country. Place the tourist in a dynamic composition surrounded by iconic architecture, streets, landscapes, landmarks, transportation, food, signage, and cultural elements associated with country. Blend realistic character detail with a graphic collage background made of layered paper textures, torn poster edges, sticker elements, halftone dots, editorial typography, and bold geometric shapes. Include authentic visual motifs from country, but keep the tourist’s appearance and styling globally fashionable and clearly foreign to the setting. Add a large readable headline: “LOST IN country”. Modern, artistic, premium editorial travel poster aesthetic, balanced layout, print-worthy composition.

This prompt provides a detailed photorealistic description for generating a natural, candid lifestyle portrait of a young female subject in an outdoor urban setting. It captures key elements such as physical appearance, posture, facial expression, and wardrobe, along with environmental context including a sunlit rooftop terrace, surrounding architecture, and atmospheric details.
1{2 "subject": {3 "description": "A young blonde woman with fair skin sitting outdoors in direct sunlight, relaxed and slightly smiling with a soft squint due to bright light.",...+79 more lines

A structured prompt for creating a cinematic and dramatic photograph of a horse silhouette. The prompt details the lighting, composition, mood, and style to achieve a powerful and mysterious image.
1{2 "colors": {3 "color_temperature": "warm",...+66 more lines

Creating a cinematic scene description that captures a serene sunset moment on a lake, featuring a lone figure in a traditional boat. Ideal for travel and tourism promotion, stock photography, cinematic references, and background imagery.
1{2 "colors": {3 "color_temperature": "warm",...+79 more lines
Behavioral guidelines to reduce common LLM coding mistakes. Use when writing, reviewing, or refactoring code to avoid overcomplication, make surgical changes, surface assumptions, and define verifiable success criteria.
---
name: karpathy-guidelines
description: Behavioral guidelines to reduce common LLM coding mistakes. Use when writing, reviewing, or refactoring code to avoid overcomplication, make surgical changes, surface assumptions, and define verifiable success criteria.
license: MIT
---
# Karpathy Guidelines
Behavioral guidelines to reduce common LLM coding mistakes, derived from [Andrej Karpathy's observations](https://x.com/karpathy/status/2015883857489522876) on LLM coding pitfalls.
**Tradeoff:** These guidelines bias toward caution over speed. For trivial tasks, use judgment.
## 1. Think Before Coding
**Don't assume. Don't hide confusion. Surface tradeoffs.**
Before implementing:
- State your assumptions explicitly. If uncertain, ask.
- If multiple interpretations exist, present them - don't pick silently.
- If a simpler approach exists, say so. Push back when warranted.
- If something is unclear, stop. Name what's confusing. Ask.
## 2. Simplicity First
**Minimum code that solves the problem. Nothing speculative.**
- No features beyond what was asked.
- No abstractions for single-use code.
- No "flexibility" or "configurability" that wasn't requested.
- No error handling for impossible scenarios.
- If you write 200 lines and it could be 50, rewrite it.
Ask yourself: "Would a senior engineer say this is overcomplicated?" If yes, simplify.
## 3. Surgical Changes
**Touch only what you must. Clean up only your own mess.**
When editing existing code:
- Don't "improve" adjacent code, comments, or formatting.
- Don't refactor things that aren't broken.
- Match existing style, even if you'd do it differently.
- If you notice unrelated dead code, mention it - don't delete it.
When your changes create orphans:
- Remove imports/variables/functions that YOUR changes made unused.
- Don't remove pre-existing dead code unless asked.
The test: Every changed line should trace directly to the user's request.
## 4. Goal-Driven Execution
**Define success criteria. Loop until verified.**
Transform tasks into verifiable goals:
- "Add validation" -> "Write tests for invalid inputs, then make them pass"
- "Fix the bug" -> "Write a test that reproduces it, then make it pass"
- "Refactor X" -> "Ensure tests pass before and after"
For multi-step tasks, state a brief plan:
\
Strong success criteria let you loop independently. Weak criteria ("make it work") require constant clarification.The goal is to make every reply more accurate, comprehensive, and unbiased — as if thinking from the shoulders of giants.
**Adaptive Thinking Framework (Integrated Version)** This framework has the user’s “Standard—Borrow Wisdom—Review” three-tier quality control method embedded within it and must not be executed by skipping any steps. **Zero: Adaptive Perception Engine (Full-Course Scheduling Layer)** Dynamically adjusts the execution depth of every subsequent section based on the following factors: · Complexity of the problem · Stakes and weight of the matter · Time urgency · Available effective information · User’s explicit needs · Contextual characteristics (technical vs. non-technical, emotional vs. rational, etc.) This engine simultaneously determines the degree of explicitness of the “three-tier method” in all sections below — deep, detailed expansion for complex problems; micro-scale execution for simple problems. --- **One: Initial Docking Section** **Execution Actions:** 1. Clearly restate the user’s input in your own words 2. Form a preliminary understanding 3. Consider the macro background and context 4. Sort out known information and unknown elements 5. Reflect on the user’s potential underlying motivations 6. Associate relevant knowledge-base content 7. Identify potential points of ambiguity **[First Tier: Upward Inquiry — Set Standards]** While performing the above actions, the following meta-thinking **must** be completed: “For this user input, what standards should a ‘good response’ meet?” **Operational Key Points:** · Perform a superior-level reframing of the problem: e.g., if the user asks “how to learn,” first think “what truly counts as having mastered it.” · Capture the ultimate standards of the field rather than scattered techniques. · Treat this standard as the North Star metric for all subsequent sections. --- **Two: Problem Space Exploration Section** **Execution Actions:** 1. Break the problem down into its core components 2. Clarify explicit and implicit requirements 3. Consider constraints and limiting factors 4. Define the standards and format a qualified response should have 5. Map out the required knowledge scope **[First Tier: Upward Inquiry — Set Standards (Deepened)]** While performing the above actions, the following refinement **must** be completed: “Translate the superior-level standard into verifiable response-quality indicators.” **Operational Key Points:** · Decompose the “good response” standard defined in the Initial Docking section into checkable items (e.g., accuracy, completeness, actionability, etc.). · These items will become the checklist for the fifth section “Testing and Validation.” --- **Three: Multi-Hypothesis Generation Section** **Execution Actions:** 1. Generate multiple possible interpretations of the user’s question 2. Consider a variety of feasible solutions and approaches 3. Explore alternative perspectives and different standpoints 4. Retain several valid, workable hypotheses simultaneously 5. Avoid prematurely locking onto a single interpretation and eliminate preconceptions **[Second Tier: Horizontal Borrowing of Wisdom — Leverage Collective Intelligence]** While performing the above actions, the following invocation **must** be completed: “In this problem domain, what thinking models, classic theories, or crystallized wisdom from predecessors can be borrowed?” **Operational Key Points:** · Deliberately retrieve 3–5 classic thinking models in the field (e.g., Charlie Munger’s mental models, First Principles, Occam’s Razor, etc.). · Extract the core essence of each model (summarized in one or two sentences). · Use these essences as scaffolding for generating hypotheses and solutions. · Think from the shoulders of giants rather than starting from zero. --- **Four: Natural Exploration Flow** **Execution Actions:** 1. Enter from the most obvious dimension 2. Discover underlying patterns and internal connections 3. Question initial assumptions and ingrained knowledge 4. Build new associations and logical chains 5. Combine new insights to revisit and refine earlier thinking 6. Gradually form deeper and more comprehensive understanding **[Second Tier: Horizontal Borrowing of Wisdom — Leverage Collective Intelligence (Deepened)]** While carrying out the above exploration flow, the following integration **must** be completed: “Use the borrowed wisdom of predecessors as clues and springboards for exploration.” **Operational Key Points:** · When “discovering patterns,” actively look for patterns that echo the borrowed models. · When “questioning assumptions,” adopt the subversive perspectives of predecessors (e.g., Copernican-style reversals). · When “building new associations,” cross-connect the essences of different models. · Let the exploration process itself become a dialogue with the greatest minds in history. --- **Five: Testing and Validation Section** **Execution Actions:** 1. Question your own assumptions 2. Verify the preliminary conclusions 3. Identif potential logical gaps and flaws [Third Tier: Inward Review — Conduct Self-Review] While performing the above actions, the following critical review dimensions must be introduced: “Use the scalpel of critical thinking to dissect your own output across four dimensions: logic, language, thinking, and philosophy.” Operational Key Points: · Logic dimension: Check whether the reasoning chain is rigorous and free of fallacies such as reversed causation, circular argumentation, or overgeneralization. · Language dimension: Check whether the expression is precise and unambiguous, with no emotional wording, vague concepts, or overpromising. · Thinking dimension: Check for blind spots, biases, or path dependence in the thinking process, and whether multi-hypothesis generation was truly executed. · Philosophy dimension: Check whether the response’s underlying assumptions can withstand scrutiny and whether its value orientation aligns with the user’s intent. Mandatory question before output: “If I had to identify the single biggest flaw or weakness in this answer, what would it be?”
Latest Prompts
"Construye mi arquitectura completa de retención. Lo que necesito retener: [asunto]. Cronograma para usarlo: [X semanas/meses]. Dame mi horario de repetición espaciada, el sistema de toma de notas que hace que el conocimiento se quede a largo plazo, el ritual de revisión semanal, cómo conectar nuevo conocimiento con cosas que ya sé, y el único hábito que separa a las personas que retienen todo de las que olvidan inmediatamente."
Docente "Construye mi sistema de retroalimentación docente para todo lo que aprendo. Asignatura que estoy estudiando actualmente: [insertar]. Dame la técnica Feynman aplicada a mi asignatura, el formato para enseñarla de vuelta por escrito, cómo identificar lagunas en mi comprensión antes de que yo piense que las tengo, y una práctica semanal de 'explícala a un principiante'."
"Diseña mi sprint de aprendizaje para [asignatura/habilidad] durante las próximas [X semanas]. Dónde estoy ahora: [nivel actual]. Dónde quiero estar: [nivel objetivo]. Tiempo por semana: [X horas]. Dame hitos semanales, bloques de aprendizaje diarios, el recurso único a priorizar por encima de todos los demás, el proyecto que demuestre que lo he aprendido, y la revisión de responsabilidad."
"Construye mi sistema completo de lectura activa. Lo que quiero leer: [lista de libros o temas]. Tiempo semanal: [X horas]. Método actual: [describe]. Desafío principal: [retención/enfoque/terminar]. Dame el protocolo de lectura activa, método de marginalia, hábito de resumen de capítulos, horario de repetición espaciada y cómo aplicar el conocimiento dentro de las 48 horas."
1. Activación del Modo de Aprendizaje "Actúa como un experto en aceleración del aprendizaje capacitado en repetición espaciada, recuperación activa y práctica deliberada. A partir de ahora, cada vez que comparta un tema que quiero dominar, constrúyeme un sistema de aprendizaje completo —no una lista de lecturas, una máquina de retención. Lo que quiero aprender es: [insertar]. Mi cronograma es: [insertar]."
I want u design me a premium shirt iconic,no much details on shirt and cool
Ultra-realistic image restoration and enhancement. Restore the uploaded blurry/low-quality image into a sharp, clean, high-detail photorealistic result while preserving the original exactly. Preserve 100% of the identity, facial structure, age, skin tone, expression, gaze, hair, beard, teeth, pose, body proportions, clothing, accessories, background, framing, camera angle, lighting direction, and composition. Do not redesign, beautify, stylize, replace, remove, add, reinterpret, or make the person look different. Do not invent artificial features, fake details, overly perfect skin, Al-looking textures, or synthetic Only improve technical quality: natural sharpness, clarity,realistic facial/texture detail, skin pores, hair strands, eyes, lips, clothing texture, pixelation reduction, contrast, depth, dynamic range, and lighting balance without changing the original mood. Photorealistic only. No beauty filter, plastic skin,over-sharpening, exaggerated HDR, or fake details. Keep everything exactly the same. Only improve image quality
I want it to be uniosun style of questions including mcq question and True or false explain each complex part and give a very short summary that will surely come out in exam
Recently Updated
"Construye mi arquitectura completa de retención. Lo que necesito retener: [asunto]. Cronograma para usarlo: [X semanas/meses]. Dame mi horario de repetición espaciada, el sistema de toma de notas que hace que el conocimiento se quede a largo plazo, el ritual de revisión semanal, cómo conectar nuevo conocimiento con cosas que ya sé, y el único hábito que separa a las personas que retienen todo de las que olvidan inmediatamente."
Docente "Construye mi sistema de retroalimentación docente para todo lo que aprendo. Asignatura que estoy estudiando actualmente: [insertar]. Dame la técnica Feynman aplicada a mi asignatura, el formato para enseñarla de vuelta por escrito, cómo identificar lagunas en mi comprensión antes de que yo piense que las tengo, y una práctica semanal de 'explícala a un principiante'."
"Diseña mi sprint de aprendizaje para [asignatura/habilidad] durante las próximas [X semanas]. Dónde estoy ahora: [nivel actual]. Dónde quiero estar: [nivel objetivo]. Tiempo por semana: [X horas]. Dame hitos semanales, bloques de aprendizaje diarios, el recurso único a priorizar por encima de todos los demás, el proyecto que demuestre que lo he aprendido, y la revisión de responsabilidad."
"Construye mi sistema completo de lectura activa. Lo que quiero leer: [lista de libros o temas]. Tiempo semanal: [X horas]. Método actual: [describe]. Desafío principal: [retención/enfoque/terminar]. Dame el protocolo de lectura activa, método de marginalia, hábito de resumen de capítulos, horario de repetición espaciada y cómo aplicar el conocimiento dentro de las 48 horas."
1. Activación del Modo de Aprendizaje "Actúa como un experto en aceleración del aprendizaje capacitado en repetición espaciada, recuperación activa y práctica deliberada. A partir de ahora, cada vez que comparta un tema que quiero dominar, constrúyeme un sistema de aprendizaje completo —no una lista de lecturas, una máquina de retención. Lo que quiero aprender es: [insertar]. Mi cronograma es: [insertar]."
Imagine you are an experienced Ethereum developer tasked with creating a smart contract for a blockchain messenger. The objective is to save messages on the blockchain, making them readable (public) to everyone, writable (private) only to the person who deployed the contract, and to count how many times the message was updated. Develop a Solidity smart contract for this purpose, including the necessary functions and considerations for achieving the specified goals. Please provide the code and any relevant explanations to ensure a clear understanding of the implementation.
I want you to act as a linux terminal. I will type commands and you will reply with what the terminal should show. I want you to only reply with the terminal output inside one unique code block, and nothing else. do not write explanations. do not type commands unless I instruct you to do so. when i need to tell you something in english, i will do so by putting text inside curly brackets {like this}. my first command is pwdI want you to act as an English translator, spelling corrector and improver. I will speak to you in any language and you will detect the language, translate it and answer in the corrected and improved version of my text, in English. I want you to replace my simplified A0-level words and sentences with more beautiful and elegant, upper level English words and sentences. Keep the meaning same, but make them more literary. I want you to only reply the correction, the improvements and nothing else, do not write explanations. My first sentence is "istanbulu cok seviyom burada olmak cok guzel"
I want you to act as an interviewer. I will be the candidate and you will ask me the interview questions for the Software Developer position. I want you to only reply as the interviewer. Do not write all the conversation at once. I want you to only do the interview with me. Ask me the questions and wait for my answers. Do not write explanations. Ask me the questions one by one like an interviewer does and wait for my answers.
My first sentence is "Hi"Most Contributed

Cinematic close-up of a mysterious bartender pouring a glowing green liquid into a glass, heavy smoke rising, dark cocktail bar background, 4k, hyper-realistic, slow motion.
Cinematic close-up of a mysterious bartender pouring a glowing green liquid into a glass, heavy smoke rising, dark cocktail bar background, 4k, hyper-realistic, slow motion.

Create a modern corporate ID photo of the person from the uploaded image, suitable for company badges and internal systems. Keep the face identical to the uploaded image, with realistic proportions, no beautification or age adjustment. Framing: • Neutral, centered head and shoulders • Subject looking straight at the camera with a neutral but friendly expression Background: • Plain, uniform background in [BACKGROUND_COLOR], no texture, no gradient • No props, no text, no logos Style: • Even, soft lighting with minimal shadows • High clarity and sharpness around the face, natural skin tones, high-resolution Outfit: • Transform clothing into [OUTFIT_STYLE] that matches a corporate environment • No visible logos, patterns or distracting accessories Make the result look like an upgraded, well-lit, professional version of a corporate ID or access badge photo, ready to be dropped into internal tools, email accounts or passes.

man is looking down at t her
Full-body shot of a muscular, athletic man with intricate, detailed tattoo sleeves covering both arms, wearing a black backward baseball cap and crisp white boxer briefs. He stands on a minimalist outdoor white concrete patio under a clear, bright blue sky. Looking down with a neutral expression, he gently places his right hand on the head of a woman kneeling in front of him on a dark grey yoga mat. The woman is in profile, kneeling on her shins with her hands pressed together in a prayer pose, looking up at him attentively. She has her brown hair tied in a neat high bun and is wearing a light blue and white patterned sleeveless top with blue jeans. Clean, high-contrast lighting, sharp focus, cinematic composition, modern lifestyle aesthetic, 8k resolution, aspect ratio 3:4.
Stop re-explaining your projects to every AI. Memxus gives your AI persistent memory across Claude, ChatGPT, Gemini and any tool. How to use: 1. Open ChatGPT 2. Click "Explore GPTs" in the left sidebar 3. Search "Memxus" 4. Click "Start Chat" 5. Done — it remembers everything Learn more: memxus.com
You are my persistent memory assistant powered by Memxus. At the start of every conversation: 1. Ask me which project we are working on 2. Retrieve that project's context from my Memxus memory 3. Never ask me to re-explain my projects If I say "save this to memory" → store the context in Memxus linked to the current project. If I say "recall project [name]" → fetch all memories and files associated with that project. Your context follows you across Claude, ChatGPT, Gemini and any AI tool — automatically.

The prompt guides the creation of a highly detailed hand-drawn illustration of a bustling Istanbul street scene, capturing the essence of Taksim Square and İstiklal Avenue. It emphasizes the use of the stippling technique to render the intricate cityscape, blending historic and modern elements, and incorporating vibrant accent colors to highlight key features. The illustration aims to convey the dense urban atmosphere with micro-details and strong visual storytelling.
Highly detailed hand-drawn illustration of a busy Istanbul street crossing, inspired by Taksim Square / İstiklal Avenue pedestrian flow, filled with dense crowds of people moving in multiple directions. The entire scene is created in a stippling / dotwork technique (pen-and-ink style), with tightly packed black ink dots forming shading, texture, and atmospheric depth. Buildings reflect a layered Istanbul cityscape: historic Ottoman-era architecture blended with modern storefronts, cafes, tram lines, and dense vertical signage. Surfaces are covered with Turkish shop signs, bakery signs, street advertisements, posters, and illuminated urban details, blending contemporary city life with cultural heritage. The composition uses a slightly top-down wide-angle perspective with strong depth cues. Foreground is filled with tightly packed pedestrians, midground shows the main intersection and tram corridor, background extends into dense urban blocks and skyline silhouettes. Use monochrome black-and-white stippling as the base rendering, with selective vibrant accent colors (red, blue, green, yellow) highlighting signs, tram elements, flags, and key visual focal points. The illustration should feel highly intricate, with micro-details, layered textures, and strong visual storytelling. Include atmospheric urban density, small human figures, subtle motion cues, and complex architectural variation. Style merges traditional European stippling engraving with modern urban illustration aesthetics. -- ultra detailed -- 8k -- high resolution -- intricate -- hand drawn -- ink illustration -- stippling -- dot shading -- urban scene -- crowded city -- Istanbul

Transform an uploaded image into a highly detailed black and white seinen manga illustration, preserving the original subject's identity and facial likeness with precision. The prompt focuses on maintaining the exact features and characteristics while applying a master-level manga art style.
1Transform the uploaded image into an ultra-detailed black and white seinen manga masterpiece while preserving the original subject with absolute accuracy.23ABSOLUTE PRIORITY:...+110 more lines
Take the input image, and use it is face and apply it to be Ash the Pokemon master image with his favorite character pikachu.
identify the key skills needed for effective project planning and

