workflows
Stop Summarizing the Whole Meeting: How I Use AI to Protect My Own Scope
A practical workflow for using a meeting recording and AI to identify your own responsibilities, confirm unclear ownership, and protect your scope after a busy project call.

A practical workflow for using a meeting recording and AI to identify your own responsibilities, confirm unclear ownership, and protect your scope after a busy project call.
Let's be honest about what happens on sprint calls.
Nobody wakes up excited to be the meeting scribe.
You join a 40-minute Zoom call with four other people. The conversation ping-pongs from quarterly churn numbers to a broken webhook, takes a hard left into redesigning the onboarding flow, and abruptly wraps up with someone saying: "Cool, Alex will handle the auth button, and Sarah takes the copy. Let's sync Thursday."
Then everyone hangs up.
There's no shared Google Doc. No Notion page. No neat Slack recap.
Five minutes later, you're sitting at your desk with a lukewarm coffee, staring at a blank screen: Wait, did Dave want the session timeout set to 7 days or 14? Am I supposed to wait on IT for staging keys, or just stub the API myself?
You have two choices. You can post in #general and admit you weren't tracking every syllable. Or you can spend the rest of your week guessing in the dark and praying you don't get roasted in code review.
I used to hate this part of remote work. But lately, I stopped expecting the team to get better at documentation. Instead, I set up a low-friction, four-step workflow that uses a phone recording and AI to pull out only the work that belongs to me.
Here is how it actually works.
Step 1: The Personal Insurance Policy (Start the Recording)
Here is a trap I fell into for years: trying to type frantic notes while also defending an engineering choice. The second your eyes drop to the keyboard, you miss the exact nuance of what someone just asked for.
These days, I usually record my regular meetings with CoHear.
Step 2: From Broad Recap to Personal Scope Protection
Right after the call wraps, CoHear spits out a high-level summary on my phone. Honestly, for 80% of routine syncs, that's plenty. The small talk is gone, and the big decisions are sorted.
But what if you don't want the high-level view? What if you have a massive backlog and just need to know, in a couple of minutes, what's on your plate for tomorrow morning?
That's when I drop the raw transcript into an LLM (Claude, ChatGPT, or DeepSeek).
Here's the catch nobody talks about: in a messy meeting where people talk over each other, speaker attribution is never 100% perfect.
If you just tell the AI, "Extract tasks for Alex," but your manager said, "Hey, whoever built the original login should probably patch this," the model may silently drop your ticket. You end up missing work without realizing it.
To keep that from happening, I use a prompt built with a safety net:
The Scope-Protection Prompt
Analyze this meeting transcript. My name is [Alex], my role is [Frontend Dev], and my primary domain is [User Auth & Onboarding]. Sort every action item mentioned into three strict buckets: **Explicitly Assigned to Me:** Tasks clearly assigned to me by name, role, or an explicit ownership decision. Domain relevance alone is not proof of assignment. Include technical constraints and deadlines only when they are stated in the transcript. **Ambiguous / Needs Verification:** Tasks with vague pronouns (for example, "someone should look into this" or "let's make sure this gets handled") or unassigned items related to my domain. Quote the exact conversational snippet and speaker context so I can quickly verify whether this belongs to me. **Clearly Assigned Elsewhere:** Keep the item and the evidence of ownership, but exclude it from my execution list. Do not silently delete it. Do not invent owners, deadlines, technical constraints, or decisions. If information is missing, write "Not stated." Raw Transcript: {Paste Transcript}
This does two things. It gives you a clean list of things you definitely own, and it flags the gray-area tasks with the exact quote from the call. You spend ten seconds reading the snippet and decide: Yep, that's mine, or Nope, that was for backend. Zero guessing.
Step 3: Turn Vague Verbal Asks into a Real Spec
During meetings, people speak in casual shorthand: "Just wire up the Google login real quick."
If you build based on that single sentence, you're walking into an ambush. Two days later someone will ask: "Wait, what happens if an existing user signs in with Google? Did you handle network timeouts?"
Before opening your IDE or design tool, feed your extracted task back into the AI to pin down the Definition of Done (DoD) - the concrete conditions that prove the work is truly finished.
I usually ask:
The Execution Prompt
Take this assigned task for [Google 1-Tap Login] and draft an engineering checklist. **Happy Path:** What happens when the user clicks and auth succeeds? **Edge Cases:** List up to three relevant error states. Separate cases explicitly discussed in the meeting from cases proposed for review. **Definition of Done:** Write measurable criteria that would prove this ticket is ready for QA. Do not invent decisions from the meeting. Mark any new suggestion as "Proposed - needs confirmation."
Suddenly, that casual verbal ask turns into a clean, bulletproof spec.
Step 4: The 1-Minute Alignment Check (Lock the Scope)
The last step is the one most people skip: closing the loop before writing a line of code.
Never assume you and your manager have the exact same mental picture of what "real quick" means. Take the spec you just generated and drop a quick 3-bullet check in Slack:
Hey @Dave, based on our sync, here is the execution baseline for my scope: 1. **In-Scope:** [Core deliverables and key acceptance criteria] 2. **Out of Scope / Edge Cases:** [What is explicitly deferred, or exceptions not handled this round] 3. **Blockers & Dependencies:** [Access, credentials, or review needed from @teammate before shipping] If this matches your understanding, I'll use it as the implementation baseline. If not, please correct it before I start.
This takes only a short message to write, but it can prevent hours of pain later. It shows proactive ownership, and more importantly, it puts your delivery boundaries in writing. If someone tries to expand the scope on Thursday, you have a timestamped baseline.
The Takeaway
You don't need company-wide buy-in, expensive enterprise software rollouts, or dedicated scribes to survive remote meetings.
Start a recording, let AI separate clear assignments from conversational gray areas, and lock in your delivery scope before you start building. You spend less time deciphering vague expectations, and a lot more time actually shipping.