meeting-action-item-extractor
Installation
SKILL.md
When to invoke
- You have a meeting transcript and want a to-do list with owners and deadlines.
- You need consistent structure for feeding tasks into any project management system.
Inputs needed
--transcript: plain-text transcript file.- (Optional)
--participants: JSON array of participant names to help owner matching.
Workflow
- Read transcript and split into lines.
- Detect action-item cues:
- "action item", "AI:", "todo", "we should", "I'll", "I will", "can you"
- Extract:
task: normalized imperative textowner: inferred from speaker prefix (e.g., "Alex:") or matched participant namedue_date: parse simple natural phrases like "by Friday", "by 2026-06-01" (best-effort)
- Deduplicate similar tasks.
- Output JSON.