Prompt Library

Get More from Gemini with Better Prompts

25 copy-paste prompts

40 prompts designed for Google Gemini's strengths — multimodal reasoning, long context, Google ecosystem integration, and real-time information access.

Research & Analysis

5 prompts

Deep-Dive Research Brief

1/25

I need a comprehensive research brief on [topic]. Structure it as: 1) Current state of the field (what's established), 2) Active debates and unresolved questions, 3) Key players and institutions, 4) Recent developments from the last 6 months, 5) Practical implications for [my context]. Cite specific studies, papers, or data points where possible. Flag any claims where the evidence is weak or contested.

Leverages Gemini's access to recent information and its ability to synthesize across sources.

💡

Pro tip: Gemini has access to current information through Google Search. Ask it to distinguish between well-established findings and emerging research.

Compare Competing Perspectives

2/25

Analyze [topic/debate] from three distinct perspectives: [perspective 1], [perspective 2], and [perspective 3]. For each perspective, explain: the core argument, the strongest evidence supporting it, the weakest point in the reasoning, and what someone holding this view would recommend. End with a synthesis: where do these perspectives overlap, and where are the genuine disagreements that can't be resolved by more data?

Produces balanced, multi-angle analysis rather than a single dominant narrative.

💡

Pro tip: Name specific thinkers, schools of thought, or frameworks for each perspective. "The behavioral economist's view" is sharper than "one perspective."

Fact-Check My Assumptions

3/25

I believe the following things about [topic]: 1. [Assumption 1] 2. [Assumption 2] 3. [Assumption 3] 4. [Assumption 4] 5. [Assumption 5] For each assumption, tell me: Is it accurate, partially accurate, or wrong? What's the current evidence? Where might my understanding be outdated or oversimplified? If an assumption is common but misleading, explain why it persists.

Uses Gemini as an intellectual sparring partner to stress-test your beliefs before you build on them.

💡

Pro tip: Include assumptions you're confident about, not just uncertain ones. The surprises come from discovering that "obvious" facts are more nuanced than expected.

Summarize This Long Document

4/25

I'm going to share a [document type — contract, research paper, report, transcript]. Please provide: 1) A 3-sentence executive summary, 2) The 5 most important points in bullet form, 3) Any red flags, inconsistencies, or notable omissions, 4) Three questions I should ask after reading this, 5) A one-paragraph "what this means for me" analysis given that I am [your role/context]. [Paste document]

Takes advantage of Gemini's large context window for document analysis.

💡

Pro tip: Gemini handles very long documents well. Don't pre-summarize — paste the full text and let it work with complete context.

Trend Analysis with Data

5/25

Analyze this data and identify the three most significant trends: [Paste data — CSV, table, or description] For each trend: describe what's happening, hypothesize why it's happening, project where it's heading if the pattern continues, and identify what would cause the trend to reverse. Present your analysis in a format suitable for a [meeting/report/presentation].

Combines Gemini's analytical capabilities with structured output for professional use.

💡

Pro tip: Include context about what the numbers represent and what decisions depend on them. Analysis without context is just math.

Prompts get you started. Tutorials level you up.

A growing library of 300+ hands-on AI tutorials. New tutorials added every week.

Start 14-Day Free Trial

Writing & Content

5 prompts

Write in a Specific Voice

6/25

I need you to write [type of content] in a voice that is [adjective 1], [adjective 2], and [adjective 3]. The audience is [describe reader]. The goal is to [desired outcome]. Here's an example of the voice I'm going for: [Paste a sample paragraph in the desired voice] Now write [content description] matching this voice exactly. Maintain the same sentence length patterns, vocabulary level, and tone throughout.

Uses a reference sample to dial in voice more precisely than adjectives alone can achieve.

💡

Pro tip: The sample paragraph is the most important part. Three sentences of example voice are worth more than ten adjectives describing it.

Transform Content Across Formats

7/25

Here is [original content type — a blog post, a report, a transcript, meeting notes]: [Paste content] Transform this into [target format]: a Twitter/X thread (8-12 tweets), a LinkedIn post (hook + value + CTA), an email newsletter section (150 words), and a presentation outline (5-7 slides with speaker notes). Each format should emphasize the angle most relevant to that platform's audience.

Repurposes one piece of content into multiple formats while adapting tone and emphasis for each.

💡

Pro tip: Specify platform conventions explicitly. "LinkedIn voice" and "Twitter voice" are different — Gemini knows this but benefits from the reminder.

Edit for Clarity and Impact

8/25

Edit the following text for clarity, impact, and concision. Rules: 1) Cut any sentence that doesn't earn its place, 2) Replace jargon with plain language unless the jargon is necessary for the audience, 3) Strengthen weak verbs (replace "is," "was," "has" with action verbs where possible), 4) Break up any sentence over 25 words, 5) Preserve my voice — tighten, don't rewrite. Show me the edited version, then list every change you made and why. [Paste text]

