Best use case

meeting-notes is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

>

Teams using meeting-notes should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/meeting-notes/SKILL.md --create-dirs "https://raw.githubusercontent.com/aAAaqwq/AGI-Super-Team/main/skills/meeting-notes/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/meeting-notes/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How meeting-notes Compares

Feature / Agentmeeting-notesStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

>

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Meeting Notes

## Overview

This skill transforms raw meeting notes, transcripts, or audio summaries into clear, structured documentation with action items, decisions, and key takeaways.

**Use Cases:**
- Converting messy handwritten notes to clean summaries
- Processing meeting transcripts
- Extracting action items and owners
- Creating meeting minutes for distribution
- Summarizing long discussions into key points

## How to Use

1. Paste your raw meeting notes, transcript, or description
2. Tell me the meeting type (standup, project review, client call, etc.)
3. Specify any required format or template
4. I'll create structured notes with action items

**Example prompts:**
- "Organize these meeting notes and extract action items"
- "Create formal meeting minutes from this transcript"
- "Summarize the key decisions from our project review"
- "Turn this brainstorm session into a structured document"

## Meeting Note Templates

### Standard Meeting Summary

```markdown
# Meeting Summary

**Meeting:** [Title]
**Date:** [Date]
**Attendees:** [Names]
**Duration:** [Time]

## Purpose
[One sentence describing meeting objective]

## Key Discussion Points
1. [Topic 1]
   - [Key point]
   - [Key point]

2. [Topic 2]
   - [Key point]
   - [Key point]

## Decisions Made
- [ ] [Decision 1]
- [ ] [Decision 2]

## Action Items
| Action | Owner | Due Date | Status |
|--------|-------|----------|--------|
| [Task] | [Name] | [Date] | Pending |

## Next Steps
- [Next meeting/milestone]

## Notes
[Any additional context or parking lot items]
```

### Quick Standup Notes

```markdown
# Daily Standup - [Date]

## [Team Member 1]
**Yesterday:** [Completed tasks]
**Today:** [Planned tasks]
**Blockers:** [Issues, if any]

## [Team Member 2]
...

## Team Blockers
- [Blocker requiring escalation]

## Announcements
- [Team-wide updates]
```

### Client Meeting Notes

```markdown
# Client Meeting Notes

**Client:** [Company Name]
**Date:** [Date]
**Our Team:** [Names]
**Client Team:** [Names]

## Meeting Objective
[Why we met]

## Client Feedback/Requests
1. [Feedback point]
2. [Request]

## Our Commitments
- [What we promised to deliver]
- [Timeline]

## Client Commitments
- [What they will provide]
- [Timeline]

## Follow-up Required
| Item | Owner | Due |
|------|-------|-----|
| [Task] | [Name] | [Date] |

## Next Meeting
[Date/Time/Agenda preview]
```

### Project Review Notes

```markdown
# Project Review: [Project Name]

**Date:** [Date]
**Phase:** [Current phase]
**Status:** 🟢 On Track / 🟡 At Risk / 🔴 Off Track

## Progress Update
- **Completed:** [Milestones achieved]
- **In Progress:** [Current work]
- **Upcoming:** [Next milestones]

## Metrics
| Metric | Target | Actual | Status |
|--------|--------|--------|--------|
| [KPI] | [Target] | [Actual] | ✅/⚠️/❌ |

## Risks & Issues
| Risk/Issue | Impact | Mitigation | Owner |
|------------|--------|------------|-------|
| [Description] | High/Med/Low | [Plan] | [Name] |

## Decisions Needed
- [Decision requiring escalation]

## Action Items
- [ ] [Task] - @[Owner] - Due: [Date]
```

## Processing Guidelines

### Extracting Action Items

Look for phrases indicating tasks:
- "We need to..." / "Someone should..."
- "Can you..." / "Will you..."
- "Let's..." / "Action:"
- Names + verbs (e.g., "John will prepare...")
- Deadlines mentioned with tasks

### Identifying Decisions

Look for:
- "We've decided..." / "The decision is..."
- "Going forward, we will..."
- "Agreed:" / "Confirmed:"
- Consensus language ("everyone agreed...")

### Determining Owners

- Explicitly named: "Sarah will handle..."
- Role-based: "The design team will..."
- Default to meeting organizer if unclear
- Flag unassigned items for follow-up

## Output Format

```markdown
## Meeting Summary: [Title]

📅 **Date:** [Date]
👥 **Attendees:** [List]

### 📋 Summary
[2-3 sentence overview]

### 💡 Key Points
1. [Point 1]
2. [Point 2]
3. [Point 3]

### ✅ Decisions
- [Decision 1]
- [Decision 2]

### 📌 Action Items
| # | Action | Owner | Due | Priority |
|---|--------|-------|-----|----------|
| 1 | [Task] | [Name] | [Date] | High/Med/Low |

### 🔜 Next Steps
- [Next meeting or milestone]

### 📝 Parking Lot
- [Items to address later]
```

## Customization Options

