AI Skill
Fail
Audit score 45

lark-workflow-meeting-summary

larksuite/cli

Aggregate and summarize Lark meeting notes for a given time range into a structured report

What is lark-workflow-meeting-summary?

A workflow skill for coding agents that queries Lark (Feishu) meeting records within a specified date range, retrieves associated meeting notes and transcripts, and compiles them into a structured summary report. Optionally saves the report as a Lark cloud document. Requires lark-cli and user-level authentication against the vc and optionally drive domains.

  • Searches Lark VC meeting records by date range (default: past 7 days)
  • Retrieves note IDs and document tokens for each meeting via vc +detail and note +detail
  • Fetches document URLs for meeting notes and verbatim transcripts via drive metas batch_query
  • Handles pagination automatically and batches API calls within documented limits
  • Generates a structured report (single-day overview or multi-day weekly format)
  • Optionally creates or appends the report to a Lark cloud document

How to install lark-workflow-meeting-summary

npx skills add null --skill lark-workflow-meeting-summary
Prerequisites
  • lark-cli must be installed and available in PATH
  • User must authenticate: lark-cli auth login --domain vc (basic queries and notes)
  • For reading note document body or creating output docs: lark-cli auth login --domain vc,drive
  • Only user identity is supported (not bot/service account)
  • Dependent skills lark-shared, lark-vc, lark-note, and lark-doc must be accessible for the agent to read
Claude Code
Cursor
Windsurf
Cline

How to use lark-workflow-meeting-summary

  1. 1.Install the skill: npx skills add null --skill lark-workflow-meeting-summary
  2. 2.Ensure lark-cli is installed and authenticated with at least the vc domain
  3. 3.Ask the agent to summarize meetings, e.g. 'Summarize this week's meeting notes' or 'Generate a meeting weekly report'
  4. 4.Specify a time range if needed (today, this week, last week, a specific date range)
  5. 5.The agent will search meetings, retrieve note tokens, and fetch document URLs automatically
  6. 6.Review the structured report output in the chat (single-day or weekly format)
  7. 7.Optionally ask the agent to save the report to a Lark doc by specifying a target document or requesting creation of a new one
  8. 8.If a meeting shows 'no notes available', it will be listed with a '无纪要' annotation in the report

Use cases

Good for
  • Generating a weekly meeting notes digest
  • Reviewing all meetings held on a specific day
  • Summarizing meetings from the past month
  • Creating a Lark doc containing a structured meeting report
  • Auditing which meetings produced notes vs. no notes
Who it's for
  • Individuals who regularly attend many Lark meetings and need summaries
  • Team leads compiling weekly meeting reports
  • Assistants or PMs tracking meeting outcomes over time
  • Anyone using Claude Code or Cursor with Lark (Feishu) integrations

lark-workflow-meeting-summary FAQ

What is the maximum date range supported in a single search query?

The vc +search command supports a maximum range of 1 month per query. For longer ranges, the skill splits the request into multiple monthly queries.

What happens if a meeting has no associated notes?

Meetings without a note_id or that return 'no notes available' are included in the report with a '无纪要' (no notes) annotation.

What is the difference between 'normal' and 'unified' note types?

For 'normal' notes, the verbatim transcript is a separate document accessible via verbatim_doc_token. For 'unified' notes, there is no standalone transcript document link; the transcript must be fetched locally using note +transcript.

Is bot or service account authentication supported?

No. This skill only supports user identity authentication via lark-cli auth login.

Can the report be saved as a Lark document?

Yes, if the user requests it and the drive domain is authorized, the agent can create a new Lark doc or append to an existing one using lark-cli docs +create or docs +update.

Full instructions (SKILL.md)

Source of truth, from larksuite/cli.


name: lark-workflow-meeting-summary version: 1.0.0 description: "会议纪要整理工作流:汇总指定时间范围内的会议纪要并生成结构化报告。当用户需要整理会议纪要、生成会议周报、回顾一段时间内的会议内容时使用。" metadata: requires: bins: ["lark-cli"]

会议纪要汇总工作流

CRITICAL — 开始前 MUST 先用 Read 工具读取 ../lark-shared/SKILL.md,其中包含认证、权限处理。然后阅读 ../lark-vc/SKILL.md,了解会议纪要相关操作。

CRITICAL — 开始前 MUST 先用 Read 工具读取 ../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 +detail ──► 获取 note_id 
                   │
                   ▼
               note +detail ──► 纪要文档 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. 查询会议关联的纪要信息
# 首先获取 note_id 和 minute_token
lark-cli vc +detail --meeting-ids "id1,id2,...,idN"

# 然后用 note_id 获取文档 tokens(如有多个需分别获取)
lark-cli note +detail --note-id "note_id"
  • 根据上一步搜集到的 meeting-id 查询。
  • 单次最多查询 50 个,超过 50 个需分批调用。
  • 部分会议没有 note_id 或报错 no notes available,在最终输出中标注"无纪要"。
  • 记录每个纪要的 note_id(纪要 ID)、note_display_type(展示类型:unknown / normal / unified)、note_doc_token(纪要文档 Token)和 verbatim_doc_token(逐字稿文档 Token)。