Turns Gemini into a rigorous editor with explicit, reviewable rules.

💡

Pro tip: The "list every change and why" instruction makes the edits transparent and educational rather than opaque.

Generate SEO Content Brief

9/25

Create a detailed content brief for an article targeting the keyword "[keyword]." Include: 1) Recommended title (under 60 characters), 2) Meta description (under 155 characters), 3) Suggested H2 and H3 structure, 4) Key questions the article must answer (based on what people searching this keyword actually want), 5) Related keywords to include naturally, 6) Recommended word count, 7) Content angle that differentiates this from what already ranks.

Produces a complete content blueprint informed by search intent and competitive awareness.

💡

Pro tip: Ask Gemini to explain the search intent behind the keyword. Understanding WHY people search determines what the content should deliver.

Draft Meeting Follow-Up Email

10/25

I just had a meeting about [topic] with [attendees/roles]. Here are my rough notes: [Paste messy notes] Draft a professional follow-up email that includes: 1) Summary of key decisions made, 2) Action items with owners and deadlines, 3) Open questions that need resolution, 4) Next steps and next meeting date if applicable. Tone: [professional/casual/executive-brief]. Keep it under [word count] words.

Transforms chaotic meeting notes into structured, actionable communication.

💡

Pro tip: Include who was in the meeting and their roles. Gemini will calibrate formality and detail level based on the audience.

Coding & Technical

5 prompts

Debug This Code

11/25

Here is my code that isn't working as expected: ```[language] [Paste code] ``` Expected behavior: [what it should do] Actual behavior: [what it does instead] Error message (if any): [paste error] Please: 1) Identify the bug and explain why it happens, 2) Show the corrected code, 3) Explain the fix so I understand the underlying concept, 4) Suggest any other issues or improvements you notice (but keep the focus on the bug first).

Structured debugging prompt that gives Gemini the full context needed for accurate diagnosis.

💡

Pro tip: Always include the error message and actual vs. expected behavior. "It doesn't work" gives the AI nothing to work with.

Code Review

12/25

Review this code for: 1) Bugs or potential runtime errors, 2) Security vulnerabilities (injection, auth issues, data exposure), 3) Performance concerns, 4) Readability and maintainability, 5) Adherence to [language/framework] best practices. Prioritize issues by severity (critical > important > nice-to-have). For each issue, explain the problem, show the fix, and explain why it matters. ```[language] [Paste code] ```

Simulates a thorough code review with prioritized, actionable feedback.

💡

Pro tip: Specify the framework and version. "React 18" or "Python 3.12" changes what best practices apply.

Explain This Codebase

13/25

I'm new to this codebase. Here are the key files: [Paste file contents or describe the structure] Explain: 1) What this code does at a high level, 2) The architecture and design patterns used, 3) How data flows through the system, 4) The entry points (where does execution start?), 5) The key dependencies and why they're used. Explain it as if I'm a [junior/mid/senior] developer joining the team.

Leverages Gemini's long context to analyze multiple files and explain their relationships.

💡

Pro tip: Paste actual code rather than just file names. Gemini can process large amounts of code and will give more accurate explanations with real content.

Generate Test Cases

14/25

Write comprehensive test cases for this function/component: ```[language] [Paste code] ``` Include: 1) Happy path tests (normal usage), 2) Edge cases (empty inputs, boundary values, type mismatches), 3) Error cases (what should fail and how), 4) Integration considerations (how this interacts with other components). Use [testing framework] syntax. Explain the reasoning behind each test case.

Produces thorough test coverage with explanations that teach testing strategy.

💡

Pro tip: The best test suites test behavior, not implementation. Ask Gemini to focus on "what should happen" rather than "how it works internally."

Optimize This Query

15/25

Here is a database query that's running slowly: ```sql [Paste query] ``` Table structure: [describe or paste schema] Approximate data volume: [number of rows] Current execution time: [time] Please: 1) Explain why this query is slow, 2) Suggest an optimized version, 3) Recommend any indexes that would help, 4) Explain the tradeoffs of your optimization (does it sacrifice readability? does the index slow writes?). Show the EXPLAIN plan difference if possible.

Database optimization with context about schema and data volume for accurate recommendations.

💡

Pro tip: Include the table schema and approximate row counts. A query that's fine on 10,000 rows might be catastrophic on 10 million.

Productivity & Decision Making

