lark-minutes

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

minutes (v1)

minutes (v1)

前置条件: 先阅读
../lark-shared/SKILL.md
了解认证、全局参数和安全规则。
Prerequisites: First read
../lark-shared/SKILL.md
to learn about authentication, global parameters and security rules.

核心概念

Core Concepts

  • 妙记 Token(minute_token):妙记的唯一标识符。通常可从妙记的 URL 链接中提取(例如
    https://*.feishu.cn/minutes/obcnq3b9jl72l83w4f14xxxx
    中的最后一段字符串
    obcnq3b9jl72l83w4f14xxxx
    )。
  • 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. 提取 Token
    • 只有
      minute_token
      参数是必填的。
    • 如果 URL 中包含额外参数(如
      ?xxx
      ),请截取路径部分的最后一段作为 token。
    • 示例:从
      https://domain.feishu.cn/minutes/obc123456?project=xxx
      中提取出
      obc123456
  2. 获取妙记信息
    • 使用
      lark-cli schema minutes.minutes.get
      可以查看具体的返回值结构。
    • 返回的核心字段通常包含:
      • title
        :会议标题
      • cover
        :视频/音频封面 URL
      • duration
        :会议时长(毫秒)
      • owner_id
        :所有者 ID
      • url
        :妙记链接
  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
undefined
bash
undefined

首先查询妙记元信息(标题、时长、封面) → 用本 skill

First query the minute metadata (title, duration, cover) → use this skill

lark-cli minutes minutes get --params '{"minute_token": "obcn***************"}'
lark-cli minutes minutes get --params '{"minute_token": "obcn***************"}'

查妙记关联的纪要产物:逐字稿、总结、待办、章节等 → 用 lark-cli vc +notes

Query minute-related outputs: verbatim transcript, summary, to-dos, chapters, etc. → use lark-cli vc +notes

lark-cli vc +notes --minute-tokens obcnhijv43vq6bcsl5xasfb2
本 skill 仅提供妙记**基础元信息**查询(标题、封面、时长)。如需获取纪要**内容**(逐字稿、AI 总结、待办、章节),请使用 [lark-cli vc +notes](../lark-vc/references/lark-vc-notes.md):

- 用户未指定需要查询妙记的哪些内容时,默认查询基础元信息和相关联的纪要产物信息。
- 用户未明确指定查看纪要产物(逐字稿、总结、待办、章节)时,向用户展示对应产物的链接即可,不需要直接读取产物内容。

<!-- AUTO-GENERATED-START — gen-skills.py 管理,勿手动编辑 -->
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](../lark-vc/references/lark-vc-notes.md):

- 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

API Resources

bash
lark-cli schema minutes.<resource>.<method>   # 调用 API 前必须先查看参数结构
lark-cli minutes <resource> <method> [flags] # 调用 API
重要:使用原生 API 时,必须先运行
schema
查看
--data
/
--params
参数结构,不要猜测字段格式。
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

minutes

  • get
    — 获取妙记信息
  • get
    — Retrieve minute information

权限表

Permission Table

方法所需 scope
minutes.get
minutes:minutes:readonly
<!-- AUTO-GENERATED-END -->
MethodRequired scope
minutes.get
minutes:minutes:readonly
<!-- AUTO-GENERATED-END -->