逐字稿路由按 note_display_type 决定(详见 vc-domain-boundaries.md 的 Note 域):

  • normal:逐字稿是独立文档,链接/正文走 verbatim_doc_token
  • unified:逐字稿不是独立文档,没有可分享的逐字稿文档链接;需要逐字稿内容时用 note +transcript --note-id <note_id>lark-note)拉取到本地,报告中标注"unified 纪要"即可。
  1. 获取纪要文档和逐字稿文档链接
# 学习命令使用方式
lark-cli schema drive.metas.batch_query

# 批量获取纪要文档与逐字稿链接: 一次最多查询 10 个文档
# 仅对 note_doc_token 与 normal 纪要的 verbatim_doc_token 查询链接
lark-cli drive metas batch_query --data '{"request_docs": [{"doc_type": "docx", "doc_token": "<doc_token>"}], "with_url": true}'

Step 4: 整理纪要报告

根据时间跨度选择输出格式:

  • 单日汇总("今天"/"昨天"):用"今日会议概览"标题,逐会议列出会议时间、主题、纪要链接、逐字稿链接(unified 纪要无逐字稿链接,标注"unified 纪要,逐字稿需 note +transcript 拉取")。
  • 多日/周报("这周"/"过去 7 天"等):用"会议纪要周报"标题,含概览统计、逐会议详情。

Step 5: 生成文档(可选,用户要求时)

阅读 ../lark-doc/SKILL.md 学习云文档技能。

lark-cli docs +create --doc-format markdown --content $'<title>会议纪要汇总 (<start> - <end>)</title>\n<内容>'
# 或追加到已有文档
lark-cli docs +update --doc "<url_or_token>" --command append --doc-format markdown --content $'<内容>'

参考

  • lark-shared — 认证、权限(必读)
  • lark-vc+search+detail 详细用法
  • lark-notenote +detailnote +transcript(unified 纪要逐字稿)
  • lark-doc+fetch+create+update 详细用法

Related skills

More from larksuite/cli and the wider catalog.

LA

lark-doc

larksuite/cli

飞书云文档(Docx / Wiki 文档):读取和编辑飞书文档内容。当用户给出文档 URL 或 token,或需要查看、创建、编辑文档、插入或下载文档图片附件时使用。文档中嵌入的电子表格、多维表格、画板,先用本 skill 提取 token 再切到对应 skill。当用户给出 doubao.com 的 /docx/ 或 /wiki/ URL/token 时,也应直接使用本 skill;路由依据是 URL 路径模式和 token,而不是域名。不负责文档评论管理,也不负责表格或 Base 的数据操作。

293k installs
LA

lark-base

larksuite/cli

飞书多维表格(Base)操作:建表、字段、记录、视图、统计、公式/lookup、表单、仪表盘、workflow、角色权限;遇到 Base/多维表格/bitable 或 /base/ 链接时使用。文件导入转 lark-drive,认证/授权转 lark-shared。

292k installs
LA

lark-im

larksuite/cli

飞书即时通讯:收发消息和管理群聊。发送和回复消息、搜索聊天记录、管理群聊成员、上传下载图片和文件(支持大文件分片下载)、管理表情回复、发送应用内/短信/电话加急、发送和处理交互卡片(Interactive Card)、监听卡片按钮回调(card.action.trigger)。当用户需要发消息、查看或搜索聊天记录、下载聊天中的文件、查看群成员、搜索群、创建群聊或话题群、管理标记数据、管理 Feed 置顶(添加/移除/查询置顶会话)、管理标签数据、处理卡片回调时使用。

292k installs
LA

lark-drive

larksuite/cli

飞书云空间(云盘/云存储):管理 Drive 文件和文件夹,包含上传/下载、创建文件夹、复制/移动/删除、查看元数据、评论/权限/订阅、标题、版本和本地文件导入。用户需要整理云盘目录、处理云空间资源 URL/token,或导入 Word/Markdown/Excel/CSV/PPTX/.base 为 docx/sheet/bitable/slides 时使用;doubao.com 云空间 URL/token 也按资源路径和 token 路由,不回退 WebFetch。不负责:文档内容编辑(走 lark-doc)、表格/Base 表内数据操作(走 lark-sheets/lark-base)、知识空间节点/成员管理(走 lark-wiki)、原生 Markdown 文件读写/patch/diff(走 lark-markdown)。

292k installsAudited
LA

lark-shared

larksuite/cli

Use for lark-cli setup/auth tasks: auth login/status/logout, user vs bot identity, business-domain permissions (--domain, including all/docs/drive), missing scopes, revoking authorization, or handling _notice JSON.

291k installsAudited
LA

lark-calendar

larksuite/cli

飞书日历:管理日历日程和会议室。查看/搜索日程、创建/更新日程、管理参会人、查询忙闲和推荐时段、预定会议室。当用户需要查看日程安排、创建/修改会议、查询/预定会议室时使用。不负责:查询过去的视频会议记录(走 lark-vc)、待办任务(走 lark-task)。

291k installsAudited