In partnership with

Write docs 4x faster. Without hating every second.

Nobody became a developer to write documentation. But the docs still need to get written — PRDs, README updates, architecture decisions, onboarding guides.

Wispr Flow lets you talk through it instead. Speak naturally about what the code does, how it works, and why you built it that way. Flow formats everything into clean, professional text you can paste into Notion, Confluence, or GitHub.

Used by engineering teams at OpenAI, Vercel, and Clay. 89% of messages sent with zero edits. Works system-wide on Mac, Windows, and iPhone.

Your inbox is the single most expensive thing in your business.

Not in dollars. In attention. The average operator spends between 90 minutes and three hours a day in email. Reading. Replying. Re-reading. Forwarding. Filing. Forgetting. Then re-finding two days later when something gets dropped.

Email is the place where good intentions go to die. You start your morning thinking you will write that sales page. Then you "just check email real quick." Two hours later you have replied to 14 messages, lost the thread on three of them, and not touched the sales page.

Today we fix it. Not with a productivity hack. Not with a new app that promises to be "the last inbox you will ever use." With an actual automation layer that does the triage for you, so when you finally open your email, the only things in front of you are the ones that genuinely need your judgment.

This is the system I run in my own business. It takes about three hours to build the first time and pays for itself by Wednesday afternoon.

What the System Does

Before we get into the build, let me show you the experience you are working toward.

You wake up. You open your inbox. The first thing you see is a single summary email, sent at 7 a.m. by your own automation, that reads roughly like this:

14 messages overnight. 3 require your response today. 2 require your response this week. 4 have been auto handled and acknowledged. 5 are FYI only. Top priority is the proposal from Acme that landed at 11:42 pm. Draft response below.

Below the summary is a draft of the highest priority reply. Already written. Ready for you to skim, tweak two sentences, and send.

That entire interaction takes you between three and six minutes. Down from an hour and a half of disorganized inbox triage. The remaining email day is reactive only to the things that genuinely need you. Everything else has already been routed, categorized, drafted, or acknowledged before your coffee is finished.

That is the system. Let us build it.

The Architecture

Three layers. Each does one job.

Layer one is the classifier. It looks at every incoming email and decides what bucket it belongs in. Customer support. Sales inquiry. Partnership. Vendor. Newsletter. Internal. Junk. Time sensitive. Acknowledge only.

Layer two is the responder. For each category, it either drafts a response, sends an auto acknowledgement, files it, or flags it for your direct attention.

Layer three is the briefing. Once a day, it aggregates everything that came in, summarizes what was handled, and presents you with the short list of messages that still need your judgment.

You build this in Make connected to your email provider and an AI model. Most operators reading this can have it running by end of day.

Step One. Set Up the Trigger

In Make, create a new scenario. The first module is Gmail or Outlook, depending on what you use, configured to watch for new emails.

Filter the trigger to skip emails from your own domain, automated transactional emails like password resets, and anything from your existing newsletter subscriptions. You can build a simple keyword filter or use a separate Make scenario to maintain a "do not process" address list.

For the first build, do not be too aggressive with filters. You want most legitimate emails to flow into the scenario so you can see the classifier in action.

Step Two. Build the Classifier

Add an AI module after the trigger. This can be the OpenAI module if you use ChatGPT, the Anthropic module if you use Claude, or a generic HTTP call to whatever AI hub you prefer like Galaxy.ai.

The prompt you want is something like this:

You are an executive assistant classifying incoming email for a small business owner. For the email below, return a JSON object with three fields. Category, which must be one of: customer_support, sales_inquiry, partnership, vendor_billing, newsletter, internal_team, personal, junk, fyi_only. Priority, which must be one of: urgent_today, important_this_week, low. Suggested_action, which must be one of: draft_response, auto_acknowledge, file_only, flag_for_review.

Email subject: {{subject}}

Email from: {{from}}

Email body: {{body}}

The model returns the JSON. Make parses it into variables you can route on in the next steps. This is the brain of the whole operation.

If you are nervous about the model getting it wrong on day one, you can run the scenario in "log only" mode for a few days. Have it write the classification to a Google Sheet without taking any action. Watch the patterns. Tune the prompt. Then turn on the actions.

Step Three. Build the Action Routes

After the classifier, add a router with branches for each combination of category and suggested action that matters.

Branch one. Sales inquiries marked as urgent_today. Action is draft_response. This branch sends the original email to your AI with a prompt that pulls in your standard sales response framework, your offer details, and your booking link. The output gets created as a Gmail draft in your account. Not sent automatically. You will skim and send.

Branch two. Customer support emails marked as auto_acknowledge. Action is to send a templated reply within five minutes that says something like "Thanks for reaching out. I have your message and will respond personally within one business day. If this is urgent, here is the contact for immediate help." This buys you breathing room without leaving the customer wondering if their message landed.

Branch three. Partnership inquiries. Action is to flag for review and add a row to a Partnerships spreadsheet so nothing falls through the cracks. You handle these on your weekly partnership review block, not in the moment.

Branch four. Vendor and billing. Action is to file in a Vendors label and forward to your bookkeeper if applicable. No draft, no human attention required from you.

Branch five. Newsletter and FYI. Action is to apply a label and skip the inbox entirely. These messages exist for reference only. You will browse them on Sunday during your weekly review, not Monday morning while you are trying to write.

Branch six. Junk. Move to Spam, or if your filter is high confidence, delete.

Branch seven. Personal and internal. Action is to flag for direct review. These are the messages that should still bubble up to your inbox untouched. The system is helping you triage outside messages. Personal messages from your spouse, your team, and your closest collaborators bypass the classifier entirely.

