lark-minutes

Retrieve Feishu Minutes metadata and AI-generated meeting artifacts via lark-cli.

Updated Jan 10, 2026
One-click install
npx skills add https://github.com/Rabbit-Ivan/Ivan-skills --skill lark-minutes-rabbit-ivan
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: lark-minutes
Source: https://github.com/Rabbit-Ivan/Ivan-skills/tree/main/skills/lark-minutes
Command: npx skills add https://github.com/Rabbit-Ivan/Ivan-skills --skill lark-minutes-rabbit-ivan

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires lark-cli.

What problem does it solve? It lets you programmatically query Feishu (Lark) Minutes recordings to obtain basic metadata such as title, cover, and duration, plus links to AI-generated artifacts like summaries, todos, and chapters, without opening the Feishu web UI. ## Core Features & Use Cases - Minutes Metadata Query: Extract the minute_token from a Minutes URL and fetch title, cover URL, duration, owner, and link via lark-cli minutes minutes get. - AI Artifact Discovery: Surface associated meeting artifacts (transcript, AI summary, todos, chapters) through lark-cli vc +notes and present their links to the user. - Use Case: A user pastes a Feishu Minutes URL like https://xxx.feishu.cn/minutes/obcnq3b9jl72l83w4f14xxxx and asks what the meeting was about; the Skill extracts the token, returns the title and duration, and lists links to the summary and todo artifacts. ## Quick Start Ask the assistant to look up the title, duration, and AI summary links for a Feishu Minutes URL you provide.

Frequently Asked Questions about lark-minutes

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

FAQPage Schema
How do I get Feishu Minutes information from a URL?▼

Extract the minute_token from the last path segment of the Minutes URL, then run `lark-cli minutes minutes get --params '{"minute_token": "..."}'`. The response includes the title, cover URL, duration in milliseconds, owner ID, and link.

How to extract the minute_token from a Feishu Minutes link?▼

Take the last segment of the URL path, stripping any query parameters. For example, from `https://domain.feishu.cn/minutes/obc123456?project=xxx`, the token is `obc123456`.

Can I read the full transcript or AI summary of a Feishu Minutes recording?▼

This Skill only returns basic metadata such as title, cover, and duration. For transcripts, AI summaries, todos, and chapters, use `lark-cli vc +notes --minute-tokens <token>` as documented in the lark-vc notes reference.

What permissions are required to query Feishu Minutes via API?▼

The `minutes.get` API requires the `minutes:minutes:readonly` OAuth scope. You also need the lark-cli binary installed and authenticated according to the lark-shared Skill instructions.

Why does my Feishu Minutes query fail with a token from a URL?▼

Failures usually come from including query parameters in the token or missing authentication. Ensure you pass only the final path segment as minute_token and that lark-cli is properly authenticated with the required scope.