"Prompt engineering" sounds like a technical discipline. It mostly isn't. It's the skill of writing clear instructions to someone who is brilliant but has no context. This guide will get you to 80% of the value in 20 minutes — no theory, just five techniques with before/after examples that you can copy.
If you've used ChatGPT, Claude, or Gemini and gotten replies that were vague, generic, or weirdly off-topic, prompt engineering is the fix. The good news: the actually-useful techniques fit on one page. The bad news: most online guides bury them under jargon. Let's skip that.
What prompt engineering actually is
A large language model (LLM) is a pattern-matching machine trained on enormous amounts of text. It doesn't understand your intent — it predicts what a useful response to your input would look like, based on similar inputs in its training data.
That means the quality of your output depends almost entirely on whether your input looks like a request that good answers usually follow. Prompt engineering is the practice of writing inputs that look like that.
Five techniques cover 80% of the gains. The rest is rare or specialized.
Technique 1: Give it a role
The single highest-leverage move. Telling the model who it is shapes everything that follows — vocabulary, depth, assumptions, tone.
Before:
How do I improve my resume?
After:
You are a hiring manager at a Series B startup who has reviewed
10,000+ resumes. I'll paste my resume. Tell me the top 3 changes
that would meaningfully increase my interview rate. Be blunt.
The "before" gets you Reddit-tier generic advice. The "after" gets you opinionated, specific feedback in the voice you actually want.
Roles work because they import context. "Hiring manager" implies someone who skims, knows what red flags look like, and judges resumes against a market. You don't have to specify all of that — the role does it for you.
Technique 2: Give it context
LLMs have no idea who you are, what you've already tried, or what your constraints are. Every prompt is a cold start. The more context you provide, the less the model has to guess.
Before:
Write a marketing email.
After:
Write a marketing email for a small B2B SaaS company that helps
solo accountants automate client onboarding. Audience: accountants
who run their own practice, currently doing onboarding manually,
moderately tech-skeptical. The email announces a new feature:
auto-generated engagement letters from a 5-question form. Goal:
get them to try it for free. Tone: practical, not hypey. 150 words.
Every detail in the "after" prompt eliminates a wrong assumption the model would otherwise have made (corporate enterprise tone, generic feature pitch, hype-language opener).
Rule of thumb: if a thoughtful human assistant would ask a clarifying question, include the answer in the prompt.
Technique 3: Specify the format
"Give me ideas" produces a bulleted list with explanations. "Give me a paragraph about ideas" produces prose. "Give me 5 ideas, one line each, ranked from safest to most ambitious" produces something you can scan in 10 seconds.
Before:
What are the trade-offs of using PostgreSQL vs MongoDB?
After:
Compare PostgreSQL and MongoDB. Output format: a 2-column markdown
table with rows for "data model," "transactions," "scaling," "query
power," "operational maturity," and "best fit." One sentence per
cell. End with a 2-sentence recommendation for someone building a
standard web app.
The format spec tells the model what "useful" looks like. Without it, you get a wall of text you have to re-read three times.
Technique 4: Tell it what NOT to do
LLMs have strong default tendencies — they hedge, they over-explain, they reach for the same stock phrases ("delve into," "furthermore," "in conclusion"). Positive instructions don't always fight those defaults. Negative ones do.
Before:
Write a short blog intro about remote work.
After:
Write a 4-sentence blog intro about remote work for an audience
of experienced managers. Avoid: starting with "In today's world,"
em-dashes, the phrases "delve into" or "navigate the landscape,"
and any reference to the pandemic. Don't summarize what the post
will cover — just start the argument.
The negative instructions force the model away from its laziest patterns. It's the difference between AI-flavored sludge and writing that doesn't feel like AI.
Technique 5: Give it an example (one-shot)
When you want a specific style, voice, or structure, the fastest way to communicate it is to show one example. This is called "one-shot prompting" and it's astonishingly effective.
Before:
Write product descriptions for these three items: [list]
After:
Write product descriptions for the items below, matching this
style:
Example:
Item: Wool Henley
Description: Mid-weight merino with a 3-button placket. Cut slim
through the body, room in the shoulder. Wear it under a jacket
in fall, alone in spring. Naturally odor-resistant — wear it a
week, wash it once.
Now write descriptions for:
1. Linen shorts
2. Canvas messenger bag
3. Leather card holder
The example does what 500 words of style guidance couldn't. It shows tone (confident, specific), structure (what it is, how it fits, how to wear it, a kicker), and vocabulary (no marketing-speak).
You only need one good example. Two or three help with edge cases. Five or more is rarely necessary outside of specialized tasks.
The five mistakes that ruin most prompts
If your prompts feel like they're producing weak output, you're probably making one of these:
1. Asking open-ended questions when you want specific answers. "How do I get better at writing?" gets philosophy. "Give me 3 specific edits to make this sentence punchier: [sentence]" gets edits.
2. Not telling it the audience. "Explain X" defaults to a textbook tone for nobody in particular. "Explain X to a smart non-expert who's heard the term but never used it" gets you something readable.
3. Asking for everything in one prompt. If your prompt has three different goals, split it into three prompts. The model handles one job at a time better than three.
4. Accepting the first answer. The first answer is usually decent but generic. "Make it better by [specific direction]" or "Try again, but [specific change]" is where the gold is. Two rounds is the sweet spot.
5. Polite filler. "Could you please kindly help me with..." adds nothing. Direct instructions ("Write...", "Compare...", "Critique...") get cleaner output. The model isn't insulted.
A reusable prompt template
If you remember nothing else, remember this template. It covers 90% of real-world prompting needs:
Act as [role].
I'm trying to [goal].
Here's the context: [3-5 sentences of relevant details].
Give me [format] in [length].
Avoid [things you don't want].
[Optional: Here's an example of what good looks like: ...]
Fill in five fields, get vastly better output. That's prompt engineering.
Advanced techniques worth knowing about
The five techniques above handle daily use. For specific situations, three more are worth knowing:
Chain-of-thought: add "think step by step before answering" for reasoning-heavy questions (math, logic, planning). The model produces its working before its conclusion, which dramatically improves accuracy on hard problems.
Self-critique: ask for an answer, then ask the model to critique it and rewrite. "Now identify the three biggest weaknesses in that response and rewrite it to fix them" is a one-line upgrade to almost any output.
Output constraints: "Respond only in JSON" or "respond in exactly 100 words" works surprisingly well. Use this when the output has to fit a specific shape (a form, an API, a slide).
Frequently asked questions
Do I need to learn prompt engineering if the models keep getting smarter?
Yes, but the floor of "good enough prompts" keeps rising. Bad prompts will always produce worse output than good ones — the gap just narrows over time. Learning the basics now means you stay in the top decile of users regardless of model improvements.
Do these techniques work for image and video AI models too?
Mostly yes — role, context, format, and negative instructions all translate. Examples work especially well for image models. The biggest difference: image prompts benefit from concrete visual nouns (lighting, lens type, style, mood) over abstract adjectives.
Is "prompt engineer" a real job?
It was briefly, in 2023–24. In 2026, prompting is a skill embedded in regular roles — writers, marketers, developers, analysts. The dedicated job title has mostly faded. The skill hasn't.
How long does it take to get good at this?
You'll see noticeable improvement in a week of intentional practice. The five techniques above are 80% of it. The remaining 20% is calibration to specific tools and your specific work — that takes longer but is also learnable in a month or two of regular use.
Closing thought
Prompt engineering is less a technical skill than a communication skill. The same things that make you good at giving instructions to a new hire, or writing a clear ticket, or briefing a designer — context, specificity, examples, constraints — make you good at prompting an LLM.
Save the template above, use it for a week, and you'll never write a vague prompt again.
What's the prompt that consistently gives you trouble? Share it in the comments and I'll suggest a rewrite.
Comments
Post a Comment