lark-workflow-meeting-summary

Aggregates Lark meeting minutes over a time range into structured summary reports.

1.3k|142|Updated Jun 1, 2026
One-click install
npx skills add https://github.com/MiniMax-AI/minimax-code --skill lark-workflow-meeting-summary-minimax-ai
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lark-workflow-meeting-summary
Source: https://github.com/MiniMax-AI/minimax-code/tree/main/packages/local-runtime/assets/skills/lark-tools/cli-skills/lark-workflow-meeting-summary
Command: npx skills add https://github.com/MiniMax-AI/minimax-code --skill lark-workflow-meeting-summary-minimax-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires lark-cli.

What problem does it solve? Manually reviewing meeting records across days or weeks in Lark is tedious and error-prone. This Skill automates the collection of meeting lists, minutes documents, and verbatim transcripts, then compiles them into a structured daily overview or weekly report. ## Core Features & Use Cases - Time-Range Meeting Search: Queries Lark VC meetings within a specified date range, handling pagination and month-long range splitting automatically. - Minutes & Transcript Retrieval: Batch-fetches meeting notes and verbatim transcript document tokens, then resolves their URLs via Drive metadata queries. - Structured Report Generation: Produces a daily meeting overview or a multi-day weekly report, optionally creating or appending to a Lark cloud document. - Use Case: Ask for a summary of this week's meetings, and receive a report listing each meeting's time, topic, minutes link, and transcript link, optionally saved as a Lark doc. ## Quick Start Summarize all my Lark meetings from the past week and generate a meeting minutes weekly report.

Frequently Asked Questions about lark-workflow-meeting-summary

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

FAQPage Schema
How do I generate a meeting minutes weekly report in Lark?

Use lark-cli to search meetings within the week via vc +search, fetch minutes with vc +notes, resolve document links through drive metas batch_query, then compile the results into a structured weekly report. The workflow handles pagination and batching automatically.

How to search Lark meetings within a date range?

Run lark-cli vc +search with --start and --end dates in YYYY-MM-DD format. The maximum searchable range is one month, so longer periods must be split into multiple queries, and page_token pagination must be followed to collect all meeting IDs.

What permissions are required for Lark meeting minutes retrieval?

Only user identity is supported. You need base VC and Drive scopes, plus sensitive scopes like vc:meeting.search:read obtained through incremental authorization using the lark-cli device-code flow described in the lark-shared skill.

Why do some Lark meetings show no minutes available?

Some meetings return a no notes available response because no minutes were recorded for them. The workflow marks these meetings as having no minutes in the final report instead of failing.

What are the batch limits when querying Lark meeting notes?

The vc +notes command accepts at most 50 meeting IDs per call, and drive metas batch_query resolves at most 10 document tokens per request. Larger sets must be split into multiple batched calls.