5 prompts

Decision Matrix

16/25

I need to decide between [option A], [option B], and [option C]. The decision is about [context]. My priorities are (in rough order): [priority 1], [priority 2], [priority 3], [priority 4]. For each option, rate it against each priority (strong/moderate/weak) and explain your reasoning. Then give me a recommendation with a confidence level. Flag any information I should gather before deciding.

Structures complex decisions into a clear, reviewable framework.

💡

Pro tip: Be honest about your priorities. If cost matters more than quality, say so. The matrix is only useful if the inputs are truthful.

Pre-Mortem Analysis

17/25

I'm about to [describe plan, project, or decision]. Imagine it's six months from now and this has failed completely. Write the post-mortem: What went wrong? What risks did I underestimate? What dependencies broke? What assumption was wrong? Then come back to the present: which of these failure modes can I prevent or mitigate right now? Rank them by likelihood and impact.

Uses prospective hindsight to identify risks your optimism is hiding.

💡

Pro tip: The most valuable failure modes are the ones that feel uncomfortable to read. That discomfort usually means you're already worried about them.

Weekly Review Template

18/25

Here's what I worked on this week: [Paste rough notes, calendar events, completed tasks, or a stream-of-consciousness summary] Please organize this into: 1) Key accomplishments (what actually moved the needle), 2) Time sinks (what took more time than it was worth), 3) Unfinished items and why they stalled, 4) Patterns or insights (what does this week reveal about how I work?), 5) Three priorities for next week based on what I've told you.

Transforms chaotic weekly activity into structured reflection and forward planning.

💡

Pro tip: Don't clean up your notes before pasting them. The messy version reveals more about your actual priorities and attention patterns.

Negotiate This Situation

19/25

I need to negotiate [situation — salary, contract, scope, deadline, price]. Here's my context: - What I want: [ideal outcome] - What I'd accept: [minimum acceptable outcome] - My leverage: [what I bring to the table] - Their likely position: [what the other side probably wants] - Relationship importance: [one-time deal vs. ongoing relationship] Give me: 1) An opening position and rationale, 2) Three concessions I can make that cost me little but feel valuable to them, 3) Two things I should never concede, 4) A script for the hardest moment — when they push back on my core ask.

Turns negotiation anxiety into prepared strategy with specific talking points.

💡

Pro tip: The "concessions that cost me little" section is the most valuable. Having these ready makes you look flexible while protecting what matters.

Simplify This Complex Topic

20/25

Explain [complex topic] to me at three levels: 1. **Like I'm 10**: Use analogies, no jargon, focus on the core idea. 2. **Like I'm a smart non-expert**: Include key terminology with definitions, cover the main mechanisms, explain why it matters. 3. **Like I'm a professional in the field**: Use proper terminology, address nuances, include current debates, and point me to the most important papers or resources. I'm actually at level [1/2/3], but I want all three to check my understanding.

Builds layered understanding by approaching the same topic at increasing complexity.

💡

Pro tip: Reading all three levels often reveals gaps in your understanding. If you can't follow the jump from level 2 to level 3, that's where your knowledge has holes.

Creative & Visual

5 prompts

Brainstorm Session

21/25

I need creative ideas for [project/problem]. Give me 20 ideas in three categories: 1) Safe and proven (ideas that are conventional but effective), 2) Bold and different (ideas that stand out but carry more risk), 3) Wild cards (ideas that might be brilliant or might be terrible — push the boundaries). For each idea, write one sentence explaining it and one sentence on why it might work. Don't self-censor.

Generates a spectrum of ideas from conservative to radical, letting you choose your risk level.

💡

Pro tip: The wild card category often contains the seed of the best idea — something that needs modification rather than wholesale adoption.

Image Analysis and Description

22/25

[Upload an image] Analyze this image in detail: 1) Describe what you see objectively, 2) Identify the style, composition, and technique, 3) What mood or emotion does this convey? 4) If this is a design/UI/photo I'm working on, suggest three specific improvements with reasoning, 5) Describe this image in a way that could be used as a prompt to recreate something similar with an AI image generator.

Uses Gemini's multimodal capabilities for detailed visual analysis and actionable feedback.

💡

Pro tip: Gemini can analyze charts, diagrams, screenshots, and photos. Upload the actual image rather than describing it for much better results.

Name Generator with Rationale

23/25

