lark-vc
Original:🇨🇳 Chinese
Translated
Feishu Video Conference: Query meeting records and obtain meeting minute artifacts (summary, todos, chapters, verbatim transcript). 1. Use this skill when querying the number or details of completed meetings (e.g., meetings held yesterday | last week | today, etc.). Use the lark-calendar skill to query upcoming meeting schedules. 2. Support searching meeting records using filter conditions such as keywords, time ranges, organizers, participants, and meeting rooms. 3. Use this skill when obtaining or organizing meeting minutes.
121.9kinstalls
Sourcelarksuite/cli
Added on
NPX Install
npx skill4agent add larksuite/cli lark-vcTags
Translated version includes tags in frontmatterSKILL.md Content (Chinese)
View Translation Comparison →vc (v1)
CRITICAL — MUST use the Read tool to read before starting, which contains authentication and permission handling
../lark-shared/SKILL.mdCore Concepts
- Meeting: Feishu Video Conference instance, identified by meeting_id.
- Meeting Record: Record generated after a Feishu Video Conference ends, supporting search by filters such as keywords, time periods, participants, organizers, meeting rooms, etc.
- Note: Structured document generated after a Feishu Video Conference ends, including the minute document (containing summary, todos, chapters) and verbatim transcript document.
- Minutes: Derived from Feishu Video Conference recordings or user-uploaded audio/video files, supporting transcription and meeting minutes, identified by minute_token.
- MainDoc: Main document of meeting minutes, containing AI-generated summary and todos.
- VerbatimDoc: Sentence-by-sentence text record of the meeting, including speakers and timestamps.
Core Scenarios
1. Search Meeting Records
- Only support searching completed meetings. For upcoming meetings that haven't started yet, use the lark-calendar skill.
- Only support searching meeting records using filter conditions such as keywords, time periods, participants, organizers, and meeting rooms. Prompt users for unsupported filter conditions.
- When there are multiple search results, be sure to obtain paginated data and do not miss any meeting records.
2. Organize Meeting Minutes
- When organizing minute documents, by default, only provide the links to the minute document and verbatim transcript; there is no need to read the content of the minute document or verbatim transcript.
- Only read the document to obtain specific content when the user explicitly requests to get the summary, todos, or chapters from the minute document.
3. Links to Minute Documents and Verbatim Transcripts
- Minute documents, verbatim transcript documents, and associated shared documents are returned using doc_token by default.
- Use to query basic information such as document names and URLs
lark-cli drive metas batch_query
bash
# Learn how to use the command
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}'- Use when needing to obtain document content.
lark-cli docs +fetch
bash
# Get document content
lark-cli docs +fetch --doc <doc_token>Resource Relationships
Meeting (Video Conference)
├── Note (Meeting Minutes)
│ ├── MainDoc (Main Minute Document)
│ ├── VerbatimDoc (Verbatim Transcript)
│ └── SharedDoc (In-meeting Shared Document)
└── Minutes (Feishu Minutes)
├── Transcript (Text Record)
├── Summary (Summary)
├── Todos (Todos)
└── Chapters (Chapters)Note:can only query historical completed meetings. For querying upcoming schedules, please use lark-calendar.+searchPriority: When users search for historical meetings, prioritize usingovervc +search. Calendar search is for schedules, while vc search is for completed meeting records, supporting filtering by dimensions such as participants, organizers, meeting rooms.calendar events searchRouting Rules: If users ask about "meetings that have been held", "what meetings were held today", "recent meetings attended", "completed meetings", "historical meeting records", prioritize using. Only prioritize using lark-calendar when querying upcoming schedules, upcoming meetings, or agendas.vc +searchSpecial Case: When users query "what meetings are there today", useto query meeting records of meetings held today, and use the lark-calendar skill to query meetings that haven't started yet today, then organize and display them uniformly.vc +search
Shortcuts (Recommended for Priority Use)
Shortcuts are advanced encapsulations of common operations (). Prioritize using operations with Shortcuts.
lark-cli vc +<verb> [flags]| Shortcut | Description |
|---|---|
| Search meeting records (requires at least one filter) |
| Query meeting notes (via meeting-ids, minute-tokens, or calendar-event-ids) |
API Resources
bash
lark-cli schema vc.<resource>.<method> # Must check the parameter structure before calling the API
lark-cli vc <resource> <method> [flags] # Call the APIImportant: When using the native API, must runto check the parameter structure ofschema/--data; do not guess the field format.--params
meeting
- — Get meeting details (topic, time, participants, note_id)
get
bash
# Get basic meeting information: does not include participant list
lark-cli vc meeting get --params '{"meeting_id": "<meeting_id>"}'
# Get basic meeting information: includes participant list
lark-cli vc meeting get --params '{"meeting_id": "<meeting_id>", "with_participants": true}'minutes (cross-domain, see lark-minutes for details)
- — Get basic Minutes information (title, duration, cover); use
getto query the content of minutes+notes --minute-tokens <minute-token>
Permission Table
| Method | Required scope |
|---|---|
| |
| |
| |
| |
| |