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.
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.
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.
How to use
- Install the Lark CLI and the meetings skill:
npm install -g @larksuite/cli
npx skills add larksuite/cli -y -g
- Configure authentication:
lark-cli config init
lark-cli auth login --recommend
- 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'
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]
Related on TokRepo
- AI Tools for Task Management — tools for managing todos and project workflows
- AI Tools for Automation — CLI tools and automation scripts for productivity
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
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.
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.
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.
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.
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)
- Lark CLI GitHub— Lark CLI with 200+ commands and 19 AI Agent Skills
- Lark Developer Docs— Lark Open Platform API documentation
- Lark API Reference— Meeting and calendar API specifications
Related on TokRepo
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
Related Assets
Claude-Flow — Multi-Agent Orchestration for Claude Code
Layers swarm and hive-mind multi-agent orchestration on top of Claude Code with 64 specialized agents, SQLite memory, and parallel execution.
ccusage — Real-Time Token Cost Tracker for Claude Code
CLI that reads ~/.claude logs and breaks down Claude Code token spend by day, session, and project — pluggable into your statusline.
SuperClaude — Workflow Framework for Claude Code
Adds 16+ slash commands, 9 cognitive personas, and a smart flag system to Claude Code in one pipx install.