I need name ideas for [product/company/project/feature]. Context: [what it does, who it's for, what feeling you want]. Generate 15 name options across three styles: 1) Descriptive (tells you what it does), 2) Evocative (creates a feeling or association), 3) Abstract (unique, memorable, ownable). For each name, explain the rationale, check if the .com domain is likely available, and rate memorability 1-5.

Structured naming exercise that goes beyond random word generation to strategic brand thinking.

💡

Pro tip: The rationale matters more than the name itself. A name you don't love but has great reasoning can be refined. A name you love with no strategy behind it will cause problems.

Presentation Storytelling Arc

24/25

I need to present [topic] to [audience] in [time limit]. The goal is to [desired outcome — persuade, inform, get approval, inspire action]. Here's my raw content: [Paste key points, data, or notes] Build this into a presentation narrative arc: 1) Opening hook (first 30 seconds — grab attention), 2) The problem or tension (why this matters), 3) The journey (key points in logical order), 4) The climax (the main insight or recommendation), 5) The close (clear call to action). Include suggested slide titles and one key visual per slide.

Transforms raw information into a compelling presentation narrative.

💡

Pro tip: The opening hook is everything. If you lose them in the first minute, the rest doesn't matter. Test three different openings and pick the strongest.

Create a Learning Plan

25/25

I want to learn [skill/topic] from [current level] to [target level] in [timeframe]. I can dedicate [hours per week]. My learning style is [visual/hands-on/reading/video]. Create a structured learning plan with: 1) Weekly milestones, 2) Specific resources for each phase (free where possible), 3) Practice exercises that build progressively, 4) How to measure progress at each stage, 5) Common plateaus and how to push through them.

Produces a personalized curriculum that accounts for time constraints and learning preferences.

💡

Pro tip: Be honest about your hours per week. An ambitious plan you abandon in week 2 is worse than a modest plan you complete.

Frequently Asked Questions

Google Gemini (formerly Bard) is Google's AI assistant powered by the Gemini family of large language models. The key differences from ChatGPT: Gemini has native access to Google Search for real-time information, deeper integration with the Google ecosystem (Gmail, Docs, Drive, Maps, YouTube), strong multimodal capabilities (it can analyze images, videos, and documents natively), and a very large context window that lets it process long documents in a single conversation. ChatGPT has its own strengths — a more established plugin ecosystem, strong coding abilities, and custom GPTs. In practice, Gemini tends to excel at research tasks requiring current information, document analysis, and tasks that benefit from Google product integration. The best approach is to know both tools and use whichever one fits the task. The prompts on this page are optimized for Gemini's specific strengths.
The core principles for prompting Gemini are the same as any large language model: be specific about what you want, provide context about who you are and why you need it, specify the format you want the output in, and give examples when possible. Gemini-specific tips: leverage its Google Search integration by asking for recent or current information, upload images and documents directly rather than describing them, use its long context window by pasting full documents rather than summaries, and take advantage of Google Workspace integration by referencing your Docs, Sheets, or Gmail content. The single most impactful improvement most people can make: include your role, the audience, and the desired outcome in every prompt. "Write a summary" is weak. "Write a 200-word summary of this research paper for a marketing team that needs to decide whether to invest in this technology" gives Gemini everything it needs to deliver useful output.
Google offers Gemini in multiple tiers. The free tier (gemini.google.com) gives access to the Gemini model with basic features including text generation, image analysis, and Google Search integration. Gemini Advanced (part of the Google One AI Premium plan) provides access to the most capable Gemini models, longer context windows, deeper Google Workspace integration (Gemini in Gmail, Docs, Sheets, Slides), and priority access to new features. For most users starting out, the free tier is sufficient to use all the prompts on this page. Gemini Advanced becomes valuable when you regularly work with long documents, need Gemini integrated directly into your Google Workspace workflow, or want access to the latest and most capable models. Developers can access Gemini models through Google AI Studio and the Gemini API, with a generous free tier for experimentation.
Yes, multimodal input is one of Gemini's core strengths. You can upload images (photos, screenshots, charts, diagrams, handwritten notes) and Gemini will analyze, describe, and reason about them. This is particularly useful for: analyzing data visualizations and charts, getting feedback on design mockups or UI screenshots, extracting text from images (OCR), understanding diagrams and flowcharts, and describing photos in detail. For documents, Gemini can process PDFs, spreadsheets, and text files directly. With Gemini Advanced and Google Workspace integration, you can reference your Google Docs and Sheets directly in conversation. The key to getting good results from multimodal inputs: be specific about what you want Gemini to focus on. "Analyze this image" is vague. "Identify the three biggest usability issues in this mobile app screenshot and suggest fixes" gives Gemini clear direction.

Prompts are the starting line. Tutorials are the finish.

A growing library of 300+ hands-on tutorials on ChatGPT, Claude, Midjourney, and 50+ AI tools. New tutorials added every week.

14-day free trial. Cancel anytime.