Leaders Insights
Leaders Insights

Stay at the top of your field, a little every day.

DomainsMarketingDataFinanceAI
ResourcesLearnTestToolsBlogGlossary
© 2026 Leaders Insights — All rights reserved.
Tracks/AI Essentials/AI in daily work/Everyday use cases/Writing faster: drafting, editing, and tone
1/3+130 XP

Everyday use cases

1Writing faster: drafting, editing, and tone+1302Analysis and research: summarizing, comparing, extracting+1403Meetings, email, and admin: reclaiming hours each week+130

Writing faster: drafting, editing, and tone

Writing faster: drafting, editing, and tone

You stare at a blank email to your boss for ten minutes. The cursor blinks. You write "Hi," then delete it.

That blank page is the single biggest time-sink in everyday writing. AI removes it. Not by writing for you, but by handing you a rough draft in five seconds so you can do the part humans are good at: editing it into something that sounds like you.

This lesson shows you exactly how. Three real tasks: drafting an email, tightening a wordy paragraph, and shifting tone. Real prompts you can copy today.

The core mindset: draft fast, edit slow

Here is the shift. Most people try to write the perfect sentence on the first try. AI flips this.

  • AI drafts in seconds. It gives you a "good enough" version 1.
  • You edit with judgment. You know your boss, your voice, the context. The AI does not.

Think of the AI as a fast intern who never gets writer's block but also never quite nails your voice. You are the editor. That framing matters: never paste an AI draft and hit send without reading it. The draft is clay, not the finished pot.

One quick definition: a prompt is just the instruction you type into the AI. A good prompt gives the AI three things: a role, a goal, and context. We will use that pattern throughout.

Task 1: draft an email from scratch

Say you need to tell your team a project deadline is slipping by a week. You dread writing it. Here is a prompt that works in ChatGPT, Claude, or Gemini:

You are helping me write a work email.
Goal: tell my team that the Henderson project deadline
is moving from March 10 to March 17.
Context: the delay is because the client changed the
requirements last week. I want to sound calm and in
control, not apologetic. Keep it under 120 words.
Write the email.

Notice the three parts: a role ("helping me write a work email"), a goal (the deadline change), and context (why, plus the tone you want).

The AI returns a clean draft. Maybe it opens with "Hi team, I wanted to share a quick update on the Henderson project timeline." Good enough to start. Now you edit: swap a phrase, add the one detail only you know, cut the line that sounds too stiff.

Make the draft better with a follow-up

You do not need a perfect first prompt. Just talk back to it:

Good, but make the second paragraph warmer and add one
sentence reassuring them this won't affect their workload.

This back-and-forth (the conversation) is where the real value lives. Each message refines the last. You are steering, not starting over.

Task 2: tighten a wordy paragraph

We all overwrite. Here is a real, bloated paragraph:

> "I am writing to you today to follow up on the conversation that we had during our meeting last week, at which point we discussed the possibility of potentially moving forward with the new vendor, and I wanted to check in to see whether or not you had any further thoughts on this particular matter."

That is 62 words saying almost nothing. Feed it to the AI:

Tighten this paragraph. Cut filler, keep the meaning,
keep it professional. Aim for under 25 words.

[paste the paragraph]

The result might be:

> "Following up on last week's meeting: have you had any further thoughts on moving forward with the new vendor?"

Eighteen words. Same message, ten times sharper.

A trick: ask for options

When you are not sure which version you like, ask for a few:

Give me 3 tighter versions: one formal, one neutral,
one casual. One sentence each.

Now you pick. Choosing between options is faster than writing from zero, and you often Frankenstein the best parts of each into your final line.

If you want a deeper reference on plain, clear writing (the principles the AI is imitating), the U.S. government's Plain Language guidelines are free, excellent, and short.

Task 3: shift the tone

Same words, different feel. This is where AI shines, because tone is hard to control by hand but easy to describe.

Imagine you wrote a blunt message:

> "Your report is late. I need it by end of day or we miss the deadline."

Correct, but harsh. Soften it:

Rewrite this to sound friendly and collaborative while
keeping the urgency clear. Don't make it longer than
the original.

"Your report is late. I need it by end of day or we
miss the deadline."

You might get:

