What is Prompting?
A prompt is your instruction to an AI. The quality of your output is directly determined by the quality of your input. This is the most learnable skill in AI.
Why prompting matters
Most people use AI the same way they use Google — type a few words, read the first result. But AI language models are not search engines. They are extraordinarily capable systems that respond to the precision and richness of your instruction.
| Weak prompt | Output |
|---|---|
| "tell me about SIP" | Generic Wikipedia-style explanation |
| "write a cover letter" | Bland template with [YOUR NAME] placeholders |
| "analyse this company" | Surface-level overview |
| Strong prompt | Output |
|---|---|
| "Explain SIP investing to a 25-year-old earning ₹60,000/month who has never invested before. Cover what it is, how to start, how much to invest, and the top 3 mistakes beginners make. Use simple language and Indian rupee examples." | Specific, actionable, India-relevant guide |
The prompting mindset
Think of AI as an extraordinarily intelligent assistant who has just joined your team. They are brilliant — but they don't know your context, your audience, your style, or your constraints unless you tell them.
- The more context you give, the better the output
- Iterate — good prompting is a conversation, not a one-shot request
- Be specific about format: "give me a numbered list of 5 points, each under 2 sentences"
- Tell it who to write for: "explain this to a 50-year-old with no finance background"
What AI models are actually doing
When you send a prompt, the model predicts the most likely next token given your input. It is not "thinking" — it is pattern-matching at enormous scale. Understanding this explains both its power and its limitations:
- Power: It has seen millions of examples of great writing, clear explanations, and correct code — so it can produce all of these
- Limit: It will confidently produce plausible-sounding but wrong answers if your prompt steers it toward unfamiliar territory — always verify
Anatomy of a Great Prompt
Six ingredients that transform an average prompt into an exceptional one. You don't need all six every time — but knowing each one changes what you can get.
The six prompt ingredients
| # | Ingredient | What it does | Example |
|---|---|---|---|
| 1 | Role | Sets the persona and expertise level | "Act as a senior investment banker with 15 years of experience" |
| 2 | Context | Gives background so the AI understands your situation | "I am a 28-year-old software engineer earning ₹18L/year with no debt" |
| 3 | Task | The specific thing you want done | "Create a 3-year investment plan that allocates my monthly surplus" |
| 4 | Format | How the output should be structured | "Present as a table with columns: asset class, allocation %, monthly amount, rationale" |
| 5 | Constraints | Limits and requirements | "Assume 12% equity return, 7% debt return. No crypto. India context." |
| 6 | Audience | Who will read/use the output | "Write for someone who has never invested before — avoid jargon" |
Before and after: same request, different results
The role prompt: your most powerful lever
Assigning a role dramatically shifts the quality, depth, and style of AI output. Use roles that match the expertise you need:
| Role | When to use |
|---|---|
| "Act as a CFO reviewing this business plan" | Business/finance analysis — get financial rigour and risk flags |
| "Act as a senior recruiter at Goldman Sachs" | CV/cover letter review — get hiring manager perspective |
| "Act as a hostile investor trying to find holes in this thesis" | Investment research — adversarial stress-testing |
| "Act as a teacher explaining to a 10-year-old" | Any complex concept — guaranteed plain English |
| "Act as a copywriter who specialises in high-conversion emails" | Marketing copy — gets specific, persuasive output |
The format instruction: always specify structure
Without a format instruction, AI defaults to paragraphs. Specifying format dramatically improves usability:
- "Give me a table with columns: X, Y, Z"
- "Number each point. Max 3 sentences per point."
- "Use headers for each section. Keep the total under 400 words."
- "Give me the answer in JSON format with keys: title, summary, pros, cons"
- "Format as a step-by-step checklist I can print and use"
Core Prompting Techniques
Five proven techniques used by AI engineers and power users. Each one solves a different problem.
1. Zero-shot prompting
Ask the AI to do something with no examples — just a clear instruction. Works for most common tasks.
Use when: the task is clear and well-defined. Fails when: the task is ambiguous or requires a specific style the AI hasn't guessed correctly.
2. Few-shot prompting
Give 2–3 examples of the input-output pair you want before asking for the real thing. The AI learns the pattern from your examples.
Use when: you have a specific style, format, or transformation in mind that's hard to describe in words.
3. Chain-of-thought prompting
Ask the AI to reason step-by-step before giving its final answer. This dramatically improves accuracy on complex reasoning tasks — maths, analysis, multi-step decisions.
4. Persona + audience framing
Combine a role (who the AI is) with an audience definition (who the output is for). This is the fastest way to get tone-perfect content.
5. Iterative refinement
The single biggest difference between average and expert AI users: they iterate. Treat your first prompt as a draft, then refine.
| Round | What you do |
|---|---|
| Round 1 | Send your best prompt — get a response |
| Round 2 | "Make the tone more conversational and cut the length by 30%" |
| Round 3 | "Add a concrete example for the second point. Change the opening line." |
| Round 4 | "Good. Now rewrite section 2 to be more specific about India." |
Prompt Library by Category
Copy, customise, and use. Real prompts that work — across finance, career, content, research, and everyday tasks.
Finance prompts
Career prompts
Content creation prompts
Research & analysis prompts
Everyday productivity prompts
Advanced Prompting
Techniques used by professionals who get consistently exceptional results — system prompts, context management, and avoiding the most common failure modes.
System prompts: your permanent instruction layer
Most AI interfaces (Claude, ChatGPT) allow you to set a system prompt — a persistent instruction that applies to every message in the conversation. This is how you get consistent tone, style, and behaviour without repeating yourself.
Context management in long conversations
AI models have a finite context window — in long conversations, early context can be "forgotten." Techniques to manage this:
- Summarise periodically: "Summarise what we've established so far in 5 bullet points" — then reference that summary in new messages
- Re-anchor: Start important new sections with "Remember: [key constraint or context from earlier]"
- Start fresh conversations: For new tasks, a fresh context is cleaner than a polluted long conversation
- Use structured handoffs: "Here is what we've decided: [bullet list]. Now move on to [next phase]"
Avoiding hallucinations in high-stakes tasks
| Technique | How it works |
|---|---|
| "If you are not certain, say so" | Instructs the model to flag uncertainty rather than fabricate confidently |
| "Only use information from the document I pasted — do not use outside knowledge" | Constrains the model to a specific source |
| "After answering, list any assumptions you made" | Surfaces hidden assumptions for you to verify |
| "Give me 3 possible answers and your confidence level for each" | Forces the model to show its uncertainty range |
| Cross-check with Perplexity (cited sources) | Verify factual claims against real sources externally |
The meta-prompt: ask AI to write your prompt
One of the most underused techniques: ask AI to help you write a better prompt for the task you want to accomplish.