Skills meeting-assistant
AI meeting assistant for agenda generation, minute taking, and action item tracking using Manager-Worker pattern.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/banxian87/ai-meeting-pro" ~/.claude/skills/openclaw-skills-meeting-assistant && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/banxian87/ai-meeting-pro" ~/.openclaw/skills/openclaw-skills-meeting-assistant && rm -rf "$T"
manifest:
skills/banxian87/ai-meeting-pro/SKILL.mdsource content
Meeting Assistant
AI-powered meeting assistant that helps you organize, conduct, and follow up on meetings efficiently.
Features
📋 Agenda Generation
- Automatic agenda creation from meeting topic
- Time allocation for each item
- Participant preparation checklist
📝 Minute Taking
- Real-time transcription support
- Key point extraction
- Decision recording
✅ Action Item Tracking
- Extract action items from discussion
- Assign owners and deadlines
- Follow-up reminders
Usage
const assistant = new MeetingAssistant(); // 创建会议议程 const agenda = await assistant.createAgenda({ topic: '产品评审会议', duration: 60, participants: 5, goals: ['评审新功能', '确定上线时间'] }); // 生成会议纪要 const minutes = await assistant.generateMinutes({ transcript: meetingTranscript, keyDecisions: ['决定上线时间'], actionItems: ['张三负责测试'] });
Installation
clawhub install meeting-assistant
License
MIT
Version
1.0.0
Created
2026-04-02