lark-minutes

Original🇨🇳 Chinese
Translated

Feishu Minutes: Retrieve basic minutes information (title, cover, duration) and related AI outputs (summary, to-dos, chapters). The URL format of Feishu Minutes is: http(s)://<host>/minutes/<minute-token>

121.8kinstalls
Added on

NPX Install

npx skill4agent add larksuite/cli lark-minutes

Tags

Translated version includes tags in frontmatter

SKILL.md Content (Chinese)

View Translation Comparison →

minutes (v1)

Prerequisites: First read
../lark-shared/SKILL.md
to learn about authentication, global parameters and security rules.

Core Concepts

  • Minute Token (minute_token): The unique identifier of a Feishu Minute. It can usually be extracted from the Minute's URL (e.g., the last segment
    obcnq3b9jl72l83w4f14xxxx
    in
    https://*.feishu.cn/minutes/obcnq3b9jl72l83w4f14xxxx
    ).

Usage Instructions

  1. Extract Token:
    • Only the
      minute_token
      parameter is required.
    • If the URL contains additional parameters (such as
      ?xxx
      ), please extract the last segment of the path as the token.
    • Example: Extract
      obc123456
      from
      https://domain.feishu.cn/minutes/obc123456?project=xxx
      .
  2. Retrieve Minute Information:
    • Use
      lark-cli schema minutes.minutes.get
      to view the specific return value structure.
    • The core returned fields usually include:
      • title
        : Meeting title
      • cover
        : Video/audio cover URL
      • duration
        : Meeting duration (in milliseconds)
      • owner_id
        : Owner ID
      • url
        : Feishu Minute link

Typical Scenarios

Query Minute Content

bash
# First query the minute metadata (title, duration, cover) → use this skill
lark-cli minutes minutes get --params '{"minute_token": "obcn***************"}'

# Query minute-related outputs: verbatim transcript, summary, to-dos, chapters, etc. → use lark-cli vc +notes
lark-cli vc +notes --minute-tokens obcnhijv43vq6bcsl5xasfb2
This skill only provides queries for basic metadata of Feishu Minutes (title, cover, duration). To retrieve minute content (verbatim transcript, AI summary, to-dos, chapters), please use lark-cli vc +notes:
  • When the user does not specify which content of the minute to query, the system defaults to querying basic metadata and related minute output information.
  • When the user does not explicitly specify to view minute outputs (verbatim transcript, summary, to-dos, chapters), only display the links to the corresponding outputs instead of directly reading the content.
<!-- AUTO-GENERATED-START — gen-skills.py manages this, do not edit manually -->

API Resources

bash
lark-cli schema minutes.<resource>.<method>   # Must check parameter structure before calling the API
lark-cli minutes <resource> <method> [flags] # Call the API
Important: When using the native API, you must first run
schema
to check the structure of the
--data
/
--params
parameters. Do not guess the field format.

minutes

  • get
    — Retrieve minute information

Permission Table

MethodRequired scope
minutes.get
minutes:minutes:readonly
<!-- AUTO-GENERATED-END -->