<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Nav</title>
    <description>The latest articles on DEV Community by Nav (@navbuildz).</description>
    <link>https://dev.to/navbuildz</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3836086%2F5f68372f-574f-4c23-80ed-928dfaa7b4fd.jpeg</url>
      <title>DEV Community: Nav</title>
      <link>https://dev.to/navbuildz</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/navbuildz"/>
    <language>en</language>
    <item>
      <title>Open-source Gmail MCP server: multi-account support, read/write (works with Claude, Cursor, OpenClaw)</title>
      <dc:creator>Nav</dc:creator>
      <pubDate>Thu, 02 Apr 2026 22:10:36 +0000</pubDate>
      <link>https://dev.to/navbuildz/open-source-gmail-mcp-server-multi-account-support-readwrite-works-with-claude-cursor-3oie</link>
      <guid>https://dev.to/navbuildz/open-source-gmail-mcp-server-multi-account-support-readwrite-works-with-claude-cursor-3oie</guid>
      <description>&lt;p&gt;Most AI tools come with a Gmail integration that can only read from one account. No writing. No archiving. No unsubscribing. I built an open-source MCP server that changes that.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgfu6iicvmhor2madshtc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgfu6iicvmhor2madshtc.png" alt="Gmail MCP" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  The Problem
&lt;/h3&gt;

&lt;p&gt;Claude's built-in Gmail connector reads emails from one account. That's it. No archiving, no labeling, no unsubscribing. If you have multiple Gmail accounts, you need to set up separate connectors for each one.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Solution
&lt;/h3&gt;

&lt;p&gt;A &lt;a href="https://github.com/navbuildz/gmail-mcp-server" rel="noopener noreferrer"&gt;single MCP server&lt;/a&gt; that connects to all your Gmail accounts and gives AI full read/write access:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;7 tools: list, read, archive, label, unsubscribe, batch process&lt;/li&gt;
&lt;li&gt;Works with Claude, OpenClaw, Cursor, Windsurf, Cline, and any MCP client&lt;/li&gt;
&lt;li&gt;Deploys in 5 minutes&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Quick Start
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Deploy to Railway or self-host&lt;/li&gt;
&lt;li&gt;Add Google OAuth credentials&lt;/li&gt;
&lt;li&gt;Connect your Gmail accounts via the web setup page&lt;/li&gt;
&lt;li&gt;Point your AI client to the &lt;code&gt;/mcp&lt;/code&gt; endpoint&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Full setup guide: &lt;a href="https://github.com/navbuildz/gmail-mcp-server" rel="noopener noreferrer"&gt;github.com/navbuildz/gmail-mcp-server&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Example Prompts
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;"Show me unread emails from the last 2 days across all accounts"&lt;/li&gt;
&lt;li&gt;"Unsubscribe from all newsletters in the last month"&lt;/li&gt;
&lt;li&gt;"Archive everything from category:promotions"&lt;/li&gt;
&lt;li&gt;"Label all emails from &lt;a class="mentioned-user" href="https://dev.to/company"&gt;@company&lt;/a&gt;.com as 'Work'"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;MIT licensed. PRs welcome.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>agentskills</category>
      <category>opensource</category>
      <category>tooling</category>
    </item>
    <item>
      <title>The Best AI Prompts for Debugging Code</title>
      <dc:creator>Nav</dc:creator>
      <pubDate>Tue, 31 Mar 2026 08:08:25 +0000</pubDate>
      <link>https://dev.to/navbuildz/the-best-ai-prompts-for-debugging-code-474i</link>
      <guid>https://dev.to/navbuildz/the-best-ai-prompts-for-debugging-code-474i</guid>
      <description>&lt;h2&gt;
  
  
  The Problem With "Debug This"
&lt;/h2&gt;

&lt;p&gt;Paste broken code into ChatGPT and type "fix this" and you'll often get a fix for the wrong problem. The AI makes an assumption, rewrites something plausible-looking, and you're back where you started.&lt;/p&gt;

&lt;p&gt;The real discipline is making the AI reason about the code before it proposes a fix. These prompts do that.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Core Debugging Prompt
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I have a bug and I need help finding it. Here's the context:

Language/framework: [specify]
What I expected to happen: [describe]
What actually happened: [describe — include exact error message if there is one]
What I've already tried: [list anything you've tested]

Code:
{{clipboard}}

Before suggesting a fix, walk me through your reasoning: what could cause this behavior, and which explanations are most likely?

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Why it works:&lt;/strong&gt; Asking for reasoning before the fix surfaces assumptions you might have missed. You also often spot the bug yourself while reading the explanation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Stack Trace Analysis
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Analyze this stack trace. Tell me:
1. Where exactly the error originates (file, line, function)
2. What the error message actually means in plain language
3. The most likely root cause
4. What I should look at first to fix it

