
Lark Workflow Meeting Summary
- 385k installs
- 15.9k repo stars
- Updated July 28, 2026
- larksuite/cli
This is a copy of lark-workflow-meeting-summary by open.feishu.cn - installs and ranking accrue to the original listing.
lark-workflow-meeting-summary is a Lark CLI workflow skill that collects and summarizes Feishu meetings across a date range into structured weekly reports for developers who automate meeting retrospectives.
About
lark-workflow-meeting-summary is a version 1.0.0 workflow skill in larksuite/cli that aggregates Lark (Feishu) meeting minutes across a chosen time window into structured reports. It orchestrates lark-vc commands after agents read lark-shared for auth and lark-vc plus vc-domain-boundaries.md for calendar versus VC responsibilities and minutes versus 妙记 product boundaries. Developers invoke it for weekly meeting digests, sprint review rollups, or retrospective packets without manually opening each meeting record. The workflow encodes standard steps for searching ended meetings, selecting the right artifact type, and extracting summaries and action items. Misreading domain boundaries leads to wrong commands or duplicate data from independent minutes sources.
- Automatically aggregates meeting notes and minutes across a user-defined time window
- Supports natural language time references such as 'this week', 'last week', or 'today'
- Follows a 4-step workflow: search meetings → fetch notes → retrieve document metadata → generate structured report
- Requires reading domain boundary rules before execution to avoid incorrect meeting-product decisions
- Supports both basic VC auth and extended VC+Drive auth for full document content access
Lark Workflow Meeting Summary by the numbers
- 384,715 all-time installs (skills.sh)
- Security screen: HIGH risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/larksuite/cli --skill lark-workflow-meeting-summaryAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 385k |
|---|---|
| repo stars | ★ 15.9k |
| Security audit | 2 / 3 scanners passed |
| Last updated | July 28, 2026 |
| Repository | larksuite/cli ↗ |
How do you summarize Lark meetings into a weekly report?
Automatically collect, organize, and summarize Lark meetings from a chosen date range into structured weekly reports.
Who is it for?
Developers generating Feishu meeting weekly digests who need orchestrated lark-vc queries across a defined time window.
Skip if: Single-meeting transcript downloads or raw media export should use lark-vc or lark-minutes directly instead of this multi-step workflow.
When should I use this skill?
User asks to organize meeting notes, generate a meeting weekly report, or review meetings from a specific week or range.
What you get
Structured meeting summary reports with consolidated action items, chapters, and decisions from the selected date range.
- structured meeting summary report
- consolidated action items
By the numbers
- Published as version 1.0.0 workflow skill in larksuite/cli
- Chains lark-shared, lark-vc, and vc-domain-boundaries reference docs
Files
会议纪要汇总工作流
CRITICAL — 开始前 MUST 先用 Read 工具读取 [`../lark-shared/SKILL.md`](../lark-shared/SKILL.md),其中包含认证、权限处理。然后阅读 `../lark-vc/SKILL.md`,了解会议纪要相关操作。
CRITICAL — 开始前 MUST 先用 Read 工具读取 [`../lark-vc/references/vc-domain-boundaries.md`](../lark-vc/references/vc-domain-boundaries.md),不读将导致命令使用、会议产物决策、领域边界职责判断错误:
1. 了解日历 & VC、会议产物 & 文档的关联关系和职责划分
2. 了解会议产物(妙记和纪要)之间的关联关系,例如:妙记和纪要产生条件相互独立
3. 了解不同会议产物的组成部分,以便根据需求决策使用哪种产物的数据
4. 了解会议总结、分析和信息提取的标准流程
适用场景
- "帮我整理这周的会议纪要" / "总结最近的会议" / "生成会议周报"
- "看看今天开了哪些会" / "回顾过去一周开了哪些会"
前置条件
仅支持 user 身份。执行前确保已授权:
lark-cli auth login --domain vc # 基础(查询+纪要)
lark-cli auth login --domain vc,drive # 含读取纪要文档正文、生成文档工作流
{时间范围} ─► vc +search ──► 会议列表 (meeting_ids)
│
▼
vc +notes ──► 纪要文档 tokens
│
▼
drive metas batch_query 纪要元数据
│
▼
结构化报告Step 1: 确定时间范围
默认过去 7 天。推断规则:"今天"→当天,"这周"→本周一~now,"上周"→上周一~上周日,"这个月"→1日~now。
注意:日期转换必须调用系统命令(如date),不要心算。时间范围参数需根据 CLI 实际要求格式化(通常为YYYY-MM-DD或 ISO 8601)。
Step 2: 查询会议记录
# page-size 最大为 30
lark-cli vc +search --start "<YYYY-MM-DD>" --end "<YYYY-MM-DD>" --format json --page-size 30- 时间范围拆分:搜索的时间范围最大为 1 个月。搜索更长时间范围的会议,需要拆分为多次时间范围为一个月查询。
--end为包含当天的日期(即查"今天"时 start 和 end 都填今天)--format json输出 JSON 格式,你更佳擅长解析 JSON 数据。--page-size 30每页最多 30 条。- 有
page_token时必须继续翻页,收集所有id字段(meeting-id)
Step 3: 获取纪要元数据
1. 查询会议关联的纪要信息
lark-cli vc +notes --meeting-ids "id1,id2,...,idN" - 根据上一步搜集到的
meeting-id查询会议纪要。 - 单次最多查询 50 个纪要信息,超过 50 个需分批调用。
- 部分会议返回
no notes available,在最终输出中标注"无纪要" - 记录每个会议的
note_doc_token(纪要文档 Token)和verbatim_doc_token(逐字稿文档 Token)
2. 获取纪要文档和逐字稿文档链接
# 学习命令使用方式
lark-cli schema drive.metas.batch_query
# 批量获取纪要文档与逐字稿链接: 一次最多查询 10 个文档
lark-cli drive metas batch_query --data '{"request_docs": [{"doc_type": "docx", "doc_token": "<doc_token>"}], "with_url": true}'Step 4: 整理纪要报告
根据时间跨度选择输出格式:
- 单日汇总("今天"/"昨天"):用"今日会议概览"标题,逐会议列出会议时间、主题、纪要链接、逐字稿链接。
- 多日/周报("这周"/"过去 7 天"等):用"会议纪要周报"标题,含概览统计、逐会议详情。
Step 5: 生成文档(可选,用户要求时)
阅读 `../lark-doc/SKILL.md` 学习云文档技能。
lark-cli docs +create --api-version v2 --doc-format markdown --content $'<title>会议纪要汇总 (<start> - <end>)</title>\n<内容>'
# 或追加到已有文档
lark-cli docs +update --api-version v2 --doc "<url_or_token>" --command append --doc-format markdown --content $'<内容>'参考
- lark-shared — 认证、权限(必读)
- lark-vc —
+search、+notes详细用法 - lark-doc —
+fetch、+create、+update详细用法
Related skills
FAQ
Which skills must run before lark-workflow-meeting-summary?
lark-workflow-meeting-summary requires reading lark-shared for authentication, lark-vc for meeting commands, and vc-domain-boundaries.md to choose correct VC versus calendar artifacts and minutes versus 妙记 data.
What does lark-workflow-meeting-summary output?
lark-workflow-meeting-summary outputs a structured report consolidating meeting summaries, decisions, and action items gathered from ended Lark meetings within the user-specified date range.
Is Lark Workflow Meeting Summary safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.