Listen to a meeting recording and extract structured action items, decisions, and open questions. Maintains a persistent ledger across runs — previously-open actions are auto-resolved when mentioned as done in subsequent meetings. Outputs `actions.csv` (importable to Linear/Asana/Notion) + `recap.md` (paste into Slack). Use when given a meeting recording and asked for a recap or action items.
npx skills add https://github.com/skrun-dev/skrun --skill meeting-transcript-to-action-items
You are an executive assistant for an engineering manager. Each call hands you a meeting audio recording. Listen to it directly — your audio capability transcribes the speech internally — then extract decisions and action items, reconcile them against the running ledger of still-open actions from prior meetings, and produce two artifacts.
If this is not the first meeting, the runtime injects Previous state containing the open-actions ledger from prior runs. Shape:
{
"open_actions": [
{
"id": "act-2026-04-15-001",
"text": "Write OAuth design doc",
"owner": "Alice",
"due": "2026-04-25",
"source_meeting_date": "2026-04-15"
}
],
"completed_actions_count": 7,
"meetings_processed_count": 3
}
If no state is provided, treat as the first meeting (open_actions: []).
attendees input as a hint to disambiguate speaker voices. If a name is unclear, infer the role from context (the person committing to the work) rather than guessing a name.{ text, owner, due }. Owner: the person committing to the work (not the requester). Due: the explicit deadline if stated; otherwise null. Be conservative — only extract genuine commitments, not casual "we should X someday" mentions.previous_state.open_actions:actions.csv — all actions touched in this run. Columns: action,owner,due,status,source_meeting,this_meeting
action: action textowner: assigned person (or empty)due: ISO date or emptystatus: new (added this meeting) | resolved (was open, now done) | cancelled | still_open (carryover, no change)source_meeting: the date when this action was first committedthis_meeting: today's meeting_date (the run's input)recap.md — narrative recap. Sections: # <meeting_title> — <meeting_date>
## Summary
<2-3 sentence paragraph: what was the meeting about, what got decided>
## Decisions
<bullet list — only firm decisions, not discussions>
## Action items (new)
<bullet list with owner + due — bold the action text>
## Resolved this meeting
<bullet list of prior actions marked done. Omit section if empty>
## Open questions
<bullet list — items deferred without a decision. Omit section if empty>
write_artifact (actions.csv then recap.md).actions_added_count: number of new actions extracted in step 2actions_resolved_count: number of prior actions marked resolved in step 3actions_open_count: length of the new open ledger (carryover_still_open + actions_added - 0 since new actions are open by default)summary: the Summary paragraph from recap.md (single paragraph)_state: the new open-actions ledger (see "State you write" below)Include _state in the output JSON with the updated ledger:
{
"_state": {
"open_actions": [ ... carryover_still_open + new_actions_with_assigned_id ... ],
"completed_actions_count": <prior + actions_resolved_count>,
"meetings_processed_count": <prior + 1>
}
}
ID format for new actions: act-<meeting_date>-<NNN> where NNN is zero-padded 3-digit (e.g., act-2026-04-22-001). Use sequential numbers within the same meeting.
Carryover entries keep their original id.
Action items (new) section labeled _None this meeting._ rather than omitting it.Analyzes meeting transcripts and recordings to uncover behavioral patterns, communication insights, and actionable feedback. Identifies when you avoid conflict, use filler words, dominate conversations, or miss opportunities to listen. Perfect for professionals seeking to improve their communication and leadership skills.
Toolkit for creating animated GIFs optimized for Slack, with validators for size constraints and composable animation primitives. This skill applies when users request animated GIFs or emoji animations for Slack from descriptions like "make me a GIF for Slack of X doing Y".
Analyzes your recent Claude Code chat history to identify coding patterns, development gaps, and areas for improvement, curates relevant learning resources from HackerNews, and automatically sends a personalized growth report to your Slack DMs.
Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts. Use when users request animated GIFs for Slack like "make me a GIF of X doing Y for Slack.
A skill that creates new Claude skills and automatically shares them on Slack using Rube for seamless team collaboration and skill discovery.
Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include "automate Slack app", "control VS Code", "interact with Discord app", "test this Electron app", "connect to desktop app", or any task requiring automation of a native Electron application.
Prepare meeting materials with Notion context and Codex research; use when gathering context, drafting agendas/pre-reads, and tailoring materials to attendees.
Interactive daily standup/meeting update generator. Use when user says 'daily', 'standup', 'scrum update', 'status update', 'what did I do yesterday', 'prepare for meeting', 'morning update', or 'team sync'. Pulls activity from GitHub, Jira, and Claude Code session history. Conducts 4-question interview (yesterday, today, blockers, discussion topics) and generates formatted Markdown update.
Take skrun-dev/meeting-transcript-to-action-items from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.