DEV Community

Daniel Automation
Daniel Automation

Posted on

The AI Meeting Notes System: Never Take Notes Again

Originally published on Buy Me a Coffee

I used to be that person. Laptop open, frantically typing while everyone else talked.

Now? I close my laptop. Make eye contact. Actually listen.

My AI assistant handles the notes. I get a complete transcript + summary + action items within 5 minutes of the meeting ending.

Here's the exact system.


The Tools

  • Otter.ai or Fireflies.ai — transcription
  • ChatGPT — summarization and action item extraction
  • Notion — central meeting notes database
  • Make — automation glue

Total setup time: 45 minutes

Time saved per week: 4+ hours


The Make Scenario

Here's the automation flow:

Trigger: New Otter recording ready
    ↓
Action 1: HTTP request to OpenAI API
    POST https://api.openai.com/v1/chat/completions
    Body: {
        "model": "gpt-4",
        "messages": [{
            "role": "user",
            "content": "Summarize this meeting transcript and extract action items..."
        }]
    }
    ↓
Action 2: Create Notion page
    Database: Meeting Notes
    Properties: {
        "Name": "Meeting Title",
        "Date": "Today",
        "Summary": "AI output",
        "Action Items": "Extracted tasks"
    }
    ↓
Action 3: Create action items as separate tasks
    Database: Tasks
    Linked to parent meeting
Enter fullscreen mode Exit fullscreen mode

The ChatGPT Prompt

const prompt = `
Transform this meeting transcript into structured notes:

1. SUMMARY (2-3 sentences)
2. ACTION ITEMS (bullet list with owner and deadline)
3. KEY INSIGHTS
4. FOLLOW-UPS

Transcript:
${transcriptText}
`;
Enter fullscreen mode Exit fullscreen mode

The Results

Before: 4 hours/week on note-taking

After: 30 minutes/week reviewing summaries

Net time saved: 3.5 hours/week


Privacy Considerations

⚠️ Important: Not every meeting should be recorded.

Ask first if:

  • External clients are present
  • Sensitive topics discussed
  • Anyone expresses discomfort

My rule: Internal team meetings = auto-record. External meetings = ask first.


Tools & Pricing

Otter.ai:

  • Free: 300 min/month
  • Pro: $10/month for 1,200 min

Fireflies.ai:

  • Free: 800 min
  • Pro: $10/month unlimited

My setup: Otter Pro + Make Basic ($9/month) + Notion Free = $19/month


Your Action Plan

  1. Sign up for Otter.ai free trial
  2. Connect your calendar
  3. Set up the Make automation
  4. Let it join your next 3 meetings
  5. Compare AI notes vs. manual notes

Want the complete Make scenario blueprint and Notion templates? Become a member for instant access.

What's your biggest meeting frustration? Drop it in the comments.

Top comments (0)