SkillsMar 30, 2026·1 min read

Lark CLI Skill: Minutes — Meeting AI Artifacts

Lark/Feishu CLI skill for meeting minutes. Get metadata, AI summaries, todos, and chapter breakdowns from recorded meetings.

TL;DR
A Lark CLI skill that extracts AI summaries, todos, and chapter breakdowns from recorded Lark/Feishu meetings.
§01

What it is

Lark CLI Skill: Minutes is a command-line tool that connects to your Lark (Feishu) workspace and extracts meeting intelligence from recorded meetings. It pulls metadata, AI-generated summaries, action items (todos), and chapter breakdowns from meeting recordings.

It targets teams using Lark/Feishu for meetings who want to automate the extraction of actionable items and summaries without manually reviewing recordings.

§02

How it saves time or tokens

Instead of watching entire meeting recordings to extract key decisions and action items, this skill programmatically pulls AI-generated summaries and structured todos. Token estimate for this workflow is approximately 500 tokens. The chapter breakdown lets you jump to specific discussion segments.

§03

How to use

  1. Install the Lark CLI and this skill:
npm install -g @larksuite/cli
npx skills add larksuite/cli -y -g
  1. Configure authentication:
lark-cli config init
lark-cli auth login --recommended
  1. Fetch meeting minutes:
lark-cli minutes get --meeting-id <id>
§04

Example

# Install and configure
npm install -g @larksuite/cli
npx skills add larksuite/cli -y -g
lark-cli config init
lark-cli auth login --recommended

# Get meeting minutes with AI summary
lark-cli minutes get --meeting-id abc123

# List recent meetings
lark-cli minutes list --limit 10

The output includes the meeting title, participants, AI summary, todo items with assignees, and chapter timestamps.

§05

Related on TokRepo

Key considerations

When evaluating Lark CLI Skill: Minutes for your workflow, consider the following factors. First, assess whether your team has the technical prerequisites to adopt this tool effectively. Second, evaluate the maintenance burden against the productivity gains. Third, check community activity and documentation quality to ensure long-term viability. Integration with your existing toolchain matters more than feature count alone. Start with a small pilot project before rolling out across the organization. Monitor resource usage during the initial adoption phase to identify bottlenecks early. Document your configuration decisions so team members can onboard independently.

§06

Common pitfalls

  • Meeting recordings must have AI minutes enabled in Lark/Feishu settings before the recording starts; retroactive generation is not supported.
  • Authentication tokens expire; re-run the login command if API calls return 401 errors.
  • The skill requires a Lark/Feishu enterprise account; personal accounts may not have API access to meeting minutes.

Frequently Asked Questions

Does this work with Feishu or only Lark?+

It works with both Lark (international) and Feishu (China). The CLI detects your region based on authentication. API endpoints differ between regions but the skill handles this automatically.

Can I export minutes to Markdown?+

The CLI outputs structured data that includes summaries, todos, and chapters. You can pipe the output through a formatter or use the --format flag if available to get Markdown-compatible output.

Are AI summaries available for all meetings?+

AI summaries require the meeting to be recorded with the AI minutes feature enabled. Meetings without recordings or without the AI minutes toggle will not have generated summaries.

How accurate are the AI-generated todos?+

Accuracy depends on the clarity of action items discussed in the meeting. The AI extracts explicit commitments and assignments. Implicit or ambiguous action items may be missed or misattributed.

Can I integrate this with other tools?+

Yes. The CLI output is structured data that can be piped into scripts, project management tools, or notification systems. Use JSON output format for programmatic integration.

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