Agents Directory
SkillsRankingsAgents
CategoriesModelsBenchmarksCompareAgent LeaderboardSkillsRankingsAgentsAbout

lark-vc

SkillCommunityTranslated from Chinese

This skill enables agents to interact with Lark video conferencing data. It provides capabilities to search historical meeting records, retrieve meeting summaries, action items, transcripts, and participant snapshots.

Compatibility:
Claude Code logoClaude CodeCodex logoCodexHermes logoHermesOpenClaw logoOpenClaw
Visit lark-vc
Install:
npx skills add open.feishu.cn/lark-vc
View on skills.sh

vc (v1)

CRITICAL, Before starting, you MUST use the Read tool to read ../lark-shared/SKILL.md, which contains authentication and permission handling.

CRITICAL, Before starting, you MUST use the Read tool to read references/vc-domain-boundaries.md. Failure to read this will lead to errors in command usage, meeting artifact decision-making, and domain boundary responsibility judgment:

  1. Understand the relationship and division of responsibilities between Calendar & VC, and Meeting Artifacts & Documents.
  2. Understand the relationship between meeting artifacts (Minutes and Notes), for example: Minutes and Notes are generated independently.
  3. Understand the components of different meeting artifacts to decide which artifact data to use based on requirements.
  4. Understand the standard process for meeting summarization, analysis, and information extraction.

Identity

All vc commands use --as user by default. +search and meeting get also support --as bot.

# BAD, Use calendar to check yesterday's meetings, as it will miss instant meetings
lark-cli calendar events search_event --query "standup" --start-time ...

# GOOD, Use vc +search to check finished meetings
lark-cli vc +search --query "standup" --start-time ...

Shortcuts (Recommended for priority use)

ShortcutDescription
+searchSearch historical meeting records (requires at least one filter condition)
+notesQuery meeting notes and minutes artifacts (via meeting-ids, minute-tokens, or calendar-event-ids)
+recordingQuery minute_token via meeting-ids or calendar-event-ids
  • Before using any Shortcut, you must read its corresponding reference document.

Intent Routing

User IntentRoute to
Search "yesterday's meetings", "last week's meetings", "finished meetings"This skill (+search, includes instant meetings)
Search calendar/schedule or future meetingslark-calendar
Search "what meetings are there today"vc +search (finished) + lark-calendar (not started), display merged
Search "verbatim transcript / original record / who said what" by natural language titleFirst go to lark-drive / lark-doc; only go to lark-note after obtaining note_id / vc-node-id
Agent real join/leave, real-time in-meeting eventslark-vc-agent
Convert local audio/video files to notes/transcriptsFirst go to lark-minutes to upload, then return to vc +notes --minute-tokens

Core Concepts

  • Meeting: Lark video meeting instance, identified by meeting_id. Finished meetings support searching by keywords, time range, participants, organizer, meeting room, etc. (see +search).
  • Note: Structured document generated after a video meeting, identified by note_id, containing note documents (summary, to-dos) and verbatim transcript documents. note_display_type distinguishes between normal notes (normal) and unified notes. For direct queries with a known note_id and unified original records, use lark-note.
  • Minutes: Recording artifacts from Lark video meetings or audio/video files uploaded by users. Supports transcription of video/audio, including summaries, to-dos, chapters, and text records, identified by minute_token.
  • MainDoc: The main document of AI intelligent notes, containing AI-generated summaries and to-dos, corresponding to note_doc_token.
  • MeetingNotes: Note documents actively bound to the meeting by the user, corresponding to meeting_notes. Only returned via the --calendar-event-ids path.
  • VerbatimDoc: Sentence-by-sentence text record of the meeting, including speaker and timestamp.

Artifact Selection Decision

