lark-note

Query Feishu meeting note details and unified transcripts by note_id via lark-cli.

3|2|Updated Jul 21, 2026
One-click install
npx skills add https://github.com/zlsbksdxl/codex-lark --skill lark-note-zlsbksdxl
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lark-note
Source: https://github.com/zlsbksdxl/codex-lark/tree/main/plugins/feishu2codex/skills/lark-note
Command: npx skills add https://github.com/zlsbksdxl/codex-lark --skill lark-note-zlsbksdxl

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? When you already hold a Feishu meeting note ID, you still need to resolve its display type, locate the underlying document tokens (AI summary, verbatim transcript, shared docs), and fetch unified raw transcripts—tasks that require knowing the correct lark-cli note commands and routing rules. ## Core Features & Use Cases - Note Detail Lookup: Run note +detail --note-id to retrieve note_display_type, note_doc_token, verbatim_doc_token, and shared document tokens. - Unified Transcript Retrieval: Run note +transcript --note-id to pull the full raw verbatim record for unified-type notes, saved locally as Markdown or plain text. - Routing Discipline: Enforces strict domain boundaries—deriving note_id only from explicit user input, vc-node-id in fetched docs, or upstream vc/minutes/calendar lookups, never reverse-engineering it from doc tokens or titles. - Use Case: A user has a note_id from a meeting detail query and wants the verbatim transcript; the Skill checks note_display_type, then either fetches the verbatim doc via docs or pulls the unified transcript. ## Quick Start Ask the assistant to look up the meeting note details and transcript for a given note_id using the lark-note skill.

Frequently Asked Questions about lark-note

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get a Feishu meeting note's document tokens from a note_id?

Run lark-cli note +detail --note-id <note_id> with user identity. The response returns note_doc_token for the AI summary, verbatim_doc_token for the transcript doc, and shared_doc_tokens for in-meeting shared documents.

How to fetch the verbatim transcript of a Lark meeting note?

First check note_display_type via note +detail. For unified notes, run note +transcript --note-id; for normal notes, read the verbatim_doc_token with docs +fetch instead.

Can I find a note_id from a document token or title?

No. The note domain only accepts an explicit note_id from the user or a vc-node-id found in a fetched document's vc-transcribe-tab element. Never derive note_id from doc_token, titles, or backlinks.

What if I only have a meeting_id or minute_token instead of a note_id?

Use vc +detail --meeting-ids to resolve a meeting_id, or minutes +detail --minute-tokens for a minute_token; both return the note_id, which you then pass to note +detail.

Why does note +transcript fail or refuse to run?

The command only works when note_display_type is unified; it validates this first and skips non-unified notes. It also fails if the output file already exists unless you pass --overwrite.