SkillsMar 30, 2026·1 min read

Lark CLI Skill: Meeting Summary Workflow

Lark/Feishu CLI workflow skill. Aggregates meeting minutes over a time range and generates structured reports.

Agent ready

Safe staging for this asset

This asset is staged first. The copied prompt tells the agent to inspect the staged files and ask before activating scripts, MCP config, or global config.

Stage only · 17/100Policy: stage
Agent surface
Any MCP/CLI agent
Kind
CLI Tool
Install
Stage only
Trust
Trust: Community
Entrypoint
Lark CLI Skill: Meeting Summary Workflow
Safe staging command
npx -y tokrepo@latest install 7e662a8b-4dab-4c0a-bb78-1e2afdbce83d --target codex

Stages files first; activation requires review of the staged README and plan.

TL;DR
A Lark/Feishu CLI skill that aggregates meeting minutes and generates structured summary reports.
§01

What it is

This CLI skill for Lark (Feishu) automates the process of aggregating meeting minutes across a specified time range and generating structured summary reports. It pulls data from Lark's calendar and meeting APIs, extracts key points, and produces formatted summaries.

The skill targets team leads, project managers, and operations staff who need weekly or monthly meeting summaries without manually reading through individual meeting notes.

The project is actively maintained and suitable for both individual developers and teams looking to integrate it into their existing toolchain. Documentation and community support are available for onboarding.

§02

How it saves time or tokens

Manually reviewing dozens of meeting notes to extract action items and decisions takes hours per week. This skill automates the aggregation, identifies key topics across meetings, and produces a structured report. A week of meetings becomes a single-page summary in seconds.

§03

How to use

  1. Install the Lark CLI skill in your Claude Code or AI coding assistant.
  2. Configure your Lark API credentials (app_id, app_secret) for calendar and meeting access.
  3. Run the skill with a time range: lark-cli meetings summarize --from 2026-04-01 --to 2026-04-15
  4. Review the generated summary report with sections for decisions, action items, and key topics.
§04

Example

# Configure Lark API credentials
export LARK_APP_ID='cli_xxxxx'
export LARK_APP_SECRET='xxxxx'

# Generate a weekly meeting summary
lark-cli meetings summarize \
  --from 2026-04-07 \
  --to 2026-04-11 \
  --format markdown \
  --output weekly-summary.md

# Output structure:
# ## Weekly Meeting Summary (Apr 7-11, 2026)
# ### Key Decisions
# - Decision 1 from meeting X
# ### Action Items
# - [ ] Task assigned to Person A (due: Apr 15)
# ### Topics Discussed
# - Topic summary across multiple meetings
§05

Related on TokRepo

§06

Common pitfalls

  • Not granting sufficient API permissions. The skill needs read access to calendar events and meeting records. Missing permissions cause silent failures with empty summaries.
  • Setting time ranges that are too broad. A month of meetings produces an unwieldy summary. Weekly summaries are more actionable.
  • Expecting the skill to capture unrecorded discussions. The skill can only summarize what is documented in Lark meeting notes. Meetings without notes are excluded from the summary.
  • Applying the skill without reading the documentation first. Each skill has specific prerequisites and configuration requirements that affect the quality of results.

Frequently Asked Questions

Does this work with Feishu (China)?+

Yes. The skill supports both Lark (international) and Feishu (China) instances. Configure the correct API endpoint for your region.

What output formats are supported?+

The skill generates summaries in Markdown, HTML, and plain text formats. Markdown is recommended for pasting into Lark documents or README files.

Can I filter by specific calendars or meeting types?+

Yes. Use the `--calendar` flag to filter by calendar ID, or `--keyword` to include only meetings whose titles match a pattern.

Does it extract action items automatically?+

Yes. The skill parses meeting notes for action item patterns (checkboxes, 'TODO:', assigned tasks) and aggregates them into a dedicated action items section with assignees and due dates.

Can this skill run on a schedule?+

Yes. Wrap the CLI command in a cron job or CI/CD scheduled pipeline to generate weekly summaries automatically. The output can be posted to a Lark group chat via webhook.

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