User IntentRequired ArtifactProhibited
Extract/summarize/re-summarize/organize meeting content/review meetingOriginal conversation record (obtained via verbatim transcript routing below) or Minutes text record (Transcript), independent analysis based on original conversationProhibited from directly copying the summary of AI notes (note_doc_token) as the final output
View to-dos/chaptersAI notes (note_doc_token) or Minutes artifacts, AI to-dos are friendlier (including proposer and person in charge), chapters are more structured by topic,
View note link/document addressReturn document link only, no need to read content,
View AI summary result directlyAI notes (note_doc_token),
Who said what/complete transcriptOriginal conversation record (obtained via verbatim transcript routing below),

Verbatim Transcript Routing: First check the note_display_type returned by vc +notes, do not just check if verbatim_doc_token is empty. Specific routing is subject to +notes and lark-note.

Why must "extraction/summarization" start from the original conversation record? AI notes are the model's secondary compression of the meeting and may omit discussion details, debate processes, and implicit decisions. When a user requests "extraction" or "re-summarization", they expect an independent analysis based on the original conversation, not a re-formatting of AI artifacts.

Core Scenarios

1. Search Meeting Records

  1. Only supports searching finished meetings. For future meetings that have not started, use the lark-calendar skill.
  2. Only supports searching meeting records using filter conditions such as keywords, time range, participants, organizer, meeting room, etc. For unsupported filter conditions, prompt the user.
  3. When search results contain multiple pieces of data, be sure to pay attention to paginated data acquisition and do not miss any meeting records.
  4. When there is only a natural language note title and no meeting clues, do not treat the title as a meeting keyword; switch to document search according to the intent routing above.

2. Organize Meeting Notes

Before choosing which artifact to read, confirm that you understand the difference between the AI summary link and the recording link. If unsure, read references/vc-domain-boundaries.md.

  1. When organizing note documents, it is default to provide the note document, verbatim transcript, and Minutes link; there is no need to read the content of the note document or verbatim transcript.
  2. When the user explicitly needs to obtain summaries, to-dos, or chapter artifacts, then read the document to obtain specific content.
  3. When reading the content of intelligent notes (note_doc_token), the first <whiteboard> tag in the note document is the cover image (AI-generated summary visualization), which should be downloaded and displayed to the user:
# 1. Read note content
lark-cli docs +fetch --api-version v2 --doc <note_doc_token> --doc-format markdown
# 2. Extract the token of the first <whiteboard token="xxx"/> from the returned markdown
# 3. Download the cover image to the aggregation directory (same directory as verbatim transcript and recording, keep artifacts together)
#    Not all notes have a cover whiteboard; skip if there is no <whiteboard> tag
lark-cli docs +media-download --type whiteboard --token <whiteboard_token> --output ./minutes/<minute_token>/cover

Artifact Directory Specification: All downloaded artifacts for the same meeting (recording, verbatim transcript, cover image, etc.) are unified into the ./minutes/{minute_token}/ directory. This is consistent with the default landing points of minutes +download and vc +notes --minute-tokens, facilitating Agent aggregation. Explicit paths (such as cover images) need to be manually aligned to the same directory.

Note-related Documents, Choose based on user intent:

  • note_doc_token → AI Intelligent Notes (AI summary + to-dos)
  • meeting_notes → User-bound meeting notes (documents actively associated with the meeting by the user, only returned via --calendar-event-ids path)
  • When the user says "verbatim transcript", "complete record", "who said what" → Route according to note_display_type, see +notes for details
  • When the user says "notes", "summary", "note content", return both note_doc_token and meeting_notes (if any)
  • When user intent is unclear, display all document links for the user to choose, rather than deciding for the user
  • If the user provides a local audio/video file and says "convert to notes" or "convert to verbatim transcript", do not start directly from vc +notes; first use minutes +upload to generate minute_url, then extract minute_token to call vc +notes --minute-tokens

3. Note Documents and Verbatim Transcript Links

  1. Note documents, verbatim transcript documents, and associated shared documents are returned using document Tokens by default.
  2. When only basic information such as document name and URL is needed, use lark-cli drive metas batch_query to query.
# Learn command usage
lark-cli schema drive.metas.batch_query

