
Lark Note
FreeQuickly access meeting notes and transcripts using note_id.
Free · Opens the source repo
What Lark Note does
Lark Note is a command-line skill designed to streamline the retrieval of meeting notes generated in Lark's video conferencing platform. By utilizing a known note_id, users can obtain detailed information about meeting minutes, including associated document tokens and verbatim transcripts. This skill is particularly useful for users who need to reference or analyze meeting outcomes without navigating through multiple interfaces.
To use Lark Note, users must first acquire a note_id, which can be obtained through other Lark skills such as vc +detail. Once the note_id is available, commands like note +detail --note-id NOTE_ID can be executed to fetch the relevant details. The skill is designed to work exclusively with note_id, ensuring that users have a precise and direct method of accessing their meeting notes without ambiguity.
Lark Note also handles various scenarios, such as retrieving unified transcripts or identifying the type of notes based on the display type returned. It is essential for users to understand the relationships between meeting products and their respective identifiers, as this knowledge is crucial for effective command execution. The skill does not cover locating notes by other identifiers like meeting_id or minute_token, which are managed by different skills within the Lark ecosystem.
This skill is ideal for developers and designers who frequently participate in meetings and require quick access to structured meeting summaries and verbatim records. By integrating Lark Note into their workflow, users can enhance their productivity and ensure they have the necessary information at their fingertips.
When to use it
Use this skill when you have a `note_id` and need to retrieve meeting details or transcripts quickly.
When not to use it
This skill is not suitable for users looking to search for notes by meeting IDs, minute tokens, or natural language titles, as those functionalities are handled by other skills.
What you can build with it
Retrieve Meeting Notes
Use `note +detail --note-id NOTE_ID` to get detailed information about a specific meeting note.
Access Verbatim Transcripts
Execute `note +transcript --note-id NOTE_ID` to obtain the verbatim record of the meeting.
Fetch Document Tokens
After acquiring a note_id, use it to fetch document tokens for further processing with Lark's document tools.
How to install Lark Note
View source1. Install with the skills CLI
npx skills add larksuite/cli/lark-note --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by larksuitenote (v1)
身份:仅使用 --as user。使用前阅读 ../lark-shared/SKILL.md。
CRITICAL — 开始前 MUST 先用 Read 工具读取 ../lark-vc/references/vc-domain-boundaries.md,不读将导致命令使用、会议产物决策、领域边界职责判断错误:
- 了解日历 & VC、会议产物 & 文档的关联关系和职责划分
- 了解会议产物(妙记和纪要)之间的关联关系,例如:妙记和纪要产生条件相互独立
- 了解不同会议产物的组成部分,以便根据需求决策使用哪种产物的数据
Note 域只接受显式 note_id:用户直接提供,或 docs +fetch 返回的 <vc-transcribe-tab vc-node-id="..."> 中的 vc-node-id。不要从 doc_token、标题、正文或 backlink 反推 note_id。
命令路由
| 用户表达 / 上下文 | 路由 |
|---|---|
已知 note_id,查纪要类型 / 文档 token | note +detail --note-id NOTE_ID |
docs +fetch 返回 <vc-transcribe-tab vc-node-id="..."> | 取 vc-node-id 作为 NOTE_ID,先 note +detail --note-id NOTE_ID |
只持有 meeting_id | 先 vc +detail --meeting-ids <id> 拿 note_id,再 note +detail --note-id NOTE_ID |
只持有 minute_token(妙记 URL) | 先 minutes +detail --minute-tokens <token> 顶层取 note_id,再 note +detail --note-id NOTE_ID(不要把 minute_token 当 note_id) |
只持有日程 event_id | 先 calendar +meeting --event-ids <id> 拿 meeting_id,再按上一行继续 |
已知 note_id,读纪要正文 | note +detail → docs +fetch --doc <note_doc_token> |
已知 note_id,查 unified 原始记录 / 逐字稿 | note +transcript --note-id NOTE_ID |
| 只有自然语言纪要标题,用户要逐字稿 / 原始记录 / 谁说了什么 | 不进本 skill;先走文档搜索与 docs +fetch,拿到 vc-node-id 后再回来 |
note_display_type 路由
note +detail 结果 | 用户要逐字稿 / 原始记录时 |
|---|---|
normal + verbatim_doc_token 非空 | docs +fetch --doc <verbatim_doc_token> |
unknown + verbatim_doc_token 非空 | 先按独立文档处理;不要猜成 unified |
unknown + 无逐字稿 token | 停止重试并说明无法确定逐字稿入口 |
unified | note +transcript --note-id <note_id> |
判别键是 note_display_type,不是 verbatim_doc_token 是否为空:unified 纪要也可能返回非空 verbatim_doc_token。
关键字段
note_id:Note 域唯一入口。note_display_type:unknown/normal/unified。note_doc_token:纪要正文文档,正文读取交给 lark-doc。verbatim_doc_token:普通纪要逐字稿文档;unified 逐字稿不按这个 token 路由。
不在本 Skill 范围
- 通过
meeting_id定位纪要(note_id)→ lark-vc(vc +detail)。 - 通过
minute_token定位纪要(note_id)→ lark-minutes(minutes +detail顶层返回note_id)。 - 通过日程
event_id定位会议(meeting_id) / 用户绑定纪要(meeting_note) → lark-calendar(calendar +meeting)。 - 自然语言纪要标题搜索 → lark-drive / lark-doc。
- Docx 正文读取 → lark-doc。
- 妙记基础信息与媒体文件 → lark-minutes。
Shortcuts
| Shortcut | 何时读 reference |
|---|---|
+detail | 需要解释输出字段或根据展示类型继续路由 |
+transcript | 需要拉取 unified 原始记录或处理本地输出文件 |
核心概念
- 会议纪要(Note):视频会议结束后生成的结构化文档,通过
note_id标识。一个 Note 包含 AI 智能纪要文档、逐字稿文档和会中共享文档。 - note_id:纪要的唯一标识符,可通过
vc +detail --meeting-ids获取。 - AI 智能纪要(MainDoc):AI 生成的会议总结与待办,对应
note_doc_token。 - 逐字稿(VerbatimDoc):会议的逐句发言记录,含说话人和时间戳,对应
verbatim_doc_token。 - 共享文档(SharedDoc):会中投屏共享的文档,对应
shared_doc_tokens。
核心场景
1. 通过 note_id 获取纪要文档 Token
- 当用户已有
note_id,需要获取对应的note_doc_token、verbatim_doc_token或shared_doc_tokens时,使用note +detail。 note_id通常来自vc +detail的返回结果。- 获取到文档 Token 后,可使用
docs +fetch读取文档内容,或使用drive metas batch_query获取文档元信息。
# 1. 从会议获取 note_id
lark-cli vc +detail --meeting-ids <meeting_id>
# 2. 用 note_id 拿文档 Token
lark-cli note +detail --note-id <note_id>
# 3. 读取纪要文档内容
lark-cli docs +fetch --doc <note_doc_token> --doc-format markdown
Frequently asked questions about Lark Note
Similar skills
Napkin
Collaborate visually with Copilot using an interactive whiteboard.
Mode Creator
Custom note-taking modes for claude-mem.
Google Meet Assistant
Join, transcribe, and interact in Google Meet calls.
Memory Keeper
Organize lessons learned into reusable knowledge.
Meeting Minutes
Generate concise, actionable meeting minutes effortlessly.
Brag Sheet
Transform your work into impactful statements for reviews.
