AgentSkillsCN

meetings

AI驱动的会议纪要管理。从Recall.ai同步纪要、搜索纪要、生成摘要、跟踪行动项、列出参会人员,并支持自然语言查询会议内容。

SKILL.md
--- frontmatter
name: meetings
description: AI-powered meeting transcript management. Sync from Recall.ai, search transcripts, generate summaries, track action items, list participants, and query meetings with natural language.

This skill provides meeting transcript management through the MeetingsMCP system.

Setup

Before using, run setup to configure your API keys:

bash
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py setup

Executing Commands

Run meetings commands using:

bash
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py $ARGUMENTS

Where $ARGUMENTS is the command and its options.

Available Commands

CommandDescription
setupCheck setup status or configure API keys
syncSync new meetings from Recall.ai
search <query>Search meeting transcripts
ask <question>Ask a natural language question about your meetings
summary <period>Generate a summary for a time period
actionsList action items from meetings
listList recent meetings
participantsList all meeting participants
show <id>Show details for a specific meeting
decisionsFind decisions made in meetings
statsShow meeting statistics
auto-syncManage automatic background syncing
helpShow all available commands

Examples

List all participants

bash
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py participants

List meetings with a specific person

bash
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py list --participant "Sarah"

Search transcripts

bash
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py search "pricing discussion" --date "this week"

Ask a question about meetings

bash
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py ask "What did we decide about the roadmap?"

Generate a weekly summary

bash
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py summary "last week" --focus "product decisions"

Show statistics

bash
cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python skill/run.py stats

Date Filters

Supported date filters for --date option:

  • today, yesterday
  • this week, last week
  • this month, last month
  • last N days (e.g., "last 7 days")
  • YYYY-MM-DD (specific date)
  • Month names (e.g., "January", "Feb")

Requirements

  • Python 3.11+
  • API keys for: Recall.ai, OpenAI (embeddings), Anthropic (Claude)
  • Virtual environment with dependencies installed

Run python setup.py for guided installation.