# Batch get basic document information: query up to 10 documents at a time
lark-cli drive metas batch_query --data '{"request_docs": [{"doc_type": "docx", "doc_token": "<doc_token>"}], "with_url": true}'
  1. When document content is needed, use lark-cli docs +fetch --api-version v2.
# Get document content
lark-cli docs +fetch --api-version v2 --doc <doc_token> --doc-format markdown

4. Query Participant Snapshot (Read Operation)

When a user asks questions about participant snapshots such as "who attended this meeting", "who are the participants in this meeting", or "did so-and-so attend", use vc meeting get --with-participants: This is the participant server-side snapshot API, which does not rely on the bot identity to join the meeting, and finished meetings can also be queried:

lark-cli vc meeting get --params '{"meeting_id":"<meeting_id>","with_participants":true}'

Selection Judgment Table:

User IntentRecommended CommandSkill Location
Participant snapshot (who attended, when joined/left, at any point in time)vc meeting get --with-participantsThis skill
Speaking content of finished meetingsFirst vc +notes, then route according to note_display_typeThis skill / lark-note
Real-time event stream of ongoing meetings (transcription, chat, sharing, join/leave during meeting)vc +meeting-eventslark-vc-agent
Agent real join / leavevc +meeting-join / vc +meeting-leavelark-vc-agent

Resource Relationships

Meeting
├── Note ← identified by note_id, note_display_type: normal / unified
│   ├── MainDoc (AI Intelligent Note Document, note_doc_token)
│   ├── MeetingNotes (User-bound meeting note document, meeting_notes)
│   ├── VerbatimDoc (Verbatim Transcript, verbatim_doc_token) ← normal path
│   ├── UnifiedTranscript (Unified original record) ← unified path, note +transcript (lark-note)
│   └── SharedDoc (In-meeting shared document)
└── Minutes ← identified by minute_token, +recording obtained from meeting_id
    ├── Transcript (Text record)
    ├── Summary (Summary)
    ├── Todos (To-dos)
    ├── Chapters (Chapters)
    └── Keywords (Recommended keywords)

Minutes Boundary: +notes is responsible for note content, verbatim transcripts, and AI artifacts; for basic Minutes information, please prioritize +recording and lark-minutes.

Note Domain Boundary: vc +notes is the entry point for locating notes from meeting clues (meeting_id / calendar_event_id / minute_token), returning note_id and note_display_type.

  • Already have note_id → lark-note.
  • Already have doc_token and the goal is to read the body → lark-doc.
  • Only have natural language note title → Document search / Docx body reading; only enter lark-note if there is an explicit vc-node-id.

API Resources

lark-cli vc <resource> <method> [flags]

meeting

  • get, Get meeting details (topic, time, participants, note_id)
# Get basic meeting information (excluding participants)
lark-cli vc meeting get --params '{"meeting_id": "<meeting_id>"}'

# Get basic meeting information (including participants)
lark-cli vc meeting get --params '{"meeting_id": "<meeting_id>", "with_participants": true}'

minutes (Cross-domain, see lark-minutes for details)

  • get, Get basic Minutes information (title, duration, cover); to query Minutes content, use +notes --minute-tokens <minute-token>

Outside the Scope of This Skill

  • Query future meeting schedules → lark-calendar
  • Agent real join/leave, real-time in-meeting events → lark-vc-agent
  • Verbatim transcript query with only note document title → Document search / Docx body reading; only enter lark-note if there is an explicit vc-node-id
  • Convert local audio/video files to notes/transcripts → lark-minutes (return to vc +notes after upload)
  • Minutes search/download/upload/rename/replace speaker → lark-minutes

vc (v1)

CRITICAL — 开始前 MUST 先用 Read 工具读取 ../lark-shared/SKILL.md,其中包含认证、权限处理

CRITICAL — 开始前 MUST 先用 Read 工具读取 references/vc-domain-boundaries.md,不读将导致命令使用、会议产物决策、领域边界职责判断错误:

  1. 了解日历 & VC、会议产物 & 文档的关联关系和职责划分
  2. 了解会议产物(妙记和纪要)之间的关联关系,例如:妙记和纪要产生条件相互独立
  3. 了解不同会议产物的组成部分,以便根据需求决策使用哪种产物的数据
  4. 了解会议总结、分析和信息提取的标准流程

