Today's Agent Skill: Meeting Summary Generator

What It Does

Most meetings produce a lot of talk and very little documentation. This skill turns any meeting transcript into a structured summary with action items, owners, and deadlines — in under 30 seconds.

How It Works

The Meeting Summary Generator skill takes a raw transcript (from Otter, Fireflies, or a simple paste) and extracts key decisions, action items with assigned owners, and unresolved questions. It outputs a clean markdown document your team can immediately drop into Slack, Notion, or email.

How to Deploy It

Deploy this as a SKILL.md in any Claude Code instance or compatible agent runner. For fully autonomous use, wire it to your transcription service via webhook so summaries generate the moment a meeting ends — no human trigger needed.

SKILL.md — Ready to Deploy

# Meeting Summary Generator

## Description
Extract structured summaries from meeting transcripts — decisions, action items, owners, deadlines, and open questions.

## Trigger
"summarize this meeting", "meeting notes from", "what were the action items"

## Input
- Raw meeting transcript (text or file path)

## Steps
1. Parse the transcript and identify speakers
2. Extract key decisions made during the meeting
3. List action items with assigned owner and deadline (if mentioned)
4. Flag unresolved questions or items needing follow-up
5. Format as structured markdown with sections: Attendees, Decisions, Action Items, Open Questions

## Output Format
```markdown
# Meeting Summary — [Topic] — [Date]

## Attendees
- [Speaker 1], [Speaker 2], ...

## Key Decisions
1. [Decision and brief context]

## Action Items
| Item | Owner | Deadline |
|------|-------|----------|
| [task] | [person] | [date] |

## Open Questions
- [Unresolved item]
```

## Notes
- Works with any transcription format (Otter, Fireflies, Google Meet, raw paste)
- If no deadlines are mentioned, flag the action item as "TBD"
- Keep summaries under 500 words unless the meeting exceeds 90 minutes

Copy the full SKILL.md file and drop it into your agent's skills directory to activate this skill.

← Back to Agent Skills | Home — CA AI Tools