lark-vc

Search Lark video meeting history and retrieve meeting notes, transcripts, and participant snapshots.

Updated May 22, 2026
One-click install
npx skills add https://github.com/CalWade/aigc-creator --skill lark-vc-calwade
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: lark-vc
Source: https://github.com/CalWade/aigc-creator/tree/main/.agents/skills/lark-vc
Command: npx skills add https://github.com/CalWade/aigc-creator --skill lark-vc-calwade

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires lark-cli, and includes references (resource) components.

What problem does it solve? Finding past Lark/Feishu video meetings and their artifacts (AI notes, verbatim transcripts, Minutes summaries, todos, chapters) requires navigating multiple APIs and understanding which artifact chain produced which document. This Skill routes those queries through lark-cli so you can locate ended meetings and pull the right meeting artifact without guessing. ## Core Features & Use Cases - Historical Meeting Search: Search ended meetings by keyword, time range, organizer, participant, or room via vc +search, with pagination support. - Meeting Artifact Retrieval: Fetch AI notes, user-bound meeting notes, verbatim transcripts, and Minutes artifacts (summary, todos, chapters, transcript) via vc +notes using meeting IDs, minute tokens, or calendar event IDs. - Recording Bridge & Participants: Resolve meeting IDs to minute tokens with vc +recording, and query participant snapshots with vc meeting get --with-participants. - Use Case: Ask "summarize yesterday's project standup" — the Skill searches ended meetings, retrieves the verbatim transcript, and produces an independent summary based on the raw dialogue rather than rephrasing the AI-generated notes. ## Quick Start Use the lark-vc skill to find my meetings from last week and pull the transcript and AI summary for the project review meeting.

Frequently Asked Questions about lark-vc

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

FAQPage Schema
How do I search past Lark video meetings?▼

Use `lark-cli vc +search` with at least one filter such as a keyword, time range, organizer IDs, participant IDs, or room IDs. It only returns ended meetings; for future scheduled meetings use the lark-calendar skill instead.

How to get meeting minutes and transcripts from a Feishu meeting?▼

Run `lark-cli vc +notes` with meeting IDs, minute tokens, or calendar event IDs. It returns the AI note document token, verbatim transcript token, and Minutes artifacts like summary, todos, and chapters, which you read with `docs +fetch`.

What is the difference between AI notes and Minutes in Lark meetings?▼

AI notes come from the in-meeting AI summary feature and produce a note document plus verbatim transcript. Minutes come from the recording chain or uploaded media and contain summary, todos, chapters, and transcript. The two chains are independent and a meeting may have either, both, or neither.

Can lark-vc search for future or upcoming meetings?▼

No, `vc +search` only covers ended historical meetings, including instant meetings not on the calendar. For future schedules or today's upcoming meetings, use the lark-calendar skill and merge both result sets when needed.

Why does vc +notes return no notes for a meeting?▼

The meeting may not have generated notes, or you lack participant permission (error 121005). Try the `--minute-tokens` path instead, which degrades gracefully to built-in Minutes artifacts without requiring note read permission.

How do I get a minute_token from a meeting ID?▼

Run `lark-cli vc +recording --meeting-ids <id>` to resolve the meeting's recording into a minute_token. You can then pass that token to `minutes +download`, `minutes minutes get`, or `vc +notes --minute-tokens` depending on what you need.