身份

所有 vc 命令默认使用 --as user。+search 和 meeting get 也支持 --as bot。

# BAD — 查昨天的会议用 calendar,会漏掉即时会议
lark-cli calendar events search_event --query "站会" --start-time ...

# GOOD — 查已结束的会议用 vc +search
lark-cli vc +search --query "站会" --start-time ...

Shortcuts (推荐优先使用)

Shortcut说明
+search搜索历史会议记录(需至少一个筛选条件)
+notes查询会议纪要和妙记产物(通过 meeting-ids、minute-tokens 或 calendar-event-ids)
+recording通过 meeting-ids 或 calendar-event-ids 查询 minute_token
  • 使用任何 Shortcut 前,必须先读其对应 reference 文档。

意图路由

用户意图路由到
查"昨天的会议""上周的会""已结束的会议"本 skill(+search,含即时会议)
查日历/日程或未来时间的会议lark-calendar
查"今天有哪些会议"vc +search(已结束)+ lark-calendar(未开始),合并展示
只按自然语言标题查"xx 纪要的逐字稿 / 原始记录 / 谁说了什么"先到 lark-drive / lark-doc;仅在已拿到 note_id / vc-node-id 后再到 lark-note
Agent 真实入会/离会、会中实时事件lark-vc-agent
本地音视频文件转纪要/逐字稿先走 lark-minutes 上传,再回 vc +notes --minute-tokens

核心概念

  • 视频会议(Meeting):飞书视频会议实例,通过 meeting_id 标识。已结束的会议支持通过关键词、时间段、参会人、组织者、会议室等条件搜索(见 +search)。
  • 会议纪要(Note):视频会议结束后生成的结构化文档,通过 note_id 标识,包含纪要文档(总结、待办)和逐字稿文档。note_display_type 区分**普通纪要(normal)**和 unified 纪要;已知 note_id 的直查与 unified 原始记录请用 lark-note。
  • 妙记(Minutes):来源于飞书视频会议的录制产物或用户上传的音视频文件,支持视频/音频的转写,包含总结、待办、章节和文字记录,通过 minute_token 标识。
  • 纪要文档(MainDoc):AI 智能纪要的主文档,包含 AI 生成的总结和待办,对应 note_doc_token。
  • 用户会议纪要(MeetingNotes):用户主动绑定到会议的纪要文档,对应 meeting_notes。仅通过 --calendar-event-ids 路径返回。
  • 逐字稿(VerbatimDoc):会议的逐句文字记录,包含说话人和时间戳。

产物选择决策

用户意图必须读取的产物禁止
提炼/总结/重新总结/整理会议内容/回顾会议原始对话记录(按下方逐字稿路由取得)或妙记文字记录(Transcript),基于原始对话独立分析禁止直接搬运 AI 纪要(note_doc_token)的总结作为最终输出
查看待办/章节AI 纪要(note_doc_token)或妙记产物 — AI 待办更友好(含提出人和负责人),章节按话题划分更结构化—
查看纪要链接/文档地址仅返回文档链接,无需读取内容—
直接看 AI 总结结果AI 纪要(note_doc_token)—
谁说了什么/完整发言记录原始对话记录(按下方逐字稿路由取得)—

逐字稿路由:先看 vc +notes 返回的 note_display_type,不要只看 verbatim_doc_token 是否为空。具体路由以 +notes 和 lark-note 为准。

为什么"提炼/总结"必须从原始对话记录出发? AI 纪要是模型对会议的二次压缩,可能遗漏讨论细节、争论过程和隐含决策。用户要求"提炼"或"重新总结"时,期望的是基于原始对话的独立分析,而非对 AI 产物的重新排版。

核心场景