Tell me your preferences:
- **Format:** Bullet points, table, prose, or formal minutes
- **Detail level:** Executive summary, standard, or detailed
- **Focus:** Action items only, decisions only, or comprehensive
- **Style:** Casual team notes or formal documentation

## Limitations

- Cannot attend or record meetings
- Accuracy depends on quality of input notes
- May need clarification on ambiguous pronouns or acronyms
- Cannot verify commitments or deadlines - review before distributing

## Examples

### Example: Raw Notes to Structured Summary

**Input:**
```
product meeting 3/15
talked about launch timeline, sarah thinks we need 2 more weeks
john mentioned the bug in checkout - high priority
decided to push launch to april 1
need to update stakeholders
maria will fix the checkout bug by friday
also discussed new feature requests from customers - will prioritize next sprint
john to send customer feedback summary
```

**Output:**

## Meeting Summary: Product Launch Review

📅 **Date:** March 15, 2024
👥 **Attendees:** Sarah, John, Maria

### 📋 Summary
Reviewed launch timeline and decided to postpone launch by 2 weeks to April 1 due to critical checkout bug. Discussed customer feature requests for future prioritization.

### 💡 Key Points
1. Original launch timeline insufficient - need 2 more weeks
2. Critical checkout bug discovered - must fix before launch
3. Customer feature requests collected for next sprint prioritization

### ✅ Decisions
- Launch date moved from mid-March to **April 1**
- Checkout bug is **highest priority**
- Feature requests to be prioritized in next sprint planning

### 📌 Action Items
| # | Action | Owner | Due | Priority |
|---|--------|-------|-----|----------|
| 1 | Fix checkout bug | Maria | Friday (3/17) | 🔴 High |
| 2 | Update stakeholders on new launch date | [Unassigned] | ASAP | 🔴 High |
| 3 | Send customer feedback summary | John | [TBD] | 🟡 Medium |

### 🔜 Next Steps
- Follow-up on bug fix progress
- Stakeholder communication about timeline change
- Sprint planning to prioritize customer requests

Related Skills

meeting-insights-analyzer

33
from aAAaqwq/AGI-Super-Team

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.

longform-visual-notes

33
from aAAaqwq/AGI-Super-Team

MediaClaw内容生产的核心配图skill。当有长篇文章需要转化为可传播的视觉笔记时调用。

wemp-operator

33
from aAAaqwq/AGI-Super-Team

> 微信公众号全功能运营——草稿/发布/评论/用户/素材/群发/统计/菜单/二维码 API 封装

Content & Documentation

zsxq-smart-publish

33
from aAAaqwq/AGI-Super-Team

Publish and manage content on 知识星球 (zsxq.com). Supports talk posts, Q&A, long articles, file sharing, digest/bookmark, homework tasks, and tag management. Use when publishing content to 知识星球, creating/editing posts, uploading files/images/audio, managing digests, batch publishing, or formatting content for 知识星球.

zoom-automation

33
from aAAaqwq/AGI-Super-Team

Automate Zoom meeting creation, management, recordings, webinars, and participant tracking via Rube MCP (Composio). Always search tools first for current schemas.

zoho-crm-automation

33
from aAAaqwq/AGI-Super-Team

Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, search contacts, manage leads, and convert leads. Always search tools first for current schemas.

ziliu-publisher

33
from aAAaqwq/AGI-Super-Team

字流(Ziliu) - AI驱动的多平台内容分发工具。用于一次创作、智能适配排版、一键分发到16+平台(公众号/知乎/小红书/B站/抖音/微博/X等)。当用户需要多平台发布、内容排版、格式适配时使用。触发词:字流、ziliu、多平台发布、一键分发、内容分发、排版发布。

zhihu-post-skill

33
from aAAaqwq/AGI-Super-Team

> 知乎文章发布——知乎平台内容创作与发布自动化

zendesk-automation

33
from aAAaqwq/AGI-Super-Team

Automate Zendesk tasks via Rube MCP (Composio): tickets, users, organizations, replies. Always search tools first for current schemas.

youtube-knowledge-extractor

33
from aAAaqwq/AGI-Super-Team

This skill performs deep analysis of YouTube videos through **both information channels** Multimodal YouTube video analysis through both audio (transcript) and visual (frame extraction + image analysis) channels. Especially powerful for HowTo videos, tutorials, demos, and explainer videos where what is SHOWN (screenshots, UI demos, diagrams, code, physical actions) is just as important as what is SAID. Use this skill whenever a user wants to analyze, summarize, or create step-by-step guides from YouTube videos, or when they share a YouTube URL and want to understand what happens in the video. Triggers on requests like "Analyze this YouTube video", "Create a step-by-step guide from this video", "What does this video show?", "Summarize this tutorial", or any YouTube URL shared with analysis intent.

youtube-factory

33
from aAAaqwq/AGI-Super-Team

Generate complete YouTube videos from a single prompt - script, voiceover, stock footage, captions, thumbnail. Self-contained, no external modules. 100% free tools.

youtube-automation

33
from aAAaqwq/AGI-Super-Team

Automate YouTube tasks via Rube MCP (Composio): upload videos, manage playlists, search content, get analytics, and handle comments. Always search tools first for current schemas.