> "Hey, just checking in on the report. Could you get it to me by end of day? It's the one thing standing between us and the deadline. Thanks so much!"

Go the other direction just as easily. Replace "friendly and collaborative" with "formal and direct" for a message to a client, or "warm but professional" for a customer.

Name the tone precisely

Vague tone words give vague results. "Make it nicer" is weak. These work better:

  • "Confident but not arrogant"
  • "Warm and casual, like texting a coworker I like"
  • "Direct and brief, no fluff"
  • "Apologetic but not groveling"

The more specific your tone description, the closer the draft lands.

Write Better with AI: Prompts for Email and Tone

Watch on YouTube

Knowledge check

1. According to the lesson, what is the central mindset shift AI enables in everyday writing?

2. Why does the lesson compare the AI to 'a fast intern who never gets writer's block but also never quite nails your voice'?

3. The lesson defines a good prompt as giving the AI three things. What are they?

MULTIPLE CHOICE

4. Select ALL statements that reflect the lesson's advice on working with an AI draft.

Select all the correct answers.

MULTIPLE CHOICE

5. Select ALL reasons the lesson gives for why the blank page is such a problem and how AI addresses it.

Select all the correct answers.

Teach the AI your voice

The most common complaint: "AI writing sounds generic." Fix it by giving the AI a sample of your real writing.

Paste two or three emails you have actually sent, then say:

Here are 3 emails I've written. Study my tone, sentence
length, and how I open and close messages. Then write a
new email asking a client to reschedule our Thursday call
to Friday. Match my style.

[paste your 3 emails]

Now the draft sounds like you, not like a corporate robot. This single trick does more than any other to make AI writing usable.

Build a reusable "voice" snapshot

If you write a lot, save a short description of your voice and reuse it. ChatGPT, Claude, and Gemini all let you save standing instructions (often called "custom instructions" or a "project," depending on the tool). Drop in something like:

> "When writing emails for me: short sentences, no corporate jargon, friendly but efficient. I open with 'Hi [name],' and close with 'Thanks, SamSamServiceable Addressable Market: the slice of TAM you can realistically reach given your current business model, geography, and distribution channels.View full definition →.' I never use the word 'leverage.'"

Set it once. Every future draft starts closer to your voice.

A quick look under the hood (optional)

If you write the same kind of message often (say, replying to support requests), you can call the AI through code instead of typing each time. You do not need to be a developer to read this:

python
from openai import OpenAI
client = OpenAI()

response = client.chat.completions.create(
    model="gpt-5",
    messages=[
        {"role": "system",
         "content": "You write short, friendly support replies. No jargon."},
        {"role": "user",
         "content": "Customer asks: where is my refund? Reassure them, say 3-5 business days."}
    ]
)

print(response.choices[0].message.content)

The system message is your standing instruction (your voice and rules). The user message is the specific request. Same draft-then-edit idea, just automated. Most people never need this, but it is the same logic behind the chat box.

Common mistakes to avoid

  • Sending without reading. AI invents details. Check names, dates, and facts every time.
  • Over-prompting the first try. Start simple, then refine in follow-ups. It is faster.
  • Accepting generic voice. Always feed it a sample of your real writing if the message matters.
  • Losing your judgment. The AI does not know your relationships or office politics. You do. The final call is yours.

Key Takeaways

  • Beat the blank page by drafting first, editing second. Get a rough version in seconds, then shape it. Never start from zero again.
  • Write prompts with role, goal, and context. "You are helping me write an email" plus what you want plus the background gets sharp results fast.
  • Use follow-ups instead of perfect prompts. Talk back to the draft: "warmer," "shorter," "more direct." The conversation is where quality comes from.
  • Name your tone precisely. "Confident but not arrogant" beats "make it nicer" every time.
  • Feed the AI your real writing so it sounds like you. Paste a few of your own emails, or save a voice snapshot, to escape the generic-robot tone.

What to do, from this lesson

These actions are compiled in the role's Playbook.

  • Beat the blank page by generating a rough draft first, editing second
  • Refine drafts through follow-ups like "warmer," "shorter," not perfect first prompts
  • Name tone precisely, e.g. "confident but not arrogant," over "make it nicer"
  • Feed the AI samples of your real writing to match your voice
See the full action playbook →

Next

Analysis and research: summarizing, comparing, extracting