1. 搜索会议记录

  1. 仅支持搜索已结束的会议,对于还未开始的未来会议,需要使用 lark-calendar 技能。
  2. 仅支持使用关键词、时间段、参会人、组织者、会议室等筛选条件搜索会议记录,对于不支持的筛选条件,需要提示用户。
  3. 搜索结果存在多条数据时,务必注意分页数据获取,不要遗漏任何会议记录。
  4. 只有自然语言纪要标题、没有会议线索时,不要把标题当会议关键词;按上方意图路由切到文档搜索。

2. 整理会议纪要

在选择读取哪个产物前,先确认你理解 AI 总结链路 vs 录制链路的区别。如不确定,先读 references/vc-domain-boundaries.md。

  1. 整理纪要文档时默认给出纪要文档、逐字稿、妙记链接即可,无需读取纪要文档或逐字稿内容。
  2. 用户明确需要获取总结、待办、章节产物时,再读取文档获取具体内容。
  3. 读取智能纪要(note_doc_token)内容时,纪要文档的第一个 <whiteboard> 标签是封面图(AI 生成的总结可视化),应同时下载展示给用户:
# 1. 读取纪要内容
lark-cli docs +fetch --api-version v2 --doc <note_doc_token> --doc-format markdown
# 2. 从返回的 markdown 中提取第一个 <whiteboard token="xxx"/> 的 token
# 3. 下载封面图到聚合目录(和逐字稿、录像同目录,保持产物归拢)
#    并非所有纪要都有封面画板,没有 <whiteboard> 标签时跳过即可
lark-cli docs +media-download --type whiteboard --token <whiteboard_token> --output ./minutes/<minute_token>/cover

产物目录规范:同一会议的所有下载产物(录像、逐字稿、封面图等)统一放到 ./minutes/{minute_token}/ 目录下。这与 minutes +download 和 vc +notes --minute-tokens 的默认落点保持一致,便于 Agent 聚合。显式路径(如封面图)需手动对齐到同一目录。

纪要相关文档 — 根据用户意图选择:

  • note_doc_token → AI 智能纪要(AI 总结 + 待办)
  • meeting_notes → 用户绑定的会议纪要(用户主动关联到会议的文档,仅 --calendar-event-ids 路径返回)
  • 用户说"逐字稿""完整记录""谁说了什么"时 → 按 note_display_type 路由,详见 +notes
  • 用户说"纪要""总结""纪要内容"时,应同时返回 note_doc_token 和 meeting_notes(如有)
  • 用户意图不明确时,应展示所有文档链接让用户选择,而不是替用户决定
  • 如果用户提供的是本地音视频文件并说"转纪要""转逐字稿",不要直接从 vc +notes 开始;应先用 minutes +upload 生成 minute_url,再提取 minute_token 调用 vc +notes --minute-tokens

3. 纪要文档与逐字稿链接

  1. 纪要文档、逐字稿文档与关联的共享文档默认使用文档 Token 返回。
  2. 仅需要获取文档名称和 URL 等基本信息时,使用 lark-cli drive metas batch_query 查询
# 学习命令使用方式
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}'
  1. 需要获取文档内容时,使用 lark-cli docs +fetch --api-version v2。
# 获取文档内容
lark-cli docs +fetch --api-version v2 --doc <doc_token> --doc-format markdown

4. 查询参会人快照(读操作)

用户问"谁参加过这场会议""这个会议有哪些参会人""某某参会了吗"等参会人快照类问题时,使用 vc meeting get --with-participants:这是参会人服务端快照 API,不依赖 bot 身份参会,已结束会议也可查:

lark-cli vc meeting get --params '{"meeting_id":"<meeting_id>","with_participants":true}'

选型判断表:

用户意图推荐命令所在 skill
参会人快照(谁参加过、何时入/离会,任意时点)vc meeting get --with-participants本 skill
已结束会议的发言内容先 vc +notes,再按 note_display_type 路由本 skill / lark-note
进行中会议的实时事件流(转写、聊天、共享、会中加入/离开)vc +meeting-eventslark-vc-agent
Agent 真实入会 / 离会vc +meeting-join / vc +meeting-leavelark-vc-agent

