SkillsMar 30, 2026·1 min read

Lark CLI Skill: Meetings — Video Conference Records

Lark/Feishu CLI skill for video meetings. Search meeting records, get meeting minutes with summaries, todos, and transcripts.

TL;DR
CLI skill that retrieves Lark/Feishu meeting records, minutes, summaries, and transcripts.
§01

What it is

Lark CLI Skill: Meetings is a command-line skill for the Lark/Feishu CLI tool that lets you search meeting records and retrieve meeting minutes with AI-generated summaries, todo items, and full transcripts. It is part of the Lark CLI ecosystem, which provides 200+ commands and 19 AI Agent Skills for the Lark/Feishu open platform.

The skill targets teams using Lark or Feishu for workplace collaboration who want to access meeting data programmatically or through AI agents like Claude Code.

§02

How it saves time or tokens

Instead of navigating the Lark web interface to find a specific meeting and manually copying notes, this skill lets you query meetings by date range, participant, or keyword from the terminal. Meeting minutes, including AI-generated summaries and action items, are returned as structured data that can be piped into other tools or fed to an LLM for further analysis. The token estimate for this workflow is approximately 500 tokens.

§03

How to use

  1. Install the Lark CLI and the meetings skill:
npm install -g @larksuite/cli
npx skills add larksuite/cli -y -g
  1. Configure authentication:
lark-cli config init
lark-cli auth login --recommend
  1. Search and retrieve meeting records:
# List recent meetings
lark-cli meetings list --limit 10

# Get minutes for a specific meeting
lark-cli meetings minutes --meeting-id <id>

# Search meetings by keyword
lark-cli meetings search --query 'sprint review'
§04

Example

Retrieving meeting minutes with summaries and action items:

$ lark-cli meetings minutes --meeting-id abc123

Meeting: Sprint Review 2026-04-10
Duration: 45 minutes
Participants: 8

Summary:
- Reviewed Q2 deliverables, 3 features shipped
- Discussed blockers on auth migration

Todos:
- [ ] @alice: Update migration timeline by Friday
- [ ] @bob: Share load test results

Transcript: [truncated, 2400 words]
§05

Related on TokRepo

§06

Common pitfalls

  • The skill requires Lark/Feishu API credentials with meeting read permissions; ensure your app has the correct scopes enabled
  • Meeting transcripts are only available for meetings where recording and transcription were enabled before the call started
  • Rate limits on the Lark Open Platform API apply; batch queries for large date ranges may need pagination

Frequently Asked Questions

Does this skill work with both Lark and Feishu?+

Yes. The Lark CLI supports both Lark (international) and Feishu (China) platforms. The meetings skill works identically on both, though the API endpoints differ internally. Your authentication configuration determines which platform is used.

Can I use this skill with Claude Code or other AI agents?+

Yes. Since the Lark CLI is a standard command-line tool, any AI agent with shell access can invoke it. Claude Code can run lark-cli commands directly to search meetings, retrieve minutes, and process the output within a conversation.

What data is included in meeting minutes?+

Meeting minutes include the meeting title, duration, participant list, an AI-generated summary, extracted action items (todos), and the full transcript if recording was enabled. The data is returned in structured text format.

Do I need a paid Lark plan for this feature?+

Meeting recording and AI-generated minutes may require specific Lark plan tiers. The CLI skill itself is free and open source, but the underlying meeting data depends on your organization's Lark subscription and enabled features.

How do I filter meetings by date range?+

Use the --start-date and --end-date flags with the list or search commands. Dates are specified in ISO 8601 format. For example: lark-cli meetings list --start-date 2026-04-01 --end-date 2026-04-15.

Citations (3)
🙏

Source & Thanks

Created by LarkSuite. Licensed under MIT. larksuite/cli — 4,100+ GitHub stars

Part of the Lark CLI Official Skills Collection on TokRepo.

Discussion

Sign in to join the discussion.
No comments yet. Be the first to share your thoughts.

Related Assets