Install
openclaw skills install meeting-minutes-workflowGenerate structured meeting minutes from discussion notes, sync to Feishu docs, and manage action items. Use when the user says "写会议纪要", "生成会议记录", "meeting minutes", "sync minutes to Feishu", or provides meeting notes/discussion context that needs to be structured into a formal document. Also use when the user wants to create meeting minutes templates, customize meeting formats, or track action items from meetings.
openclaw skills install meeting-minutes-workflowGenerate structured meeting minutes, sync to Feishu, and track action items.
assets/template.md as the base; fill placeholders with provided dataRead assets/template.md for the full template. Key sections:
| Type | Focus |
|---|---|
| brainstorming | Ideas, no decisions yet |
| planning | Goals, milestones, assignments |
| review | Progress, blockers, adjustments |
| retro | What worked, what didn't, improvements |
When the feishu-doc skill is available:
python3 .claude/skills/feishu-doc/scripts/doc_ctl.py create "会议纪要 - {title} ({date})" --content "{rendered_content}"
Use --share or --owner to grant access to attendees.
After rendering, extract action items as structured data:
{
"items": [
{"item": "...", "owner": "...", "deadline": "...", "status": "pending"}
]
}
Save to memory/action-items-{date}.json for follow-up tracking.
assets/template.md to change the template structure