资源关系

Meeting (视频会议)
├── Note (会议纪要) ← note_id 标识,note_display_type: normal / unified
│   ├── MainDoc (AI 智能纪要文档, note_doc_token)
│   ├── MeetingNotes (用户绑定的会议纪要文档, meeting_notes)
│   ├── VerbatimDoc (逐字稿, verbatim_doc_token) ← normal 路径
│   ├── UnifiedTranscript (unified 原始记录) ← unified 路径,note +transcript(lark-note)
│   └── SharedDoc (会中共享文档)
└── Minutes (妙记) ← minute_token 标识,+recording 从 meeting_id 获取
    ├── Transcript (文字记录)
    ├── Summary (总结)
    ├── Todos (待办)
    ├── Chapters (章节)
    └── Keywords (推荐关键词)

妙记边界:+notes 负责纪要内容、逐字稿和 AI 产物;妙记基础信息请优先看 +recording 与 lark-minutes。

Note 域边界:vc +notes 是从会议线索(meeting_id / calendar_event_id / minute_token)定位纪要的入口,返回 note_id 和 note_display_type。

  • 已有 note_id → lark-note。
  • 已有 doc_token 且目标是读正文 → lark-doc。
  • 只有自然语言纪要标题 → 文档搜索 / Docx 正文读取;有显式 vc-node-id 才进入 lark-note。

API Resources

lark-cli vc <resource> <method> [flags]

meeting

  • get — 获取会议详情(主题、时间、参会人、note_id)
# 获取会议基础信息(不含参会人)
lark-cli vc meeting get --params '{"meeting_id": "<meeting_id>"}'

# 获取会议基础信息(含参会人)
lark-cli vc meeting get --params '{"meeting_id": "<meeting_id>", "with_participants": true}'

minutes(跨域,详见 lark-minutes)

  • get — 获取妙记基础信息(标题、时长、封面);查询妙记内容请用 +notes --minute-tokens <minute-token>

不在本 skill 范围

  • 查询未来的会议日程 → lark-calendar
  • Agent 真实入会/离会、会中实时事件 → lark-vc-agent
  • 只有纪要文档标题的逐字稿查询 → 文档搜索 / Docx 正文读取;有显式 vc-node-id 才进入 lark-note
  • 本地音视频文件转纪要/逐字稿 → lark-minutes(上传后回 vc +notes)
  • 妙记搜索/下载/上传/重命名/替换说话人 → lark-minutes
Categories:
Communication
Share:
Details:
  • Installs


    275,451
  • First seen


    Jun 10, 2026
View Repository

Auto-fetched from GitHub 10 hours ago.

Stats via skills.sh.

Skills similar to lark-vc:

Website favicon

 

 
 
  • Installs


Website favicon

 

 
 
  • Installs


Website favicon

 

 
 
  • Installs


Browse:SkillsRankingsModelsBenchmarksProvidersAgentsAgent LeaderboardCompareCategories
Quick Links:AboutBlog

© 2026 Agents Directory

Skills similar to lark-vc:

lark-im

Skill
This skill provides comprehensive management for Lark instant messaging, including sending and receiving messages, managing group chats, and handling file transfers. It supports both user and bot identities to perform tasks like searching chat history, managing group members, and interacting with message reactions or bookmarks.
Communication
Manage Lark instant messaging, group chats, and message interactions.
  • Installs


    264,350

lark-vc

Skill
This skill enables AI agents to interact with Lark video conferencing records. It allows agents to search past meetings, retrieve meeting notes, summaries, action items, transcripts, and participant snapshots.
Communication
Search and retrieve information from past Lark video meetings.
  • Installs


    262,520

lark-contact

Skill
This skill provides tools for interacting with the Lark contact directory. It allows agents to resolve names or emails to open_ids and retrieve user details such as department, contact information, status, and signatures.
Communication
Lark contact directory lookup and user profile retrieval.
  • Installs


    275,729