Meeting Action Extractor Pro

Meeting Action Extractor Pro

What makes this different Most meeting tools give you a transcript. This gives you structured next steps. Every meeting produces action items, decisions, and follow-ups — but 90% of them get lost in notes, buried in Slack threads, or forgotten by Monday. Meeting Action Extractor turns any transcript or notes into structured, importable output in 2 seconds.
#الإنتاجية#المبيعات#الموارد البشرية
التقييم
مطلوب المزيد من التقييمات
المبيعات
0
كيفية الاستخدام
تنزيل

What it does
Extract action items, decisions, and follow-ups from any meeting transcript or notes in one call. Auto-detects owner, task, deadline, and priority. Outputs in Markdown, JSON, Linear-compatible CSV, or Notion database format. 100-point extraction quality scoring.

Usage
import asyncio
from MEETING_ACTION_EXTRACTOR import extract_actions

transcript = """
Sarah: Let's have Mike send the updated roadmap by Friday.
Mike: I'll prepare it and share with the team.
Lisa: We decided to use Stripe over Paddle for EU payments.
Sarah: Need to confirm pricing impact on retention.
"""

result = asyncio.run(extract_actions(transcript))
print(f"Score: {result['score']['total']}/100")
for item in result["action_items"]:
print(f" • {item['owner']}: {item['task']}")
Features
Action items with owner + task + deadline + priority detection
Decisions with rationale + decision maker extraction
Follow-up questions with open / blocked / pending status
4 output formats: Markdown, JSON, Linear CSV, Notion database blocks
100-point extraction quality scoring across 4 dimensions (action completeness, decision clarity, followup tracking, summary quality)
Attendee identification from 3 speaker formats (Name:, [Name], Name -)
Executive summary generation (headline + one-liner)
Issue detection + improvement recommendations
Priority markers (urgent / high / medium / low) auto-detected from keywords
Deadline normalization ("by Friday" → 2026-06-20)
Pure Python — no API key, no LLM dependency, offline-capable
Output example
Score: 87/100
Attendees: Sarah, Mike, Lisa
Action Items (3):
• Mike: send the updated roadmap (by 2026-06-20)
• Lisa: draft the budget proposal (by 2026-06-18)
Decisions (1):
• Use Stripe over Paddle for EU payments
Follow-ups (1):
• Confirm pricing impact on retention
Testing
27/27 tests passing. Pure Python 3.10+, no external dependencies. Handles transcripts from 100 to 10,000 words. Multiple speaker formats supported. 4 output formats, 1 unified quality score.