Each branch is a small chain of two to four modules. The whole scenario, end to end, has maybe 25 modules. It looks complex on the canvas but each piece is simple.

Step Four. Build the Daily Briefing

Create a second Make scenario, scheduled to run at your chosen morning time. 6 a.m. or 7 a.m. works for most operators.

This scenario reads all emails classified in the last 24 hours from a Make data store you populated in the first scenario. It aggregates them by category and priority. It generates a single summary email that hits your inbox before you open your laptop.

The summary has four sections.

Top section, three to five lines. Total messages, breakdown by priority, and the single most important item that needs your attention.

Second section, your top three drafts ready to review. The full text of each, embedded inline, with a link to the Gmail draft so you can edit and send with one click.

Third section, anything urgent that did not get auto handled and needs your direct judgment.

Fourth section, the FYI roundup. A list of newsletters, internal messages, and informational items that came in but do not require action. Skim if you want, ignore if you do not.

You open this email. You spend three to six minutes on it. You send the three drafts after light edits. You make a call on the one or two flagged items. You are done with email for the morning. Now you go write the sales page.

Step Five. The Weekly Tuning

For the first three weeks, you will misclassify things. The system will mark a critical sales inquiry as FYI. It will draft a response that completely misses the customer's actual question. It will let a partnership through that should have been flagged.

This is expected. Build a five minute weekly tuning ritual into your Friday afternoon. Pull up the last seven days of classifications. Find the five worst misses. Adjust the classifier prompt to handle them. Adjust the draft prompts where the response quality was off.

By week four, the system is running at about 90 percent accuracy. By week eight, you barely notice it is there because it is just doing its job in the background.

The Tools Stack

Make is the engine. It runs the routing, the AI calls, and the briefing logic.

Your AI provider of choice. Claude tends to write more natural draft responses out of the box. ChatGPT is faster and cheaper for the classification step. Galaxy.ai lets you mix and match without juggling separate subscriptions.

Gmail or Outlook on the email side. The modules in Make for both are mature and well supported.

For follow up where conversations turn into calls or recorded meetings, Fathom plugs into the same data layer cleanly. The meeting transcript and summary can feed back into your CRM so the email conversation and the meeting conversation stay connected.

A Google Sheet or a Make data store to hold your classification log, your tuning notes, and your priority rules. This is the institutional memory of the system.

Total tool cost. Most operators run this on the Make Pro plan at $16 a month, $20 a month in AI usage, and existing email and storage they already pay for. Call it $40 a month all in. For a system that saves between 60 and 90 minutes a day.

The Trap Operators Hit

The single biggest mistake operators make when building this is trying to over-automate from day one. They want every email replied to, not drafted. They want everything categorized into 14 sub-categories. They want the AI to make judgment calls about which customer issues require refunds.

Resist all of this. The first version of the system should do three things. Classify. Draft for review. Brief in the morning. That is it.

Everything else gets added in version two or three, after you have used the basic system for at least 30 days and you know exactly what would actually save you more time without adding risk.

The second trap is assuming the AI will write better responses than you. It will not. Not at first. It will write competent, generic responses that get the job done at 80 percent quality. The point is not that AI writes better than you. The point is that AI writes 80 percent quality drafts in three seconds, which you can polish to 100 percent in 60 seconds. That sequence is dramatically faster than you writing from blank to 100 percent.

The third trap is letting the system make irreversible decisions without a human checkpoint. Drafting is fine. Filing low priority items is fine. Acknowledging customer support inquiries is fine. Sending a real reply to a real customer without you reviewing it is not fine. The risk is too high. Keep the human in the loop for anything that goes outside your business.

What Three Hours of Building Buys You

I have watched operators move from chaos to control in the span of one Tuesday afternoon.

By 1 p.m. they have the trigger and classifier built.

By 3 p.m. they have the routes and drafts working.

By 5 p.m. they have the morning briefing scheduled.

Wednesday morning they wake up to a clean inbox with a three minute summary. Wednesday afternoon they get the first real day in months where they actually finished a deep work block instead of getting eaten alive by reactive email.

A month later they will tell you it is the single highest leverage automation they have ever built. They are not wrong. It compounds every single day, forever.

If you want the full inbox automation blueprint, with the exact Make scenario template, the classifier prompts, the draft prompts, and the briefing template ready to import, that is part of the AI Workflow Blueprint at $47. Reply BLUEPRINT and I will send the package.

If you want me to build a custom version of this in your business, sit on a call to walk through your specific email patterns, and tune it for your context, that is the AI Business Accelerator at $97. Reply ACCELERATOR.

Tomorrow we move to the content engine. How to take what you already say in conversations like this and turn it into a continuous content operation that runs without you babysitting it.

For today. Block three hours. Open Make. Build the scenario. Wake up Wednesday to a different kind of inbox.

Jordan

The AI Newsroom  |  Jordan Hale  |  ainewsroomdaily.com

Turn AI into Your Income Engine

Ready to transform artificial intelligence from a buzzword into your personal revenue generator

HubSpot’s groundbreaking guide "200+ AI-Powered Income Ideas" is your gateway to financial innovation in the digital age.

Inside you'll discover:

  • A curated collection of 200+ profitable opportunities spanning content creation, e-commerce, gaming, and emerging digital markets—each vetted for real-world potential

  • Step-by-step implementation guides designed for beginners, making AI accessible regardless of your technical background

  • Cutting-edge strategies aligned with current market trends, ensuring your ventures stay ahead of the curve

Download your guide today and unlock a future where artificial intelligence powers your success. Your next income stream is waiting.

Keep reading