27 AI Prompt Templates That Actually Work in 2026 (Copy-Paste Ready)

Article
27 AI Prompt Templates That Actually Work in 2026 (Copy-Paste Ready)
Independent analysis—sources cited, pricing verified on publish date.
By Asmat Ullah â independent AI tools reviewer
This page contains affiliate links. We earn a small commission if you sign up through these links, at no extra cost to you.
Most AI prompt template articles online are useless. They give you a hundred one-line prompts that sound clever and produce mediocre output. The reason a prompt works is not magical wording. It is structure. The same five-part shape, applied to different categories, gets you 80% of the way to a good response every time.
This guide is built around that shape. Every template below follows the same skeleton, drawn from established prompt-engineering work including Anthropic’s prompt engineering docs, OpenAI’s prompt guide, and the DAIR.AI Prompt Engineering Guide. They are tested for consistent behavior across models.
The five parts:
- Role: who the AI is acting as (only include this when it actually changes the output)
- Context: what the AI needs to know about your situation
- Task: exactly what you want
- Constraints: length, format, what to avoid
- Examples: only when output style is hard to describe in words
Copy, fill in the brackets, send. These work across ChatGPT, Claude, and Gemini.
If you prefer building prompts interactively, the free AI Prompt Generator on this site uses these same patterns with dropdowns.
Writing Prompts (8)
1. Tighten a Draft
You are a ruthless editor. Below is my draft.
Goal: cut 30% of the words without losing meaning. Specifically:
- Remove hedging ("perhaps", "could potentially")
- Remove filler ("it is important to note that")
- Combine sentences where natural
- Keep my voice â do not rewrite, only cut
Return ONLY the edited version, no commentary.
DRAFT:
[paste your draft]
Why this works: the explicit cut target plus named hedges plus “do not rewrite” prevents the over-editing that is the default failure mode.
2. Get a Strong Opening Line
I'm writing about: [topic]
Audience: [who]
Tone: [conversational / professional / sharp]
Give me 10 opening lines. Rules:
- Each must be under 18 words
- Must use a concrete image, surprising claim, or specific number â no abstract setups
- No questions to the reader
- No "In today's world..." / "We live in an era..."
After the list, pick your best and explain why in one sentence.
3. Newsletter Draft from Rough Notes
Below are rough notes. Turn them into a 400-word newsletter.
Voice: first-person, plain English, one image or analogy, end with a single question to the reader.
Structure:
- Hook (1 sentence â concrete moment)
- Main idea (3-4 sentences)
- 1 supporting story or example (3-4 sentences)
- Takeaway in one line
- Closing question
NOTES:
[paste raw notes]
4. LinkedIn Post (Without the LinkedIn Smell)
Turn this idea into a LinkedIn post for [your role].
Rules:
- Hook line on its own â concrete, no questions
- Total 120-180 words
- No emojis
- No "Here's the thing:" / "What if I told you" / "Most people don't realize"
- One specific example, ideally with a number
- End with a normal closing sentence, not a CTA-style question
IDEA:
[your idea]
5. Email Reply That Actually Moves Things Forward
I received this email:
[paste email]
Draft a reply that:
- Acknowledges their question in 1 line
- Answers the actual ask, not the polite-but-vague version
- Proposes one concrete next step with a date or time
- Stays under 80 words
My voice: [warm / direct / formal] â examples: [paste 1-2 emails you have sent before so it matches]
6. Headline Tournament
Topic: [your article topic]
Audience: [readers]
Promise: [what they learn]
Generate 20 headline candidates in 4 styles:
1. Number-led (e.g. "7 things...")
2. How-to
3. Contrarian or surprising claim
4. Personal story or first-person
For each, score it 1-10 on clickability AND truthfulness (no clickbait that overpromises). Then pick your top 3 and explain why.
7. Rewrite in 3 Styles
Here's a paragraph. Rewrite it 3 ways:
1. Plain English, 6th-grade reading level
2. Conversational, like I'm telling a friend at a coffee shop
3. Punchy, sentence-fragment heavy, modern (think Substack)
Keep the meaning identical. Show all 3.
PARAGRAPH:
[paste]
8. Cold Pitch or Cold Outreach
I want to email [person] at [company] about [your ask].
What I know about them: [1-2 sentences from LinkedIn or their work]
What I'm offering or asking: [be specific â money? time? collaboration?]
Why me specifically: [your hook]
Draft:
- Subject line under 7 words, personal not generic
- Body under 90 words
- One specific reference to their work to prove I'm not mass-blasting
- One clear ask
- No "I hope this finds you well"
Coding Prompts (5)
9. Explain Unfamiliar Code
Below is code I didn't write and need to understand.
Walk me through it as if I'm a junior developer with 1 year of [language] experience.
For each function or block:
- What it does in one sentence
- Why the author probably wrote it this way (best guess)
- Any obvious bugs or odd choices
- What I should test if I change it
CODE:
[paste code]
10. Write Tests, Not Features
Here's a function. Write unit tests using [pytest / jest / vitest].
Cover:
- Happy path with 2-3 input variations
- Edge cases: empty input, null, very large input
- Error cases: what should it throw or return?
- Boundary cases for any limits in the code
After the test code, list any cases you couldn't write because the function's behavior is ambiguous. Do not guess â flag them.
FUNCTION:
[paste]
11. Code Review
Review this code as a senior [language] developer would.
For each issue:
- Severity: critical / major / minor / nitpick
- What's wrong (specific line)
- Why it's wrong (the principle, not just the rule)
- The fix as a code snippet
Sort the output by severity. Skip stylistic-only nits unless they obscure intent.
CODE:
[paste]
12. SQL from a Vague Question
I have a Postgres database with these tables:
[paste schema or describe tables and columns]
I want to know: [your question in English]
Write the SQL query.
Constraints:
- Use CTEs over nested subqueries
- Add comments explaining each step
- If my question is ambiguous, ASK before writing the query
- Show me an explain plan if the query might be slow
13. Debug Session
Bug: [describe the symptom in one sentence]
What I expected: [behavior]
What happens: [actual behavior]
Reproduction: [minimal steps]
Relevant code:
[paste]
Error message or logs (if any):
[paste]
What I've already tried:
[list]
Help me debug. Start by:
1. Listing the 3 most likely causes, most likely first
2. Asking me 1 question that would help narrow it down
3. NOT giving me a fix yet â diagnosis first.
Research and Learning Prompts (5)
14. Steel-Man the Opposite View
I believe: [your position]
I want to understand the strongest version of the opposing view, not a strawman.
1. Summarize the opposing position in 3-5 sentences, charitably
2. Give the 3 strongest arguments for it
3. For each, what evidence would I need to see to update toward this view?
4. Where do reasonable people land between the two positions, and why?
Avoid false balance. Be willing to say one view is stronger if it is. But show me the real disagreement.
15. Learn a New Concept in 10 Minutes
I want to understand [concept] well enough to use it or talk about it intelligently.
I already know: [what you know]
I don't know: [where you're starting]
Teach me with:
1. The core idea in 1 sentence (no jargon)
2. The simplest possible example
3. One slightly harder example showing where it gets interesting
4. The 3 most common misconceptions
5. The next thing I should learn after this
End by quizzing me with 3 questions, easiest first.
16. Research Synthesis from Multiple Sources
I'm researching [topic].
Below are notes or quotes from [N] sources:
[paste]
Synthesize:
1. What do the sources AGREE on?
2. Where do they DISAGREE, and why?
3. What's the strongest single insight across all of them?
4. What's missing â what would I need to research next?
5. Citations: for each claim above, which source(s) support it?
Use ONLY the source material I provided. If you reach for outside knowledge, flag it clearly.
17. Compare Two Products Fairly
I'm choosing between [A] and [B] for [use case].
What matters to me (in priority order):
1. [criterion]
2. [criterion]
3. [criterion]
Give me a comparison table on those criteria. For each cell:
- Score 1-5
- One sentence of reasoning
- Source link if available
End with: which would you pick for MY use case (not in general), and why. Be opinionated.
18. Source-Grade a Claim
Claim: "[paste the claim someone made]"
Grade this claim:
1. Is it true, partly true, misleading, or false?
2. What's the strongest evidence for it?
3. What's the strongest evidence against it?
4. Who benefits from this claim being widely believed?
5. What would change my mind?
Do not hedge. If it's wrong, say so. If you don't have enough information, say what you'd need.
Decision and Thinking Prompts (5)
19. Pre-Mortem
I'm about to [decision or project].
Imagine it's 6 months from now and it failed badly. Write the post-mortem:
- What went wrong (top 5, most likely first)
- What were the early warning signs
- What could I have done differently in week 1
Now: what specific thing should I do THIS WEEK to reduce the biggest risk?
20. Decision Matrix
I'm choosing between:
[option A]
[option B]
[option C]
My constraints: [budget, time, risk tolerance, etc.]
My goals: [what success looks like]
Build a weighted decision matrix:
- 5-7 criteria
- Weights summing to 100
- Score each option 1-10 per criterion
- Total weighted score per option
Then tell me which one I should pick, and what would have to change for the runner-up to win.
21. “Talk to Me Like a Smart Friend”
I'm overthinking [situation]. Here's what's in my head:
[brain dump]
You're a smart friend who tells me the truth.
- What's the actual decision underneath all this noise?
- What am I avoiding by overthinking?
- What's one specific action I could take in the next 24 hours?
No therapist voice. No 5-step frameworks. Just: what would a friend who's been here say?
22. Argument-Checker for My Own Writing
I'm about to publish this:
[paste your draft or argument]
You're a hostile reader who wants to disagree.
1. Find the weakest claim in this piece. What's wrong with it?
2. Where am I overstating?
3. Which sentence would a critic screenshot to attack me?
4. What's a counterargument I haven't addressed?
Then: how would you rewrite the weakest paragraph?
23. Untangle a Confusing Problem
I'm stuck on: [problem]
Don't solve it yet. Help me think:
1. What's the actual question I'm trying to answer? Restate it in plainer words.
2. What assumptions am I making that might be wrong?
3. If I had infinite resources, how would I solve it?
4. If I had 24 hours and no money, how would I solve it?
5. What's the smallest piece I could solve TODAY?
Study and Skill-Building Prompts (4)
24. Feynman Technique (Test Your Understanding)
I want to know if I really understand [topic].
Ask me to explain it back to you in plain language, as if I'm teaching a smart 12-year-old.
After I explain:
1. Point out anything I got wrong
2. Point out anything I oversimplified
3. Ask me one harder follow-up question
4. Repeat until you're satisfied I understand it
25. Build a Learning Curriculum
I want to learn [skill] from [starting level] to [target level] in [timeframe].
Constraints:
- [hours per week]
- [budget for courses/books, or $0]
- [my learning style: reading / video / building / discussion]
Build me a week-by-week curriculum:
- Each week: 1-3 specific resources, 1 specific output I should produce by end of week
- Free resources prioritized
- Real projects, not toy exercises
- Milestones at week 4, 8, 12
End with how I would know I have hit the target level.
26. Generate Practice Problems
I'm learning [topic] and need practice.
Generate 10 problems:
- Mix of difficulty: 4 easy, 4 medium, 2 hard
- Variety of formats (calculation, conceptual, applied)
- Realistic â like problems I'd actually encounter, not textbook abstractions
Put answers and explanations in a separate section AFTER the problems so I can attempt them first.
27. Daily 15-Minute Review
Yesterday I learned about: [topic and key points]
Today, drill me for 15 minutes.
- 5 questions on yesterday's material
- 2 questions connecting it to something I learned last week ([previous topic])
- 1 application question â how would I use this in [your context]?
After my answers, give feedback. Mark what I should review tomorrow.
Three Additions That Upgrade Any Prompt
These work as additions to almost any prompt. They come from practitioner consensus and Anthropic’s prompt engineering guidance.
“Ask me clarifying questions before answering.” The AI checks assumptions instead of guessing. This cuts hallucinations meaningfully.
“If you’re not sure, say so and tell me what you’d need to be sure.” This permits “I don’t know,” which is exactly what you want.
“Max [N] words. No bullet points unless I ask.” Length constraints fight the verbosity that all three models default to.
Where These Patterns Come From
These templates are not invented. They are an opinionated curation of patterns from:
- Anthropic’s prompt engineering documentation
- OpenAI’s prompt engineering guide
- The DAIR.AI Prompt Engineering Guide (open-source community resource)
- Riley Goodside’s published prompt patterns
- Simon Willison’s running prompt engineering blog
The contribution of this guide is structure and curation: pulling the patterns that survive real practitioner use into one copy-pasteable list.
What to Try Next
The free AI Prompt Generator on this site lets you pick a category and fill in dropdowns instead of searching this page each time.
ChatGPT vs Claude vs Gemini (2026) covers benchmark data, writing quality, and coding results if you want to match the right model to each prompt category above.
The Best AI Writing Tools in 2026 covers Jasper, Copy.ai, Surfer, and whether any of them beat using Claude or ChatGPT directly.
If you have a prompt pattern you want added, email partners@heylooai.com. Contributors are credited.
Last verified: May 17, 2026
Sources: Anthropic prompt engineering docs, OpenAI prompt engineering guide, DAIR.AI Prompt Engineering Guide, practitioner blogs