Stack trace:
{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;For cryptic errors:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This error message is confusing me. Translate it into plain English, explain what likely triggered it, and suggest 2-3 things to check.

Error:
{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Rubber Duck Debugging
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm going to explain my code and what I think it's doing. After I describe it, ask me clarifying questions about any assumptions I'm making. Don't suggest fixes yet — I want to talk through the logic first.

Here's my code and what I believe it does:

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Why this works:&lt;/strong&gt; Rubber duck debugging is legitimately effective — explaining code out loud (or in writing) forces you to surface your assumptions. The AI plays a better rubber duck than most humans because it will ask pointed questions.&lt;/p&gt;

&lt;h2&gt;
  
  
  Logic Error Hunting
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This code runs without errors but produces wrong output. I need help finding a logic error.

Expected output: [describe]
Actual output: [describe]
Input being used: [describe or paste]

Walk through this code step by step as if you're executing it manually. Identify any point where the actual behavior diverges from what I intended.

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;For off-by-one errors specifically:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I suspect I have an off-by-one or boundary error in this code. Walk through what happens at the edges: first iteration, last iteration, empty input, and single-element input.

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Performance Debugging
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This code is slower than expected. Analyze it for performance problems:
1. Identify any O(n²) or worse operations hidden in loops
2. Flag unnecessary repeated work or redundant computations
3. Note any obvious missing optimizations (caching, early returns, etc.)
4. Rank the issues by likely impact

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;For database/query performance:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight sql"&gt;&lt;code&gt;&lt;span class="n"&gt;This&lt;/span&gt; &lt;span class="n"&gt;query&lt;/span&gt; &lt;span class="k"&gt;is&lt;/span&gt; &lt;span class="n"&gt;running&lt;/span&gt; &lt;span class="n"&gt;slowly&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt; &lt;span class="k"&gt;Analyze&lt;/span&gt; &lt;span class="n"&gt;it&lt;/span&gt; &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;common&lt;/span&gt; &lt;span class="n"&gt;performance&lt;/span&gt; &lt;span class="n"&gt;issues&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;missing&lt;/span&gt; &lt;span class="n"&gt;indexes&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;unnecessary&lt;/span&gt; &lt;span class="n"&gt;joins&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;N&lt;/span&gt;&lt;span class="o"&gt;+&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="n"&gt;patterns&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;subquery&lt;/span&gt; &lt;span class="n"&gt;inefficiencies&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;or&lt;/span&gt; &lt;span class="n"&gt;anything&lt;/span&gt; &lt;span class="n"&gt;that&lt;/span&gt; &lt;span class="n"&gt;would&lt;/span&gt; &lt;span class="k"&gt;explain&lt;/span&gt; &lt;span class="n"&gt;the&lt;/span&gt; &lt;span class="n"&gt;slow&lt;/span&gt; &lt;span class="n"&gt;execution&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;

&lt;span class="p"&gt;{{&lt;/span&gt;&lt;span class="n"&gt;clipboard&lt;/span&gt;&lt;span class="p"&gt;}}&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Async and Race Condition Debugging
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm dealing with an async bug that's hard to reproduce consistently. It may be a race condition or timing issue. Analyze this code for:
- Any operations that could complete in an unexpected order
- Missing await/async handling
- State that might be read before it's written
- Any place where two async operations could interfere

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Memory Leak Investigation
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I suspect a memory leak in this code. Look for:
- Event listeners that aren't cleaned up
- Timers or intervals that aren't cleared
- Circular references
- Objects or closures holding references longer than needed
- Any pattern that would prevent garbage collection

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  "What Does This Code Actually Do?"
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Explain exactly what this code does, line by line. Don't explain what it's trying to do — explain what it actually does. If there's a difference between the apparent intent and the actual behavior, flag it explicitly.

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Why this matters:&lt;/strong&gt; Sometimes you wrote code 3 months ago and the bug is your mistaken mental model of what it does. This prompt bypasses your assumptions.&lt;/p&gt;

&lt;p&gt;Better yet, catch bugs before they ship. Our &lt;a href="https://dev.to/blog/best-ai-prompts-code-review"&gt;code review prompts that catch bugs before they ship&lt;/a&gt; cover security audits, performance analysis, and architecture feedback.&lt;/p&gt;

&lt;h2&gt;
  
  
  Test Case Generation for Debugging
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Generate test cases that would expose edge-case bugs in this code. Focus on:
- Boundary values (0, 1, -1, empty, null, undefined)
- Unexpected types as input
- Very large inputs
- Concurrent or rapid-fire invocations
- Error states and recovery

For each test case, tell me what bug it's designed to catch.

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Comparing Two Versions (What Changed?)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Here are two versions of the same code. The second version introduced a bug that didn't exist in the first. Identify what changed and explain which change is likely causing the regression.

Version 1:
[paste v1 here]

Version 2:
{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  "Is This Even the Right Approach?"
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Before I spend more time debugging this, I want to sanity-check my approach. Am I solving this the right way?

Here's what I'm trying to do: [describe the goal]
Here's my current approach:

{{clipboard}}

Is there a fundamentally better way to do this that would sidestep the complexity I'm debugging?

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Why this is underused:&lt;/strong&gt; Sometimes the bug is a symptom of the wrong architecture. This prompt forces that conversation before you've sunk 3 more hours into the wrong solution.&lt;/p&gt;

&lt;h2&gt;
  
  
  Interpreting Compiler/Linter Errors
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Explain this compiler/linter error in plain English. Then tell me exactly what I need to change to fix it — not just what's wrong, but the specific change with an example.

Error: [paste error]

Relevant code:
{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Getting AI to Suggest Test Scenarios
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I fixed a bug in this code. Suggest the minimal set of manual or automated tests I should run to verify the fix didn't break anything else. Include regression tests for the specific bug I just fixed.

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Tips for Better Debugging With AI
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Paste the actual error message.&lt;/strong&gt; "It's not working" gives the model nothing. The exact error message, including the line number and exception type, gives it everything.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Include what you've already tried.&lt;/strong&gt; This prevents the AI from suggesting the first 3 obvious things you already ruled out.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Be explicit about language and framework.&lt;/strong&gt; "JavaScript" and "Node.js" give different contexts than "TypeScript" and "Deno." The model's debugging paths depend on knowing the runtime. Different models also have different strengths for debugging — see our guides to &lt;a href="https://dev.to/blog/best-chatgpt-prompts-developers"&gt;ChatGPT developer prompts&lt;/a&gt; and &lt;a href="https://dev.to/blog/best-claude-prompts-developers"&gt;Claude prompts for developers&lt;/a&gt; for model-specific tips.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Ask for reasoning, not just fixes.&lt;/strong&gt; The single most effective tweak: add "before suggesting a fix, explain your reasoning" to any debugging prompt. You'll catch wrong assumptions before they waste your time.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Store your go-to debugging prompts.&lt;/strong&gt; If you debug TypeScript daily, you'll reach for the same 3-4 prompts constantly. Store them in Promptzy, bind them to a shortcut, and fire them in 2 seconds instead of re-typing from memory. If you debug directly inside your editor, our &lt;a href="https://dev.to/blog/best-cursor-ai-prompts-developers"&gt;Cursor AI prompts for debugging in your editor&lt;/a&gt; guide covers that workflow.&lt;/p&gt;

&lt;p&gt;The prompts above aren't magic. They work because they force structure — yours and the AI's. The AI can't reason well about "fix this bug," but it reasons quite well about "here's what I expected, here's what happened, walk me through what could cause the gap."&lt;/p&gt;

&lt;p&gt;That structure is the whole game.&lt;/p&gt;

&lt;h3&gt;
  
  
  Store and manage your prompts with Promptzy
&lt;/h3&gt;

&lt;p&gt;Free prompt manager for Mac. Search with Cmd+Shift+P, auto-paste into any AI app.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/navbuildz/promptzy-builds/releases/latest/download/Promptzy.dmg" rel="noopener noreferrer"&gt;Download Free for macOS&lt;/a&gt;&lt;/p&gt;

</description>
      <category>debugging</category>
      <category>programming</category>
      <category>aiprompts</category>
      <category>developer</category>
    </item>
    <item>
      <title>The Best AI Prompts for Summarizing Anything</title>
      <dc:creator>Nav</dc:creator>
      <pubDate>Tue, 31 Mar 2026 08:08:24 +0000</pubDate>
      <link>https://dev.to/navbuildz/the-best-ai-prompts-for-summarizing-anything-4onh</link>
      <guid>https://dev.to/navbuildz/the-best-ai-prompts-for-summarizing-anything-4onh</guid>
      <description>&lt;p&gt;After a few months of building prompts for this exact task, here's what actually works. Once you find the formats that fit your workflow, &lt;a href="https://dev.to/blog/never-rewrite-same-ai-prompt"&gt;save your summarization prompts for different formats&lt;/a&gt; so you never have to reconstruct them from scratch.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Generic "Summarize This" Fails
&lt;/h2&gt;

&lt;p&gt;The problem isn't the AI. It's that "summarize this" gives the model no constraints. Should it be 3 bullets or 3 paragraphs? Should it preserve technical detail or strip it? Is this for a 10-year-old or a PhD? The model guesses — and often guesses wrong.&lt;/p&gt;

&lt;p&gt;The prompts below force clarity: length, format, audience, and what to keep vs. cut.&lt;/p&gt;

&lt;h2&gt;
  
  
  Long Article or Blog Post
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarize the following article in 3-5 bullet points. Each bullet should be a complete sentence. Focus on the core argument and key supporting points. Skip examples unless they're central to the point.

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;When to use it:&lt;/strong&gt; Quickly scanning RSS feeds, research rabbit holes, or Pocket saves you never got to.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Variation — executive summary format:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarize the following article in 2 paragraphs: (1) what the author is arguing, and (2) the most important evidence or implication. Write for a smart reader who has no background in this topic.

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Meeting Notes or Transcript
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarize these meeting notes into:
1. Key decisions made (with owners if mentioned)
2. Action items (format: [Name]: [Task] by [Date if mentioned])
3. Open questions or unresolved topics

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Why this works:&lt;/strong&gt; The three-section format forces the AI to distinguish between decisions, tasks, and ambiguity — instead of lumping everything into one wall of text.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;For longer transcripts:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This is a meeting transcript. Ignore small talk, repeated points, and tangents. Extract:
- The 3-5 most important decisions made
- All action items with owners and deadlines
- Anything that requires follow-up from leadership

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Research Paper or Academic Article
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarize this research paper for a non-specialist reader. Structure your response as:
1. What question the paper is trying to answer (1-2 sentences)
2. The method used (1-2 sentences, plain language)
3. Key findings (3-5 bullets)
4. What this means in practice (1 paragraph)
5. Any significant limitations or caveats the authors mention

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Variation — for speed-reading abstracts:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Read this abstract and tell me in 3 sentences: what was studied, what was found, and why it matters.

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For more academic use cases, see our full guide to &lt;a href="https://dev.to/blog/best-ai-prompts-students-researchers"&gt;summarization prompts for students and researchers&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Slack Thread or Team Chat
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarize this Slack thread. Pull out:
- The original question or problem
- Key responses or perspectives
- Any consensus or decision reached
- Any tasks or follow-ups mentioned

Ignore emoji reactions and one-word responses.

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Tip:&lt;/strong&gt; This works great with Slack's "Copy all" feature on threads.&lt;/p&gt;

&lt;h2&gt;
  
  
  Book Summary (Chapter or Full)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarize this chapter from the perspective of someone who wants to apply the ideas at work. Focus on:
- The central concept
- The most actionable insight
- One concrete thing I can do differently based on this chapter

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;For a full book (using highlighted notes):&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;These are my highlights from a book I recently finished. Based on these, summarize:
1. The book's main thesis in 1-2 sentences
2. The 3-5 most important ideas
3. The most actionable takeaway

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Podcast or Video Transcript
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This is a transcript from a podcast or video. Summarize it in the following format:
- Guest/speaker name (if mentioned)
- Main topic discussed
- 5 key points or insights (1-2 sentences each)
- Most quotable moment or idea

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;For interviews specifically:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarize this interview transcript. Focus on what the guest is arguing, what makes their perspective unique, and any concrete advice or frameworks they share. Skip the host's questions in your summary.

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Legal Document or Contract Section
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarize this legal document section in plain English. Explain:
- What this section is about
- What it requires of each party
- Any unusual clauses or terms that differ from standard agreements
- Any potential gotchas I should flag for a lawyer

Keep it simple enough for a non-lawyer to understand.

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;⚠️ Always verify any AI summary of legal documents with an actual attorney before acting on it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Email Thread or Long Email
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarize this email thread in 3-4 sentences. Include:
- What was being discussed or decided
- The current status or conclusion
- Any action required from me

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;For a single long email:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarize this email in 2 sentences: what is being asked of me, and by when (if mentioned).

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  News Article (With Opinion Filtering)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarize the factual content of this article separately from the author's opinions or commentary.

First, list the verifiable facts stated. Then, separately, summarize the author's interpretation or framing of those facts.

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Why this prompt:&lt;/strong&gt; News articles routinely blend fact and editorial. This forces a clear separation. If you're doing research-heavy summarization, you might also try &lt;a href="https://dev.to/blog/best-perplexity-ai-prompts"&gt;Perplexity AI for research summaries&lt;/a&gt; — it can cite sources inline.&lt;/p&gt;

&lt;h2&gt;
  
  
  Technical Documentation or README
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarize this technical documentation for a developer who is evaluating whether to use this tool or library. Include:
- What it does in one sentence
- The main use cases it's designed for
- Key technical requirements or constraints
- Any notable limitations or known issues

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  YouTube Comments or Reviews
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm going to paste a set of comments or reviews. Summarize:
- The main positive themes
- The main criticisms or complaints
- Any specific feature requests or suggestions
- Overall sentiment (positive/mixed/negative)

{{clipboard}}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Tips for Getting Better Summaries
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Be explicit about format.&lt;/strong&gt; Bullets vs. paragraphs, sentence count, headers or not — state it upfront. The model will match whatever you specify.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Specify the audience.&lt;/strong&gt; "Summarize for my CEO" and "summarize for a new hire" will produce very different outputs from the same source.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Ask what to skip.&lt;/strong&gt; "Ignore examples unless central to the argument" or "skip the intro" removes the noise that makes summaries bloated.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Use {{clipboard}} instead of pasting manually.&lt;/strong&gt; If you're running these prompts repeatedly, storing them with the &lt;code&gt;{{clipboard}}&lt;/code&gt; token means you copy your content, fire the prompt, and the context is already injected. No manual pasting. You can even add &lt;a href="https://dev.to/blog/dynamic-prompt-variables-ai-templates"&gt;variables for source type, length, and audience&lt;/a&gt; to make a single template cover multiple summarization scenarios.&lt;/p&gt;

&lt;p&gt;If you find yourself reaching for the same summarization prompt three times a week, it's worth binding it to a shortcut. Save these in a Promptzy vault — Cmd+Shift+P, type "summarize," and the right prompt is in your clipboard in under 2 seconds. For a full breakdown of tools that help you &lt;a href="https://dev.to/blog/best-ai-prompt-managers-mac-2026"&gt;organize your summarization templates&lt;/a&gt;, we've got a separate guide.&lt;/p&gt;

&lt;p&gt;The best summary prompt is the one you actually use consistently.&lt;/p&gt;

&lt;h3&gt;
  
  
  Store and manage your prompts with Promptzy
&lt;/h3&gt;

&lt;p&gt;Free prompt manager for Mac. Search with Cmd+Shift+P, auto-paste into any AI app.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/navbuildz/promptzy-builds/releases/latest/download/Promptzy.dmg" rel="noopener noreferrer"&gt;Download Free for macOS&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aiprompts</category>
      <category>productivity</category>
      <category>chatgpt</category>
      <category>prompts</category>
    </item>
    <item>
      <title>What Is Promptzy? The Mac App That Replaces Your Prompt Notes App</title>
      <dc:creator>Nav</dc:creator>
      <pubDate>Tue, 31 Mar 2026 02:11:34 +0000</pubDate>
      <link>https://dev.to/navbuildz/what-is-promptzy-the-mac-app-that-replaces-your-prompt-notes-app-26k9</link>
      <guid>https://dev.to/navbuildz/what-is-promptzy-the-mac-app-that-replaces-your-prompt-notes-app-26k9</guid>
      <description>&lt;p&gt;If you use AI tools every day, you've probably hit this moment: you had a great prompt, used it once, and now you can't find it. It's buried in a chat, scattered across Notes or Notion, or just gone.&lt;/p&gt;

&lt;p&gt;Promptzy is a Mac app built to fix that. Here's what it actually does.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem It Solves
&lt;/h2&gt;

&lt;p&gt;AI tools — ChatGPT, Claude, Perplexity, Copilot, Cursor — don't give you a way to store and reuse prompts. You write a good one, it works, you close the tab, it disappears. So people improvise: a Notion page, a .txt file, a Slack DM to themselves, Apple Notes.&lt;/p&gt;

&lt;p&gt;The result is prompts scattered across 4-5 apps, none of which are easy to search or pull up quickly when you're mid-task in another window.&lt;/p&gt;

&lt;p&gt;Promptzy is the one place your prompts live — and it's designed to be faster to use than any of those alternatives.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Promptzy Does
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Stores prompts as Markdown.&lt;/strong&gt; Each prompt is a plain Markdown file. No proprietary format, no lock-in. You can read, edit, and export your prompts any time.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;System-wide keyboard shortcut.&lt;/strong&gt; Press Cmd+Shift+P from anywhere on your Mac — inside ChatGPT, Claude, VS Code, your email client, wherever — and a search overlay appears. Type a few characters to find your prompt, hit Enter, and it pastes directly into wherever your cursor was.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Fuzzy search.&lt;/strong&gt; You don't need to remember the exact name of a prompt. Type "email follow" or "debug python" and Promptzy finds the right one.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Dynamic tokens.&lt;/strong&gt; Prompts can include placeholders like &lt;code&gt;{{clipboard}}&lt;/code&gt; (auto-fills with what's on your clipboard), &lt;code&gt;{{date}}&lt;/code&gt; (today's date), or custom variables you fill in before pasting. So a prompt like "Summarize this article in 3 bullets: {{clipboard}}" pastes the prompt and your copied text in one action.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Collections.&lt;/strong&gt; Group prompts into folders by use case — writing, code, research, work tasks, personal — so your library stays organized even as it grows.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;No account required.&lt;/strong&gt; Everything is stored locally on your Mac. No signup, no sync to a server, no data leaving your machine.&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Compares to the Alternatives
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;vs. Apple Notes / Notion / text files:&lt;/strong&gt; These work, but they're slow. You have to switch to the app, navigate to the right page, find the prompt, copy it, switch back, paste it. Promptzy does all of that in 2-3 keystrokes without leaving your current app.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;vs. TextExpander:&lt;/strong&gt; TextExpander is great for short text snippets. It gets expensive ($4-8/month) and is more focused on text abbreviations than long-form AI prompts. Promptzy is built specifically for prompts — supports Markdown, long multi-paragraph templates, variables, and collections.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;vs. Raycast Snippets:&lt;/strong&gt; Raycast is a powerful launcher and Snippets are a useful feature within it. But Snippets aren't optimized for AI prompts — no Markdown rendering, limited variable support, and it's opt-in to Raycast's ecosystem. Promptzy is focused on exactly this use case.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;vs. just using chat history:&lt;/strong&gt; Chat history is not searchable in any useful way. It gets long fast. AI companies can delete or archive old conversations. Don't rely on it as a prompt library.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Free vs. Pro Breakdown
&lt;/h2&gt;

&lt;p&gt;Promptzy is free to download and use. The free tier covers everything most people need: prompt storage, search, keyboard shortcut, collections, dynamic tokens.&lt;/p&gt;

&lt;p&gt;The Pro upgrade ($5 one-time, not a subscription) adds a few power-user features. Check &lt;a href="https://promptzy.app" rel="noopener noreferrer"&gt;promptzy.app&lt;/a&gt; for the current feature breakdown — the free tier is genuinely generous.&lt;/p&gt;

&lt;p&gt;The $5 price point is deliberate. It's not a subscription because your prompts shouldn't be held hostage to a recurring payment.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who It's For
&lt;/h2&gt;

&lt;p&gt;Promptzy is specifically for Mac users who use AI tools regularly at work. That includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Developers using Cursor, Copilot, or Claude for code&lt;/li&gt;
&lt;li&gt;Writers and marketers who have standard prompt templates&lt;/li&gt;
&lt;li&gt;Managers who use AI for writing reviews, emails, and docs&lt;/li&gt;
&lt;li&gt;Researchers using Perplexity or Claude for analysis&lt;/li&gt;
&lt;li&gt;Anyone who's had the "where's that prompt I wrote?" moment more than twice&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you use AI tools occasionally or prefer to work entirely in the browser, Promptzy might be more than you need. If you're in AI tools daily, it pays for itself quickly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;Download from &lt;a href="https://promptzy.app" rel="noopener noreferrer"&gt;promptzy.app&lt;/a&gt;. It's a standard Mac app — no configuration required. After installing:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Press Cmd+Shift+P to open the search overlay&lt;/li&gt;
&lt;li&gt;Click "New Prompt" to save your first one&lt;/li&gt;
&lt;li&gt;Organize into a collection&lt;/li&gt;
&lt;li&gt;From now on, any prompt is one shortcut away&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The fastest way to see if it's useful: spend 10 minutes moving your 5 most-used prompts into Promptzy. If that doesn't feel like an improvement, it's probably not for you. Most people who do that don't go back to their old system.&lt;/p&gt;

</description>
      <category>mac</category>
      <category>ai</category>
      <category>productivity</category>
      <category>tools</category>
    </item>
    <item>
      <title>Why Your Prompts Are Scattered (And the 10-Minute Fix)</title>
      <dc:creator>Nav</dc:creator>
      <pubDate>Tue, 31 Mar 2026 02:10:59 +0000</pubDate>
      <link>https://dev.to/navbuildz/why-your-prompts-are-scattered-and-the-10-minute-fix-201l</link>
      <guid>https://dev.to/navbuildz/why-your-prompts-are-scattered-and-the-10-minute-fix-201l</guid>
      <description>&lt;p&gt;You've got a prompt that took you 20 minutes to get right. The output was exactly what you wanted — specific, well-formatted, tone-perfect. You close the tab. Two weeks later, you need it again. Where is it?&lt;/p&gt;

&lt;p&gt;Maybe you checked:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your Notion docs (the page you vaguely remember creating)&lt;/li&gt;
&lt;li&gt;Apple Notes (where you paste things "temporarily")&lt;/li&gt;
&lt;li&gt;A .txt file on your desktop called something like &lt;code&gt;prompts-v3-final.txt&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Slack, where you DM'd it to yourself&lt;/li&gt;
&lt;li&gt;The actual ChatGPT chat history (now buried under 200 other conversations)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Sound familiar? That's prompt sprawl, and it costs more time than people realize. Every time you can't find a prompt, you either rebuild it from scratch (losing 10-30 minutes) or settle for a worse version of it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Happens
&lt;/h2&gt;

&lt;p&gt;The problem isn't that you're disorganized. It's that AI tools give you no native home for prompts. ChatGPT, Claude, Perplexity, Copilot — none of them have a real prompt library. You write something that works, use it, then it disappears into chat history.&lt;/p&gt;

&lt;p&gt;So you improvise. Notion seems logical. Notes is fast. A Google Doc for sharing. A Slack DM for "I'll deal with this later." Over time, you've created 4-6 places where prompts might live, and none of them is authoritative.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 10-Minute Fix
&lt;/h2&gt;

&lt;p&gt;You don't need a complex system. You need one place and a way to get to it fast. Here's a simple setup:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 1: Pick one place (5 minutes)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Stop trying to consolidate everything you've ever saved — that's a rabbit hole. Instead, declare one place as the canonical home for new prompts going forward. Everything else can stay where it is.&lt;/p&gt;

&lt;p&gt;If you're on a Mac, the cleanest option is &lt;a href="https://promptzy.app" rel="noopener noreferrer"&gt;Promptzy&lt;/a&gt; — it's built specifically for this and has keyboard shortcut access. If you want to DIY it, Notion works, but you'll need the shortcuts setup below.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 2: Create 4-6 folders by job-to-be-done (3 minutes)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Don't organize by AI tool. Organize by what you're trying to accomplish:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Writing (emails, docs, content)&lt;/li&gt;
&lt;li&gt;Research &amp;amp; analysis&lt;/li&gt;
&lt;li&gt;Code (if you write code)&lt;/li&gt;
&lt;li&gt;Work tasks (your specific role)&lt;/li&gt;
&lt;li&gt;Personal use&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's it. Five folders. The discipline is resisting the urge to create 20 subcategories.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 3: Set up a keyboard shortcut (2 minutes)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The biggest friction point is retrieval. If getting to your prompts requires opening an app, navigating to a folder, searching a doc, and copy-pasting — you won't do it consistently.&lt;/p&gt;

&lt;p&gt;The fix is a keyboard shortcut that opens your prompt library instantly. On Mac:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Promptzy&lt;/strong&gt;: Cmd+Shift+P opens the search overlay, anywhere on your system&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Raycast&lt;/strong&gt;: Works if you've set up snippets there&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Alfred&lt;/strong&gt;: Can open specific Notion pages or text files with a hotkey&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This step is what separates people who actually use their prompt library from people who have one they never check.&lt;/p&gt;

&lt;h2&gt;
  
  
  What to Put In It
&lt;/h2&gt;

&lt;p&gt;Don't try to catalog every prompt ever. Start with these:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Your 10 most-used prompts&lt;/strong&gt; — the ones you find yourself rebuilding or searching for regularly. These are your quick wins. Move them first.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Your best templates&lt;/strong&gt; — prompts that have a fill-in-the-blank structure and work across different contexts. For example, "Rewrite this [content type] for [audience] in a [tone] tone" is more valuable than a one-time-use prompt.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Role-specific prompts&lt;/strong&gt; — if you regularly use AI for a specific type of work (writing emails, debugging code, analyzing data), those belong in a dedicated folder.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Not to Do
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Don't try to import everything.&lt;/strong&gt; You'll spend 3 hours organizing old prompts and give up. Start with what you're using now.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Don't create a tagging system before you have prompts to tag.&lt;/strong&gt; Over-engineering the organization before you have content is how Notion pages die.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Don't make your prompts too specific.&lt;/strong&gt; "Write a follow-up email to Jason about the Q3 proposal" isn't a reusable prompt — it's just a task. Good prompts are templates. "Write a follow-up email after a sales call where [outcome]. Highlight [key point]. CTA: [action]" — that's a prompt.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Don't store prompts in your AI tool's chat history.&lt;/strong&gt; It's not a library. Chat history is search-hostile and will be deleted or archived. Don't rely on it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Payoff
&lt;/h2&gt;

&lt;p&gt;After a week of this system, you'll notice two things:&lt;/p&gt;

&lt;p&gt;First, you'll start using better prompts more consistently. When good prompts are easy to reach, you use them. When they're buried, you improvise — and improvised prompts get improvised results.&lt;/p&gt;

&lt;p&gt;Second, you'll stop rebuilding. Every prompt you save is time you don't spend recreating it next month. The library compounds.&lt;/p&gt;

&lt;p&gt;This isn't a complex system. It's a single folder, a shortcut, and the discipline to save things you'll want again. Takes 10 minutes to set up, saves hours over a year.&lt;/p&gt;

&lt;p&gt;If you're on Mac and want the fastest version of this, &lt;a href="https://promptzy.app" rel="noopener noreferrer"&gt;Promptzy&lt;/a&gt; is built exactly for this use case — Markdown storage, fuzzy search, system-wide keyboard shortcut, no subscription.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>mac</category>
      <category>workflow</category>
    </item>
    <item>
      <title>The Best AI Prompts for Teachers and Educators</title>
      <dc:creator>Nav</dc:creator>
      <pubDate>Tue, 31 Mar 2026 02:09:59 +0000</pubDate>
      <link>https://dev.to/navbuildz/the-best-ai-prompts-for-teachers-and-educators-1gjh</link>
      <guid>https://dev.to/navbuildz/the-best-ai-prompts-for-teachers-and-educators-1gjh</guid>
      <description>&lt;p&gt;Teaching is one of the most prompt-heavy jobs there is. You're constantly generating the same kinds of content — lesson plans, rubrics, quiz questions, parent emails, feedback comments — just with different content each time. That's exactly what AI is built for.&lt;/p&gt;

&lt;p&gt;These prompts are written for teachers who actually want to use AI, not just talk about using it. Copy them directly, adjust for your subject and grade level, and start saving real time.&lt;/p&gt;

&lt;h2&gt;
  
  
  Lesson Plan Prompts
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Full lesson plan from a standard:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create a 50-minute lesson plan for [grade level] students on [topic]. Learning objective: [paste your standard or objective]. Include: a warm-up activity (5 min), direct instruction (15 min), guided practice (15 min), independent or group activity (10 min), and an exit ticket (5 min). Use [any specific pedagogy, e.g., project-based learning / Socratic questioning / UDL principles] where appropriate.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Hook activity generator:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm teaching [topic] to [grade level] students. Give me 5 different hook activities to start the lesson — something that will grab attention in the first 2 minutes and make students curious about what's coming. Vary the types: one visual, one question-based, one surprising fact, one short story, one hands-on.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Differentiated instruction — same lesson, three levels:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Take this lesson objective: [paste objective]. Create three versions of the main activity for the same class: one for students who are still developing the foundational skills, one for students at grade level, and one for students who are ready for extension. Each version should be achievable independently and take about the same amount of time.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Substitute teacher plan:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a self-contained substitute teacher plan for a [grade level] [subject] class. Topic: [topic]. The sub has no subject expertise. Include: a brief overview for the sub, step-by-step instructions, a student handout, and a suggested schedule for [X] minutes. Everything the sub needs should be on the page.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Rubric and Assessment Prompts
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Project rubric:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create a 4-point rubric for a [type of project] on [topic] for [grade level]. Categories to evaluate: [list 3-5 things you want to assess, e.g., content accuracy, creativity, presentation, use of evidence]. Use clear, student-friendly language for each level. Format as a table.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Quiz question generator:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write 10 quiz questions on [topic] for [grade level] students. Include: 4 multiple choice, 3 short answer, 2 true/false with a justification prompt, and 1 extended response. Vary the cognitive demand — some recall, some application, at least one analysis question. Include an answer key.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Exit ticket generator:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write 3 different exit ticket options for a lesson on [topic] for [grade level]. Each should take no more than 3 minutes and reveal whether students understood [specific concept you're checking]. One should be a written response, one a visual/diagram, one a quick self-assessment scale with a follow-up question.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Feedback and Grading Prompts
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Written feedback on student work:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm a [grade level] [subject] teacher. Here is a student's [essay/lab report/project write-up]: [paste work]. Write specific, actionable feedback in a warm-and-demanding tone. Mention 2 things that are working well (be specific, not generic). Identify the single most important thing they should improve. End with one concrete revision suggestion.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Bulk feedback template for a common error:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Many of my students made the same mistake on this assignment: [describe the error]. Write a feedback comment I can paste to all affected students that: explains what went wrong (without being condescending), shows them the correct approach with a brief example, and encourages them to revise. Keep it under 80 words.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Self-assessment prompt for students:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a student self-assessment reflection students should complete before submitting their [project/essay]. Include 4 questions: one asking them to identify their strongest section and why, one asking them to identify what they'd improve with more time, one asking them to rate their effort with evidence, and one open question about what they learned about themselves as a learner during this project.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Parent Communication Prompts
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Parent email — concern about a student:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a professional, empathetic email to a parent about their child [first name only, no last name]. The concern is: [describe the situation — academic, behavioral, social, etc.]. Tone: warm but honest, not alarming. Include: a specific positive observation about the student, a clear description of the issue, one concrete action I'm taking, and an invitation to discuss. Keep it under 200 words.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Newsletter update / class recap:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a brief class newsletter section (150 words) for [subject] class. This week we covered [topics]. Students are currently working on [project/assignment]. One interesting discussion we had was about [topic]. Upcoming: [dates/events]. Tone: friendly, informative, accessible to parents who aren't familiar with the subject.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Response to a frustrated parent email:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Here is a parent email I received: [paste email]. Help me draft a professional, calm response that: acknowledges their concern without being defensive, provides factual context, explains the next step I'm taking, and keeps the door open for dialogue. I want to maintain the relationship even if we disagree.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Differentiation and Accommodation Prompts
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Simplified reading passage:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Take this text: [paste passage]. Rewrite it at a [X] grade reading level while preserving all the key information. Keep the same paragraph structure. Do not oversimplify the concepts — just make the language more accessible. Add a short vocabulary box at the bottom defining the 5 most important terms.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;English language learner accommodation:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I have ELL students in my [grade level] class. Take this assignment prompt: [paste prompt]. Rewrite it in clearer, simpler English while keeping the same expectations. Add a bilingual vocabulary guide with the 8 most important content words and their definitions in both English and [target language]. Also suggest one visual support I could add.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Extension activity for fast finishers:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;My [grade level] students who finish early need a meaningful challenge, not busywork. The current assignment is about [topic]. Design an extension activity that goes deeper — something that requires them to apply, analyze, or create, not just recall more facts. Should take 10-15 minutes and require no additional materials.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  IEP and Support Planning Prompts
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Accommodation ideas for a specific challenge:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;A student in my class struggles with [specific challenge — e.g., processing written instructions, staying on task during independent work, anxiety during assessments]. Suggest 5 practical, low-prep classroom accommodations I can implement immediately. Be specific — not "provide extra time" but how exactly to structure that in my class context.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Writing IEP goal language:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Help me write a measurable IEP goal for a student who currently [describe current performance level] in [skill area]. The goal should include: a clear behavior, a measurable criterion, a timeframe, and conditions under which the behavior will occur. Write 3 versions at different levels of ambition.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Save These Prompts for Later
&lt;/h2&gt;

&lt;p&gt;These prompts work best when they're easy to reach. If you're pulling them from a doc or searching through old chats each time, you're losing the time you were supposed to save.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://promptzy.app" rel="noopener noreferrer"&gt;Promptzy&lt;/a&gt; lets you store prompts like these as keyboard shortcuts on your Mac — hit Cmd+Shift+P and search "rubric" or "parent email" and the prompt auto-pastes wherever your cursor is. Worth setting up once.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>education</category>
      <category>teaching</category>
      <category>productivity</category>
    </item>
    <item>
      <title>The Best AI Prompts for Writing Performance Reviews</title>
      <dc:creator>Nav</dc:creator>
      <pubDate>Tue, 31 Mar 2026 02:09:58 +0000</pubDate>
      <link>https://dev.to/navbuildz/the-best-ai-prompts-for-writing-performance-reviews-4cp</link>
      <guid>https://dev.to/navbuildz/the-best-ai-prompts-for-writing-performance-reviews-4cp</guid>
      <description>&lt;p&gt;Performance review season is brutal. You're juggling dozens of reviews, trying to write specific, fair, constructive feedback for each person — while still doing your actual job. And then you have to write your own self-review on top of it.&lt;/p&gt;

&lt;p&gt;AI doesn't replace your judgment, but it does eliminate the blank-page problem and helps you write more consistently across your reports. These prompts are built for that.&lt;/p&gt;

&lt;h2&gt;
  
  
  Manager Writing About Direct Reports
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Full performance review draft:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm a [your role] writing a performance review for [report's role]. This person has been on my team for [X months/years]. Here are my notes on their performance: [paste your bullet points or notes — the messier the better].

Write a professional performance review with the following sections: Overall Performance Summary (2-3 sentences), Key Accomplishments (3-5 bullets with specific impact where I've noted it), Areas for Development (2-3 constructive observations), and a Forward-Looking Statement about their trajectory and potential.

Tone: honest, specific, professional. Don't use vague filler phrases like "hard-working" or "great team player" unless I've given you specific evidence for them.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Writing about a strong performer:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I want to write a glowing performance review for someone who genuinely exceeded expectations this year. Their key contributions: [list 3-5 specific things they did]. They also showed growth in: [list areas]. Write a 250-word review that makes clear this person is high-potential. I want their manager above me to read this and notice them.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Writing about an underperformer — honest but fair:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I need to write a performance review for someone who did not meet expectations this year. The gaps were: [describe gaps specifically]. To be fair, they did [acknowledge positives]. I've had [X] conversations with them about this — [describe roughly what was discussed].

Write a review that: accurately describes the performance gap without being harsh, is specific enough to be legally defensible, acknowledges effort or improvement where real, and sets clear expectations for what "meeting expectations" looks like going forward. Do not soften it to the point of dishonesty.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Mid-cycle check-in summary:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I just had a mid-year check-in with a direct report. Here's what we discussed: [paste your notes]. Write a short summary I can send to them as a written record of our conversation. Include: what's going well, what they're working on improving, and the one goal we aligned on for the next 90 days. Conversational tone, not corporate.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Self-Review Prompts
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Full self-review draft:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm writing my self-review for [review period]. My role is [title]. Here are the things I worked on this year: [paste accomplishments, projects, challenges — messy notes are fine].

Write a self-review with these sections: Key Accomplishments (3-5 with quantified impact where I've given numbers), Challenges and What I Learned (honest, not defensive), Growth Areas I've Worked On, and What I Want to Focus On Next Year.

Tone: confident but not arrogant. I want to advocate clearly for myself while being accurate.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Quantifying impact when you don't have hard numbers:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I worked on [project/initiative] this year. I don't have exact metrics, but here's what I know about the impact: [describe what changed, what got better, what problems got solved]. Help me write 2-3 achievement bullets that honestly represent the impact without fabricating numbers. Use ranges, qualitative outcomes, and comparative language where appropriate.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Self-review when the year was rough:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This was a hard year for me professionally. [Briefly describe: layoffs, reorgs, personal challenges, difficult projects, etc.]. Despite that, I still contributed in these ways: [list]. Write a self-review that's honest about the context, doesn't make excuses, and still clearly demonstrates my value to the team. I need to strike the balance between explaining the circumstances and owning my performance.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Peer Review Prompts
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Peer feedback — positive:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm writing peer feedback for [colleague's role]. They collaborated with me on [project or situation]. Specifically, they: [list 2-4 specific things they did]. Write thoughtful peer feedback (150-200 words) that's specific and genuine. I want my words to actually help them understand their strengths, not just be a feel-good paragraph.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Peer feedback — when someone was difficult to work with:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I need to give honest peer feedback to someone who was frustrating to collaborate with. The issues were: [describe specifically — communication problems, missed deadlines, taking credit, etc.]. Write feedback that is: specific and behavioral (not personality-based), professional, and constructive. Frame it as observations and impact, not character judgment. I want to be honest without torching the relationship.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;360 feedback summary for your manager:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I've received peer feedback from [X] colleagues. Here are their responses: [paste raw feedback]. Synthesize this into a summary that: identifies the common themes (positive and developmental), highlights the most specific and actionable observations, and flags anything surprising or contradictory. Format as a brief report I can share with the employee.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Development Goals and PIP Language
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Writing development goals (not fluffy ones):&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I need to write a development goal for [employee] in the area of [skill gap]. The gap shows up specifically as: [describe observable behavior]. Write a SMART development goal with: a clear behavior target, measurable success criteria, a timeframe, and 2-3 specific actions or resources. Make it something we can actually track, not "improve communication skills."
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Performance Improvement Plan (PIP) language:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I need to draft a Performance Improvement Plan for someone in the role of [role]. The documented concerns are: [list specific performance gaps]. What we've discussed previously: [summarize prior conversations and any warnings]. The goal of the PIP is to help them succeed, not to document termination.

Write PIP language for the Goals section that: states the expected standard clearly, identifies measurable benchmarks for weeks 30/60/90, and describes how we'll support them. Avoid punitive language — be direct and clear, not threatening.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Follow-up after a difficult performance conversation:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I just had a tough conversation with a direct report about their performance. The main points I covered: [list]. They reacted [describe reaction — defensive, upset, receptive, etc.]. Write a brief follow-up email I can send within 24 hours that: summarizes what we discussed without repeating everything verbatim, confirms the agreed next steps, and keeps the tone supportive and forward-looking.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Review Cycle Admin Prompts
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Calibration prep — stack ranking notes:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I need to prepare for calibration where I'll advocate for my team. I have [X] direct reports. Here's my quick assessment of each: [list name, performance tier you'd place them in, and 1-2 sentences of evidence].

For each person, draft 2-3 sentences I can use to advocate for their calibration rating in a group discussion. I need to be concise and specific — calibration moves fast and I need strong talking points, not lengthy explanations.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Review cycle reminder to your team:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a short, human-sounding Slack message to my team reminding them that self-reviews are due [date]. Include: what platform they're in, what sections they need to complete, and one piece of practical advice for making self-reviews easier. Keep it under 100 words. Not corporate. Sound like a manager who actually wants to help, not an HR announcement.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Stop Rewriting These Every Cycle
&lt;/h2&gt;

&lt;p&gt;The prompts above will save you hours this review cycle. But next cycle, you'll be starting from scratch again — unless you save them.&lt;/p&gt;

&lt;p&gt;If you're on a Mac, &lt;a href="https://promptzy.app" rel="noopener noreferrer"&gt;Promptzy&lt;/a&gt; stores these as prompt templates you can recall instantly with a keyboard shortcut. Store them in a collection called "Review Season" and they're always one Cmd+Shift+P away.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>ai</category>
      <category>hr</category>
      <category>management</category>
    </item>
    <item>
      <title>The Best AI Prompts for Writing Emails (Professional + Casual)</title>
      <dc:creator>Nav</dc:creator>
      <pubDate>Mon, 30 Mar 2026 15:30:47 +0000</pubDate>
      <link>https://dev.to/navbuildz/the-best-ai-prompts-for-writing-emails-professional-casual-3g02</link>
      <guid>https://dev.to/navbuildz/the-best-ai-prompts-for-writing-emails-professional-casual-3g02</guid>
      <description>&lt;h1&gt;
  
  
  The Best AI Prompts for Writing Emails (Professional + Casual)
&lt;/h1&gt;

&lt;p&gt;Email writing is universally necessary but often dreaded. AI assistance helps significantly when prompts are specific rather than generic. Here are 30 focused email prompts organized by type, each designed to produce authentic-sounding messages. Context variables in brackets allow customization for your specific situation.&lt;/p&gt;




&lt;h2&gt;
  
  
  Cold Outreach
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Cold outreach — B2B&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a cold outreach email to [name/role] at [company]. I'm reaching out because 
[specific reason relevant to them]. My ask is [clear single ask]. Keep it under 100 
words, no fluff, make the opening line relevant to them specifically.

Context: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;2. Cold outreach — job/opportunity&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a cold email to [person] about [opportunity or reason for reaching out]. 
I want to make a genuine connection, not ask for a favour immediately. Keep it brief, 
show I've done my research, and end with a low-friction ask (like a 15-minute call, 
not a job offer).

Background I know about them: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;3. Cold outreach — partnership&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a partnership outreach email to [person/company]. The potential collaboration 
is [describe it]. Make the email brief, explain what's in it for them before what's 
in it for me, and end with a specific ask.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;4. Podcast or media pitch&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a pitch email to [podcast host / journalist / newsletter writer]. I want to 
[be featured / contribute / be interviewed] because [specific reason why it fits their 
audience]. Keep it short — they get a lot of these. Lead with what's valuable to their 
readers/listeners, not what I want.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Follow-Ups
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;5. Follow-up on no response&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a follow-up email for a message I sent [X days] ago that got no response. 
Context: {{clipboard}}

Keep it short, non-pushy, make it easy to reply with a yes/no, and give them an 
easy out if they're not interested.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;6. Follow-up after a meeting&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a follow-up email after a meeting with [person/company]. Cover: a brief thank 
you, summary of what was agreed, next steps with owners and timelines, and any open 
questions. Keep it scannable.

Meeting notes: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;7. Follow-up on a proposal&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a follow-up email on a proposal I sent [timeframe] ago. I don't want to be 
pushy, but I need to know if they're still interested. Keep it brief, restate the 
key value in one sentence, and ask a direct question that's easy to answer.

Proposal context: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;8. Follow-up after a job interview&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a follow-up email after a job interview. Express genuine interest (not 
desperation), reference something specific from the interview, and keep it under 
100 words. Don't ask "have you made a decision yet."

Interview notes: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;9. Nudge on an overdue deliverable&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write an email to nudge [person] on [deliverable] that's overdue. I don't want to 
be accusatory — I want to understand if there's a blocker and offer help if needed. 
Keep it short and non-passive-aggressive.

Context: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Professional / Internal
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;10. Project status update&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a project status update email for [audience: team / stakeholders / client]. 
Cover: what's been completed, what's in progress, any blockers, and what's coming 
next. Use a clear structure, keep it scannable, and flag anything that needs a 
decision.

Current status: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;11. Request for a meeting&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write an email requesting a meeting with [person]. Reason: [why I need to meet with 
them]. Be direct about the ask, explain why it's worth their time, and include 
specific proposed times or a scheduling link option.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;12. Escalation email&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write an escalation email about [issue]. I need to escalate because [reason]. Keep 
it professional, factual, and solution-focused — not emotional. Clearly state what 
I've already tried and what I need from the recipient.

Background: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;13. Decline a request or invitation&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a professional decline email for [request/invitation]. I want to be honest 
without over-explaining, leave the relationship intact, and close the door gently 
without leaving it completely shut if [relevant].
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;14. Announce a decision or change&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write an announcement email for [decision or change]. The audience is [describe them]. 
Explain what's changing, why, when it takes effect, and what it means for them. 
Anticipate the obvious questions and answer them in the email.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;15. Ask for a reference or recommendation&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write an email asking [person] to be a reference / write a recommendation for me. 
Context: [what role or opportunity]. Make it easy for them — offer to send a brief 
on what to emphasise, give them an easy out, and express genuine appreciation for 
their time.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Hard Conversations
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;16. Deliver critical feedback&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write an email delivering critical feedback to [person] about [issue]. Be direct 
and specific — avoid vague language. Focus on behaviour or outcomes, not personality. 
Explain the impact and what change looks like going forward.

Situation: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;17. Address a conflict or misunderstanding&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write an email to address a conflict or misunderstanding with [person] about 
[situation]. I want to clarify my perspective without being defensive, acknowledge 
their viewpoint, and propose a path forward. Keep it professional and forward-looking.

Context: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;18. Deliver bad news&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write an email delivering bad news to [person/group] about [what happened]. Be 
direct — don't bury the lead. Acknowledge the impact, explain what happened briefly, 
and focus most of the email on what comes next.

Situation: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;19. Push back on a decision&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a professional email pushing back on [decision] made by [person/team]. I 
disagree because [reasons]. Frame it as raising concerns, not attacking the decision. 
Be specific, offer an alternative if I have one, and be clear I'll support whatever 
final call is made.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;20. End a professional relationship&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a professional email ending a working relationship with [person/company]. Be 
honest but tactful, don't over-explain, thank them for the work together if 
appropriate, and close things clearly.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Client Communication
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;21. Project kick-off email&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a project kick-off email to a new client. Cover: welcome/excitement (briefly), 
project overview, what I need from them to get started, timeline overview, and how 
we'll communicate. Keep it professional but warm.

Project details: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;22. Scope change or additional cost&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write an email informing a client of a scope change or additional cost. Be 
transparent about what changed and why, explain the cost/time impact clearly, and 
frame it as a shared decision rather than a surprise.

Situation: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;23. Handle a client complaint&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a response to a client complaint about [issue]. Acknowledge the problem without 
being defensive, take responsibility where appropriate, explain what went wrong 
briefly, and focus on the resolution.

Complaint: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;24. Request feedback from a client&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write an email requesting feedback from a client after [project/engagement]. Keep it 
low-friction — a few specific questions are better than a long survey. Make it clear 
their feedback will be used, not just collected.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Personal and Casual
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;25. Thank you email&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a genuine thank you email to [person] for [what they did]. Be specific about 
what they did and why it mattered — don't write something that could apply to anyone. 
Keep it short.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;26. Introduction email&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write an email introducing [person A] to [person B]. Explain who each person is in 
one sentence, why the connection is valuable, and make a clear ask or suggestion for 
how they should follow up. CC both.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;27. Reconnect with an old contact&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a casual email to reconnect with [person] whom I haven't spoken to in [time]. 
Reference something genuine — a shared history, something I remember about them, or 
something I noticed about their recent work. Don't ask for anything in the first 
email.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;28. Congratulate someone on an achievement&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a short congratulatory email to [person] about [achievement]. Make it genuine 
and specific to what they actually did — not just "congratulations, well done."
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Email Polish
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;29. Improve an existing email draft&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Rewrite this email draft to be clearer and more concise. Keep the meaning but cut 
anything that isn't earning its place. Don't change the tone or main point.

Draft: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;30. Make an email more direct&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Rewrite this email to be more direct and less hedged. Remove unnecessary qualifiers 
("I was wondering if maybe", "just wanted to check"). Get to the point faster and 
make the ask clear.

Draft: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Setting Up Email Prompts with Dynamic Variables
&lt;/h2&gt;

&lt;p&gt;The prompts use placeholders like &lt;code&gt;[name]&lt;/code&gt;, &lt;code&gt;[company]&lt;/code&gt;, and &lt;code&gt;[context]&lt;/code&gt; for customization. For recurring email types — cold outreach in specific industries, client status updates, or follow-ups at set intervals — adding dynamic variables means the prompt customizes itself at paste time.&lt;/p&gt;

&lt;p&gt;For instance, a cold outreach prompt with &lt;code&gt;{{clipboard}}&lt;/code&gt; for background context means copying relevant context, firing the prompt, and receiving a first draft incorporating what was pasted.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://promptzy.app" rel="noopener noreferrer"&gt;Promptzy&lt;/a&gt; handles this natively. Store email prompts with dynamic tokens, and they resolve automatically when pasted. An "Emails" collection with 10-15 templates means most-used types are one &lt;code&gt;Cmd+Shift+P&lt;/code&gt; away. $5 one-time, no subscription; prompts stored as plain Markdown files you own.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://promptzy.app/blog/best-ai-prompts-email-writing" rel="noopener noreferrer"&gt;promptzy.app/blog&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>ai</category>
      <category>email</category>
      <category>writing</category>
    </item>
    <item>
      <title>The Best AI Prompts for Code Review (Works with Any AI Tool)</title>
      <dc:creator>Nav</dc:creator>
      <pubDate>Mon, 30 Mar 2026 15:29:37 +0000</pubDate>
      <link>https://dev.to/navbuildz/the-best-ai-prompts-for-code-review-works-with-any-ai-tool-42hn</link>
      <guid>https://dev.to/navbuildz/the-best-ai-prompts-for-code-review-works-with-any-ai-tool-42hn</guid>
      <description>&lt;h1&gt;
  
  
  The Best AI Prompts for Code Review (Works with Any AI Tool)
&lt;/h1&gt;

&lt;p&gt;The quality of AI code reviews hinges primarily on prompt design rather than the underlying model. Generic requests yield shallow feedback, whereas targeted prompts focused on specific concerns—security, performance, naming conventions—produce actionable insights that catch real issues.&lt;/p&gt;

&lt;p&gt;These prompts function across ChatGPT, Claude, Copilot Chat, and Gemini. Rather than rewriting identical prompts for each pull request, you can save them for reuse. The author has employed similar versions for approximately one year and reports they've identified genuine bugs.&lt;/p&gt;




&lt;h2&gt;
  
  
  General Code Review
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Comprehensive Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review the following code for: (1) bugs and logic errors, (2) security vulnerabilities, 
(3) performance issues, (4) readability and naming. For each issue, point to the specific 
line or section and suggest a concrete fix.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;2. Quick Scan&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm going to paste some code. Without going deep, tell me the 3-5 things that stand 
out most as potential problems. Don't give me an essay — just flag what catches 
your eye.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;3. Senior Engineer Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review this code as a senior engineer doing a real code review. Be direct and specific. 
Point out what's genuinely wrong, what's debatable, and what's fine. If something is 
subjective, say so. Don't pad the response with praise.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;4. Junior Developer Focused Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review this code in a way that helps a junior developer learn. Explain not just what 
to change but why it matters. Balance encouragement with honesty — point out what's 
done well alongside what needs improvement.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Security Review
&lt;/h2&gt;

&lt;p&gt;These prompts apply to code handling user input, authentication, or sensitive information.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Security Audit&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Audit this code for security vulnerabilities. Check for: SQL injection, XSS, CSRF, 
insecure deserialization, broken authentication, improper input validation, hardcoded 
secrets, and any OWASP Top 10 concerns. Explain each issue and how to fix it.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;6. Authentication and Authorization Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review this code specifically for authentication and authorisation issues. Are 
permissions checked correctly? Are there any privilege escalation paths? Is session 
handling secure? Is user input trusted when it shouldn't be?

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;7. Data Handling Security&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review how this code handles sensitive data. Is it encrypted at rest and in transit? 
Is it logged anywhere it shouldn't be? Are there any places where sensitive data could 
be exposed in errors or responses?

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;8. Input Validation Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review the input validation in this code. Is all user input validated and sanitised 
before use? Are there any paths where unvalidated input reaches a database, shell 
command, or file system?

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Performance Review
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;9. Performance Analysis&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Analyse this code for performance issues. Identify: expensive operations that could 
be cached, unnecessary iterations or nested loops, N+1 query patterns, blocking 
operations, and memory inefficiencies. Suggest specific improvements.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;10. Database Query Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review these database queries for performance. Check for: missing indexes, N+1 patterns, 
unnecessary data fetching, missing query limits, and any queries that will degrade at 
scale.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;11. Memory Usage Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review this code for memory issues. Look for: memory leaks, large in-memory data 
structures that could be streamed, unnecessary object creation in hot paths, and 
anything that could cause issues under load.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Readability and Maintainability
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;12. Naming and Clarity Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review the naming in this code — variables, functions, classes, and modules. Is 
everything named clearly enough that someone new could understand the intent? Suggest 
specific renames for anything that's ambiguous or misleading.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;13. Complexity and Simplification&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Where is this code more complex than it needs to be? Identify over-engineering, 
unnecessary abstractions, convoluted logic that could be simplified, and any "clever" 
code that should be made boring instead.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;14. Maintainability Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review this code from the perspective of long-term maintenance. Is it readable to a 
new developer? Is the logic well-encapsulated? Are dependencies clear? What would make 
this harder to change in 6 months?

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;15. Code Smell Identification&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Identify code smells in this code: long functions doing too many things, deep nesting, 
repeated logic, magic numbers, poor separation of concerns, and anything that violates 
single responsibility. Don't fix them — just name them and explain why they're a 
problem.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Architecture and Design
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;16. API Design Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review this API design. Evaluate: naming conventions, RESTful principles (if applicable), 
error handling approach, response structure consistency, versioning considerations, and 
developer experience. Suggest specific improvements.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;17. Function Design Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review the design of this function. Does it do one thing? Is the interface clean? 
Are the parameters sensible? Should it be split up? Is the return type appropriate?

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;18. Error Handling Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review the error handling in this code. Are all error cases handled? Are errors 
propagated correctly? Are error messages useful for debugging? Is there anything that 
fails silently or swallows errors?

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;19. Dependency and Coupling Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review the dependencies and coupling in this code. Are there tight couplings that 
would make testing or replacing components difficult? Are there any circular 
dependencies? Could the architecture be improved for testability?

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Testing
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;20. Test Quality Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review these tests. Do they actually test the right things? Are there edge cases 
missing? Are the tests too brittle (testing implementation details instead of 
behaviour)? Are the assertions meaningful?

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;21. Test Coverage Gaps&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Here's the production code and the tests for it. What's not covered by the tests? 
What edge cases, error paths, or scenarios are missing? List them specifically.

Code: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;22. Test Setup and Teardown Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review the test setup and teardown in this file. Are tests isolated from each other? 
Are mocks set up correctly? Could any tests interfere with others? Is the test data 
setup realistic?

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Pull Request Review
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;23. PR Diff Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight diff"&gt;&lt;code&gt;&lt;span class="p"&gt;I'm reviewing this pull request. Go through the diff and check for: (1) logic 
correctness, (2) edge cases not handled, (3) test coverage gaps, (4) anything that 
could break existing behaviour, (5) naming or style issues. Be specific about file 
and line references where possible.
&lt;/span&gt;&lt;span class="err"&gt;
&lt;/span&gt;{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;24. PR Description Review&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review this PR description. Is it clear what problem is being solved? Is the approach 
explained? Are there testing instructions? Are there any risks or edge cases the 
reviewer should know about?

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;25. PR Summary for Non-Technical Stakeholders&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarise this pull request in plain English for a non-technical stakeholder. What 
problem does it solve? What changed? Is there any risk? What should they know about 
it?

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Using These Prompts Effectively
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Pick the Right AI Tool&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Different models excel at different aspects of code review. There are specialized guides for ChatGPT and Claude specifically optimized for developer workflows.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Be Specific About Review Scope&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Broad requests like "review this code" produce shallow assessments. Targeted prompts addressing particular concerns — "specifically for security" — yield focused, useful feedback. Match the prompt to your review objective.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Include Necessary Context&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Provide relevant code sections rather than entire files. When code interacts with database schemas or external APIs, include those details too.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Leverage the &lt;code&gt;{{clipboard}}&lt;/code&gt; Pattern&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Copy code first, then execute the prompt. The clipboard automatically injects content, accelerating the workflow compared to manual copy-paste operations.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Run Focused Multiple Reviews&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Security and performance reviews identify different issues. Execute multiple specialized reviews on critical code rather than attempting comprehensive coverage in one prompt.&lt;/p&gt;

&lt;p&gt;If you're doing regular AI-assisted code reviews, keeping these prompts accessible saves real time. &lt;a href="https://promptzy.app" rel="noopener noreferrer"&gt;Promptzy&lt;/a&gt; stores them as Markdown files and pastes them into Copilot Chat, Claude, or ChatGPT in under two seconds — no hunting for templates mid-review. The &lt;code&gt;{{clipboard}}&lt;/code&gt; token handles the code injection automatically.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://promptzy.app/blog/best-ai-prompts-code-review" rel="noopener noreferrer"&gt;promptzy.app/blog&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>programming</category>
      <category>ai</category>
      <category>productivity</category>
      <category>codereview</category>
    </item>
    <item>
      <title>The Best Perplexity AI Prompts for Research and Deep Dives (2026)</title>
      <dc:creator>Nav</dc:creator>
      <pubDate>Sun, 29 Mar 2026 09:27:46 +0000</pubDate>
      <link>https://dev.to/navbuildz/the-best-perplexity-ai-prompts-for-research-and-deep-dives-2026-16m4</link>
      <guid>https://dev.to/navbuildz/the-best-perplexity-ai-prompts-for-research-and-deep-dives-2026-16m4</guid>
      <description>&lt;p&gt;Perplexity is not a replacement for ChatGPT or Claude — it's a different tool. Its edge is real-time search with citations, which makes it excellent for research tasks where you need sourced, current information. Generic AI prompts don't take advantage of that. The prompts below are written specifically for what Perplexity does differently: surfacing cited answers, synthesising across sources, and handling questions where currency matters.&lt;/p&gt;

&lt;p&gt;Use these for research tasks. For longer reasoning, writing, or coding, you'll likely get better results from a model with a longer context window. If you find research prompts you keep reusing, you can &lt;a href="https://dev.to/blog/never-rewrite-same-ai-prompt"&gt;save your best research prompts&lt;/a&gt; so they're ready whenever you need them.&lt;/p&gt;




&lt;h2&gt;
  
  
  Market Research
&lt;/h2&gt;

&lt;p&gt;These are where Perplexity pulls away from offline models. You get sourced, current answers that you'd otherwise spend an hour assembling manually.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Market overview&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Give me a current overview of the [market/industry] market. Cover: size and growth trajectory, 3-5 major players with their positioning, recent trends or shifts, and what the competitive landscape looks like heading into the next 12-18 months. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;2. Emerging players in a space&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Who are the most interesting emerging companies in [space] right now? For each one, give me: what they do, what differentiates them, their funding status if known, and why they're worth watching. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;3. Customer pain points in a market&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;What are the most common complaints or unmet needs customers have in the [market] space? Pull from recent reviews, forums, social media, and industry reports. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;4. Regulatory landscape&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;What are the current regulatory requirements or upcoming regulatory changes affecting [industry/company type] in [region]? Focus on what's changing in the next 12-24 months. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;5. Industry analyst reports summary&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarise what major analysts (Gartner, Forrester, IDC, or similar) are saying about [market/technology] in 2026. What are the key predictions and disagreements? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;h2&gt;
  
  
  Competitor Analysis
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;6. Competitor deep dive&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Give me a detailed overview of [competitor company]. Cover: what they do, pricing model, recent funding or acquisitions, customer reviews sentiment, recent news, and what's working vs what's a weak point. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;7. How a competitor is growing&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;How has [company] grown its customer base over the last 1-2 years? What channels, partnerships, or strategies seem to be working? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;8. Competitor pricing breakdown&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;What does [product/service] currently charge? Break down their pricing tiers, what each includes, any recent changes, and whether there's a free tier or trial. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;9. What customers say about a competitor&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;What are customers saying about [product] in 2026? Summarise the most common praise and complaints from reviews on G2, Capterra, Reddit, and similar. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;10. Feature comparison across competitors&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Compare [feature] across [Company A], [Company B], and [Company C]. How does each approach it differently? Who's doing it best based on user feedback? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;h2&gt;
  
  
  Technical Research
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;11. How a technology works&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Explain how [technology/protocol/system] works. Give me a technically accurate explanation that assumes a software engineering background. Include current state of adoption and any important recent developments. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;12. Best practices for a technical topic&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;What are the current best practices for [technical topic] in 2026? What has changed from a few years ago? Are there any debates in the community about the right approach? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;13. Security vulnerabilities or CVEs&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Are there any known security vulnerabilities or CVEs affecting [library/framework/technology] in the last 12 months? What's the severity, and what are the mitigations? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;14. Benchmarks and performance comparisons&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;How does [technology/tool/model] perform compared to alternatives? Find recent benchmarks or comparisons. What are the real-world performance differences? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;15. Open source alternatives&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;What are the best open source alternatives to [commercial tool/service] in 2026? For each, give me: what it does, how it compares on features, adoption level, and any trade-offs. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;h2&gt;
  
  
  Business and Strategy Research
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;16. Funding and investment activity&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;What's the recent funding activity in [space/sector]? Who's raised significant rounds in the last 6 months, at what valuations, and what does the investor interest say about the direction of the space? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;17. Key hires and talent movements&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Have there been any notable executive hires, departures, or talent movements at [company] recently? What do they signal about company direction? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;18. Acquisition activity&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;What acquisitions have happened in [space] in the last 12 months? Who acquired what, at what price if reported, and what's the strategic rationale? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;19. Partnership announcements&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Have there been any significant partnership or integration announcements from [company] recently? What's the strategic value? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;20. Job posting signals&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;What does [company]'s current hiring activity suggest about their priorities and direction? What roles are they actively hiring for, and what does that tell us? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;h2&gt;
  
  
  News Synthesis
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;21. Weekly digest on a topic&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;What are the most significant news items related to [topic] from the last 7 days? Give me 5-7 bullet points with brief explanations and why each matters. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;If you need to condense Perplexity's output further, our &lt;a href="https://dev.to/blog/best-ai-prompts-summarizing"&gt;summarization prompts&lt;/a&gt; work well as a second pass in ChatGPT or Claude.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;22. Summarise a recent event or announcement&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarise what happened with [event/announcement] and why it matters. Include: what happened, the context, the key reactions, and what it might mean going forward. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;23. Track a developing story&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;What's the current status of [ongoing situation]? Give me a brief history and where things stand right now. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;For academic and deep-dive work, our &lt;a href="https://dev.to/blog/best-ai-prompts-students-researchers"&gt;AI prompts for students and researchers&lt;/a&gt; guide covers complementary patterns that pair well with Perplexity's citation engine.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;24. Find expert opinions on a topic&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;What are practitioners, researchers, or notable voices saying about [topic] right now? I want a range of perspectives, not a single consensus view. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;25. Separate signal from noise&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;There's been a lot of coverage of [topic] recently. Cut through the hype: what's genuinely new or important, and what's just noise or marketing? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;h2&gt;
  
  
  Due Diligence and Fact-Checking
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;26. Fact-check a specific claim&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I've heard that [specific claim]. Is this accurate? What does current information say? If it's partially true, explain the nuance. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;27. Verify a statistic&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Where does the statistic "[stat]" come from? Is it accurate? What's the original source and methodology? Are there more recent figures? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;28. Find contradicting evidence&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;What's the strongest evidence against the view that [position]? Are there credible sources, studies, or cases that contradict it? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;29. Check a company 's claims&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[Company] claims that [claim]. How accurate is this? What do independent sources say? Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;30. Background on a person or organisation&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Give me a factual background on [person/organisation]. Include: their history, notable work or events, any controversies, and current activities. Stick to verifiable information. Cite sources.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;h2&gt;
  
  
  Getting Cited, Sourced Answers
&lt;/h2&gt;

&lt;p&gt;A few things that improve Perplexity results:&lt;/p&gt;

&lt;p&gt;Always ask for sources explicitly ("cite sources" at the end of a prompt). Perplexity usually cites by default, but asking makes it prioritise sourced claims over inference.&lt;/p&gt;

&lt;p&gt;For technical questions, specify the level of depth you want. Perplexity tends toward accessible explanations by default — if you want a technically precise answer, say so.&lt;/p&gt;

&lt;p&gt;For time-sensitive research, add "as of 2026" or "in the last 6 months" to constrain results. This helps avoid mixing current and outdated information. For search-grounded work that leans more toward Google's ecosystem, &lt;a href="https://dev.to/blog/best-gemini-prompts-productivity"&gt;Gemini prompts for productivity&lt;/a&gt; covers a complementary set of research patterns.&lt;/p&gt;

&lt;p&gt;Perplexity's follow-up conversation works well for drilling down — use it iteratively rather than trying to cram everything into one prompt.&lt;/p&gt;

&lt;p&gt;If you're running the same research prompts repeatedly — market monitoring, competitor tracking, weekly digests — storing them somewhere accessible saves setup time. You can &lt;a href="https://promptzy.app/#features" rel="noopener noreferrer"&gt;organize your research prompts on Mac&lt;/a&gt; to keep your best Perplexity templates one shortcut away. &lt;a href="https://promptzy.app" rel="noopener noreferrer"&gt;Promptzy&lt;/a&gt; stores these as plain Markdown files and pastes any prompt into any app in under 2 seconds. A "Research" collection means your best Perplexity prompts are one &lt;code&gt;Cmd+Shift+P&lt;/code&gt; away.&lt;/p&gt;

&lt;h3&gt;
  
  
  Store and manage your prompts with Promptzy
&lt;/h3&gt;

&lt;p&gt;Free prompt manager for Mac. Search with Cmd+Shift+P, auto-paste into any AI app.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/navbuildz/promptzy-builds/releases/latest/download/Promptzy.dmg" rel="noopener noreferrer"&gt;Download Free for macOS&lt;/a&gt;&lt;/p&gt;

</description>
      <category>perplexity</category>
      <category>ai</category>
      <category>research</category>
      <category>productivity</category>
    </item>
    <item>
      <title>The Best GitHub Copilot Prompts for Faster Coding (2026)</title>
      <dc:creator>Nav</dc:creator>
      <pubDate>Sun, 29 Mar 2026 09:10:56 +0000</pubDate>
      <link>https://dev.to/navbuildz/the-best-github-copilot-prompts-for-faster-coding-2026-1068</link>
      <guid>https://dev.to/navbuildz/the-best-github-copilot-prompts-for-faster-coding-2026-1068</guid>
      <description>&lt;p&gt;GitHub Copilot has evolved well past autocomplete. With Copilot Chat, workspace agents, and slash commands, it's now a full coding assistant — but most developers are still using it for simple completions and occasionally asking it to explain something. The prompts below are written for the full Copilot experience: inline suggestions, Chat, and the workspace agent.&lt;/p&gt;

&lt;p&gt;These are specific, tested, and honest about what Copilot does well versus where you'll get better results from a standalone model like Claude or ChatGPT. If you find yourself reaching for the same patterns repeatedly, you can &lt;a href="https://dev.to/blog/never-rewrite-same-ai-prompt"&gt;save Copilot prompt patterns you use repeatedly&lt;/a&gt; so they're always one shortcut away.&lt;/p&gt;




&lt;h2&gt;
  
  
  Code Review
&lt;/h2&gt;

&lt;p&gt;Copilot Chat is surprisingly good at code review when you give it focused prompts. These get more useful output than generic "review this code" requests. For a deeper dive into review-specific patterns across tools, see our &lt;a href="https://dev.to/blog/best-ai-prompts-code-review"&gt;AI prompts for code review&lt;/a&gt; guide.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. General code review&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/review

Review this code for: bugs, security issues, performance problems, and readability concerns. Be specific — call out line numbers where possible and suggest concrete fixes.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;2. Security-focused review&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review this code specifically for security vulnerabilities. Check for: SQL injection, XSS, insecure deserialization, hardcoded secrets, improper input validation, and any OWASP Top 10 concerns.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;3. Performance review&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Analyse this code for performance issues. Identify expensive operations, unnecessary iterations, memory leaks, and N+1 query patterns. Suggest specific optimisations.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;4. Review for maintainability&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Review this code from a maintainability perspective. Is it readable? Is the naming clear? Are there any abstractions missing or over-engineered? How would a new team member experience this?

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;5. Pull request review checklist&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm reviewing this pull request diff. Go through it and check for: (1) correctness — does the logic do what it claims, (2) edge cases that aren't handled, (3) test coverage gaps, (4) any naming or style inconsistencies, (5) anything that could break existing behaviour.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;h2&gt;
  
  
  Test Generation
&lt;/h2&gt;

&lt;p&gt;Test generation is one of Copilot's strongest use cases when you're specific about what you want.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. Write unit tests for a function&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write comprehensive unit tests for this function. Cover: happy path, edge cases, error cases, and boundary conditions. Use the testing framework already in this project.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;7. Write tests for untested code&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This code has no tests. Write unit tests that give good coverage. Identify any parts that are hard to test and suggest how to refactor them for testability.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;8. Write integration tests&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write integration tests for this feature. Focus on the interactions between components, not just individual functions. Mock external dependencies appropriately.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;9. Identify test gaps&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I have this code and these existing tests. Identify what's not covered by the tests and write additional tests to fill the gaps.

Code: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;10. Write a test for a specific bug&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a regression test that would have caught this bug before it was introduced: [describe the bug]. The test should fail on the buggy code and pass on the fix.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;h2&gt;
  
  
  Documentation
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;11. Write function documentation&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write clear, accurate documentation for this function. Include: what it does, parameters with types and descriptions, return value, exceptions it can throw, and a usage example.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;12. Write a README section&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a clear README section for this module or feature. Cover: what it does, how to use it, required configuration, and a code example.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;13. Write inline comments for complex logic&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Add inline comments to this code that explain the "why" behind non-obvious decisions. Don't comment obvious things — focus on logic that would confuse a new developer.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;14. Generate API documentation&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Generate API documentation for this endpoint or function. Use a clear format covering: purpose, request parameters, response format, error codes, and an example request/response.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;h2&gt;
  
  
  Debugging
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;15. Explain an error&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm getting this error: {{clipboard}}

Explain what's causing it, what part of the code is responsible, and give me a fix.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;16. Trace unexpected behaviour&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This code should do [expected], but it's doing [actual] instead. Walk me through what's actually happening step by step and explain why it behaves this way.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;17. Suggest fixes for a failing test&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This test is failing. Here's the test and the error output. Tell me whether the bug is in the implementation or the test itself, and give me a fix either way.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;18. Diagnose a performance problem&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This function is running slower than expected. Profile it mentally — where are the bottlenecks? What would you change first?

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;h2&gt;
  
  
  Refactoring
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;19. Refactor for readability&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Refactor this code to improve readability without changing behaviour. Extract functions if needed, improve naming, and remove any unnecessary complexity.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;20. Reduce duplication&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This codebase has duplication across these files. Identify the patterns and suggest how to refactor them into shared abstractions.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;21. Modernise old code&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This code was written for an older version of [language/framework]. Update it to use current best practices and modern syntax while preserving all existing behaviour.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;22. Break up a large function&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;This function is doing too much. Break it up into smaller, focused functions. Each function should do one thing and be testable in isolation.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;h2&gt;
  
  
  PR Summaries and Commit Messages
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;23. Write a PR description&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a clear PR description for these changes. Cover: what problem this solves, how it was approached, what was changed, how to test it, and any edge cases or risks.

Diff summary: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;24. Write a commit message&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a clear, conventional commit message for these changes. Format: type(scope): short description. Include a body if the change needs more explanation.

Changes: {{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;25. Summarise a PR for review&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarise this PR for a reviewer who hasn't seen the context. Give them: the problem being solved, the approach taken, what files changed and why, and what to focus on during review.

{{clipboard}}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;h2&gt;
  
  
  Workspace Agent Prompts
&lt;/h2&gt;

&lt;p&gt;Copilot's workspace agent (&lt;code&gt;@workspace&lt;/code&gt;) has context about your entire project. These prompts work best in that mode.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;26. Find all usages of a pattern&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@workspace Find all places in the codebase where [pattern/function/class] is used. List them with file paths and explain the context for each.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;27. Understand a codebase area&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@workspace Explain how [feature/module] works in this codebase. Walk me through the main files involved, how data flows, and what the key abstractions are.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;28. Identify all places that need to change&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@workspace I need to change [thing]. List all the places in the codebase that will need to be updated, including any tests, config files, and documentation.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;29. Find potential breaking changes&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@workspace If I change the signature of [function/interface], what else in the codebase would break? List all affected files and usages.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;30. Onboard to a new codebase&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@workspace I'm new to this codebase. Give me an overview: what does it do, how is it structured, what are the main entry points, and what should I read first to get oriented?
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;h2&gt;
  
  
  Getting the Most Out of Copilot Chat
&lt;/h2&gt;

&lt;p&gt;A few patterns that improve results:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Use&lt;code&gt;/fix&lt;/code&gt;, &lt;code&gt;/explain&lt;/code&gt;, &lt;code&gt;/tests&lt;/code&gt; slash commands&lt;/strong&gt; for quick single-purpose requests. They're faster than typing a full prompt and Copilot handles the framing.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Give Copilot the right context.&lt;/strong&gt; Copilot Chat sees the open file, but if you're asking about interactions between files, paste the relevant code or use &lt;code&gt;@workspace&lt;/code&gt;. For chat-based AI work outside the editor, our &lt;a href="https://dev.to/blog/best-chatgpt-prompts-developers"&gt;ChatGPT prompts for developers&lt;/a&gt; and &lt;a href="https://dev.to/blog/best-cursor-ai-prompts-developers"&gt;Cursor AI prompts&lt;/a&gt; guides cover complementary workflows.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Be specific about what you don 't want.&lt;/strong&gt; "Refactor this without changing the public API" or "write tests without mocking the database" saves you from unhelpful suggestions.&lt;/p&gt;

&lt;p&gt;If you're building up a library of prompts across Copilot, Claude, and ChatGPT, you need a way to &lt;a href="https://dev.to/blog/best-ai-prompt-managers-mac-2026"&gt;manage your developer prompts across tools&lt;/a&gt;. A prompt manager keeps them together and accessible from anywhere. &lt;a href="https://promptzy.app" rel="noopener noreferrer"&gt;Promptzy&lt;/a&gt; stores prompts as Markdown files and pastes any of them into VS Code, the browser, or anywhere else in under 2 seconds. A "Copilot" collection means your best prompts are one shortcut away — without switching context.&lt;/p&gt;

&lt;h3&gt;
  
  
  Store and manage your prompts with Promptzy
&lt;/h3&gt;

&lt;p&gt;Free prompt manager for Mac. Search with Cmd+Shift+P, auto-paste into any AI app.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/navbuildz/promptzy-builds/releases/latest/download/Promptzy.dmg" rel="noopener noreferrer"&gt;Download Free for macOS&lt;/a&gt;&lt;/p&gt;

</description>
      <category>githubcopilot</category>
      <category>ai</category>
      <category>productivity</category>
      <category>programming</category>
    </item>
    <item>
      <title>The 30 Best AI Prompts for Operations &amp; Project Managers</title>
      <dc:creator>Nav</dc:creator>
      <pubDate>Sat, 28 Mar 2026 20:37:13 +0000</pubDate>
      <link>https://dev.to/navbuildz/the-30-best-ai-prompts-for-operations-project-managers-3p16</link>
      <guid>https://dev.to/navbuildz/the-30-best-ai-prompts-for-operations-project-managers-3p16</guid>
      <description>&lt;p&gt;If you run operations or manage projects, you're spending a lot of time on things that should take minutes. Status reports. Risk summaries. Meeting agendas. Escalation emails. The work behind the work.&lt;/p&gt;

&lt;p&gt;AI prompts for project managers can cut that overhead dramatically — but only if the prompts are actually built for how ops and PM work functions. Generic "summarize this" prompts don't cut it when you need a structured risk log or a vendor scorecard that your stakeholders will actually read.&lt;/p&gt;

&lt;p&gt;This is a list of 30 AI prompts built specifically for operations and project managers. Copy them directly, or save them in &lt;a href="https://promptzy.app" rel="noopener noreferrer"&gt;Promptzy&lt;/a&gt; so you can fire any one of them with a keyboard shortcut.&lt;/p&gt;

&lt;h2&gt;
  
  
  Status Reports &amp;amp; Updates
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Weekly status report from bullet points&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a professional weekly project status report. Project: [PROJECT NAME]. RAG status: [RED/AMBER/GREEN]. Key updates this week: [BULLET POINTS]. Blockers: [LIST]. Next week priorities: [LIST]. Keep it under 300 words. Use a clear structure with headers.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;2. Executive summary for stakeholders&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Summarize the following project update into a 5-sentence executive summary for senior stakeholders who want the headline, not the detail. Focus on: current status, any risks, key decisions needed. Update: [PASTE UPDATE]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;3. Turn messy notes into a formal status update&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I have rough meeting notes and want to turn them into a clean stakeholder update email. Clean up the language, organize into: progress, risks, actions, next steps. Notes: [PASTE NOTES]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;4. Red status escalation message&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a professional escalation email for a project that has just moved to RED status. Project: [NAME]. Core issue: [DESCRIBE]. Impact if unresolved: [IMPACT]. What I need from leadership: [WHAT YOU NEED]. Tone: direct, factual, no blame.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;5. Sprint retrospective summary&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a sprint retrospective summary from these team inputs. Format: What went well, what didn't, what we're changing. Keep each section to 3 bullet points max. Inputs: [PASTE RAW NOTES]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Risk Management
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;6. Risk log entry&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a risk log entry for the following risk: [DESCRIBE RISK]. Include: risk description, likelihood (High/Medium/Low), impact (High/Medium/Low), risk owner, mitigation actions (3 bullet points), contingency plan. Format as a table row I can paste into a spreadsheet.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;7. Risk assessment from project description&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm starting a new project: [DESCRIBE PROJECT]. Identify the top 5 risks I should log immediately. For each risk: name it, rate likelihood and impact, suggest one mitigation action. Be specific to my project context, not generic.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;8. Risk update for steering committee&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I need to present our top project risks to a steering committee. Here are the risks: [LIST RISKS AND STATUS]. Write a 3-paragraph narrative that explains the risk landscape, what we're doing about it, and what decisions the committee needs to make.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;9. Issue escalation vs. risk differentiation&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Help me categorize these items as either active issues (already affecting the project) or risks (potential future problems): [LIST ITEMS]. For each, tell me how to log it and what immediate action to take.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Meeting Agendas &amp;amp; Facilitation
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;10. Kick-off meeting agenda&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a 60-minute project kick-off meeting agenda for: [PROJECT NAME AND BRIEF DESCRIPTION]. Attendees: [LIST ROLES]. Include: introductions, project overview, scope, roles &amp;amp; responsibilities, timeline, risks, open Q&amp;amp;A. Add time allocations and the goal for each section.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;11. Retrospective facilitation guide&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create a 45-minute retrospective facilitation guide for a team of [NUMBER] people. Use the Start/Stop/Continue format. Include: opening warm-up activity, time allocations, exact facilitator prompts to use, and how to close with clear action items.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;12. Recurring standup format&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a standup meeting format for a [NUMBER]-person ops team. Each person has 2 minutes. The format should surface blockers fast and stay under [TOTAL MINUTES] total. Include the exact 3 questions each person answers.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;13. Meeting notes to action items&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I have raw meeting notes. Extract all action items and format them as a table with: Action, Owner, Due Date, Priority (H/M/L). Notes: [PASTE NOTES]. If owner or due date isn't mentioned, flag it as TBD.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;14. Steering committee deck outline&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create a steering committee presentation outline for project [NAME] at [MILESTONE/STAGE]. The committee wants: status summary, financials, risks, decisions needed, and next steps. Give me a slide-by-slide outline with 2-3 bullet points per slide.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  SOPs &amp;amp; Documentation
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;15. Standard operating procedure template&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a standard operating procedure (SOP) for the following process: [DESCRIBE PROCESS]. Include: purpose, scope, roles and responsibilities, step-by-step procedure, exceptions, revision history table. Tone: clear, direct, no unnecessary jargon.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;16. Process documentation from brain dump&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm going to describe a process in rough terms. Turn it into a clean, numbered SOP that a new team member could follow without asking questions. My description: [PASTE DESCRIPTION]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;17. Runbook for recurring operations task&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create a runbook for: [TASK OR PROCESS NAME]. This is a recurring task done by [ROLE]. Include: trigger/when to run this, prerequisites, step-by-step instructions with commands or system steps where relevant, common errors and how to handle them.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;18. RACI matrix from project description&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Build a RACI matrix for a [PROJECT TYPE] project. Roles involved: [LIST ROLES]. Key workstreams: [LIST WORKSTREAMS OR DELIVERABLES]. Use a table format with Responsible, Accountable, Consulted, Informed clearly marked.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Escalations &amp;amp; Difficult Communications
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;19. Scope creep response email&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a professional email to a stakeholder who is requesting work outside the original project scope. Acknowledge their request, explain the scope boundary clearly, offer to raise a formal change request if they want to proceed, and keep the tone collaborative. Context: [DESCRIBE REQUEST]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;20. Missed deadline notification&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write an email informing stakeholders that [DELIVERABLE] will be delayed from [ORIGINAL DATE] to [NEW DATE]. Explain the reason honestly without over-apologizing. Include what's being done to prevent further delays and the revised plan. Tone: direct, accountable.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;21. Pushback on unrealistic deadline&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Help me write a professional response to a request to deliver [DELIVERABLE] by [UNREALISTIC DATE]. I need to say no clearly, offer an alternative timeline with reasoning, and keep the relationship intact. My actual estimate: [YOUR TIMELINE]. Context: [BACKGROUND]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;22. Post-incident summary&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a post-incident summary for the following operations issue. Format: incident summary, timeline of events, root cause, impact, immediate actions taken, long-term remediation plan. Details: [PASTE INCIDENT NOTES]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Vendor &amp;amp; Budget Management
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;23. Vendor evaluation scorecard&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create a vendor evaluation scorecard for selecting a [TYPE OF VENDOR/SERVICE]. We're evaluating [NUMBER] vendors. Criteria to include: [LIST YOUR KEY CRITERIA]. Weight each criterion by importance. Format as a spreadsheet-ready table with scoring columns.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;24. RFP requirements section&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write the requirements section for an RFP for [PRODUCT/SERVICE]. We need: functional requirements, technical requirements, vendor qualifications, and SLA expectations. Context about our needs: [DESCRIBE CONTEXT]. Be specific, not generic.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;25. Budget variance explanation&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a budget variance explanation for a [PROJECT/DEPARTMENT]. We're [OVER/UNDER] budget by [AMOUNT/PERCENTAGE]. Reason: [EXPLAIN WHY]. Write a 2-paragraph explanation for a finance review meeting that is factual, clear, and includes a corrective action.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;26. Contract renewal decision brief&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a one-page decision brief for renewing or replacing our contract with [VENDOR NAME]. Contract details: [COST, TERM, WHAT THEY DO]. Our experience: [POSITIVES AND NEGATIVES]. Options: renew, renegotiate, or switch to [ALTERNATIVE]. Recommendation: [YOUR RECOMMENDATION]. Format for a leadership read.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Planning &amp;amp; Strategy
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;27. Project charter draft&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Draft a project charter for: [PROJECT NAME AND DESCRIPTION]. Include: project objective, scope (in/out of scope), success criteria, key stakeholders, high-level timeline, assumptions and constraints, budget summary, and approvals section. Keep it to one page.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;28. Dependency map from project list&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I have a list of workstreams for a project. Identify the dependencies between them and flag which are on the critical path. Workstreams: [LIST THEM]. Format as a table showing: workstream, depends on, must complete before, on critical path (Y/N).
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;29. Lessons learned document&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Write a lessons learned document for a recently completed [TYPE] project. Team size: [SIZE]. Duration: [DURATION]. Outcome: [SUCCESSFUL/PARTIALLY SUCCESSFUL/FAILED AND WHY]. Include: what worked well, what didn't, recommendations for future similar projects, and a summary section for the project archive.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;30. Quarterly ops review outline&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create an outline for a quarterly operations review for [TEAM/DEPARTMENT]. Audience: [LEADERSHIP LEVEL]. Include: KPI scorecard, highlights, lowlights, blockers resolved, open risks, team capacity, and priorities for next quarter. Format as a presentation outline with talking points per slide.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Making These Prompts Work Harder
&lt;/h2&gt;

&lt;p&gt;A few things that separate the PMs who get real leverage from AI versus the ones who spend more time fixing outputs than they saved:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Be specific about format.&lt;/strong&gt; Prompts that say "write a status report" get generic output. Prompts that say "under 300 words, use headers, RAG status at the top" get something you can actually send.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Use variables.&lt;/strong&gt; Where you see &lt;code&gt;[PROJECT NAME]&lt;/code&gt; or &lt;code&gt;[PASTE NOTES]&lt;/code&gt;, that's a placeholder. The more specific context you provide, the better the output. This is also where tools like Promptzy help — you can store these prompts with &lt;code&gt;{{clipboard}}&lt;/code&gt; tokens that auto-fill your clipboard content on paste, so you don't have to restructure the prompt every time.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Iterate on outputs.&lt;/strong&gt; First draft from AI is rarely the final version. Use a follow-up prompt: "Make this more direct" or "Cut this by 30%" to get closer to what you need.&lt;/p&gt;

&lt;p&gt;Save the prompts you use most often so they're always one shortcut away. Store these in &lt;a href="https://promptzy.app" rel="noopener noreferrer"&gt;Promptzy&lt;/a&gt; and assign a keyboard shortcut to the ones you reach for daily.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>ai</category>
      <category>projectmanagement</category>
      <category>prompts</category>
    </item>
  </channel>
</rss>
