From oh-my-feishu
Searches Lark (Feishu) minutes by keyword, owner, participant, time range; retrieves metadata like title, cover, duration, URL; downloads audio/video files via minute_token from URLs.
npx claudepluginhub yjzhang2003/oh-my-feishu --plugin oh-my-feishuThis skill uses the workspace's default tool permissions.
**CRITICAL — 开始前 MUST 先用 Read 工具读取 [`../lark-shared/SKILL.md`](../lark-shared/SKILL.md),其中包含认证、权限处理**
Queries ended Lark video meeting records and retrieves meeting minutes including summaries, todos, chapters, and verbatim transcripts. Filters by keywords, time range, organizers, participants, or rooms; use for post-meeting analysis.
Searches meeting transcripts and voice memos in Markdown files for topics, people, decisions, or ideas. Filters by type, date range, limits; JSON output with snippets and paths; optional QMD semantic search.
Searches and retrieves meeting transcripts from Fireflies.ai and Google Drive with full text, speaker labels, timestamps, summaries, keywords, and action items. Triggers on transcript search, meeting history, call recordings, or Fireflies queries.
Share bugs, ideas, or general feedback.
CRITICAL — 开始前 MUST 先用 Read 工具读取 ../lark-shared/SKILL.md,其中包含认证、权限处理
minute_token 标识。https://*.feishu.cn/minutes/obcnxxxxxxxxxxxxxxxxxxxx 中的 obcnxxxxxxxxxxxxxxxxxxxx)。如果 URL 中包含额外参数(如 ?xxx),应截取路径最后一段。minutes +search。minute_token。minutes minutes get。minute_token,再调用 minutes minutes get。使用
lark-cli schema minutes.minutes.get可查看完整返回值结构。核心字段包含:title(标题)、cover(封面 URL)、duration(时长,毫秒)、owner_id(所有者 ID)、url(妙记链接)。
minutes +download 只负责音视频媒体文件。--url-only;用户要落地到本地文件时,直接下载。./minutes/{minute_token}/<server-filename>,与 vc +notes 的逐字稿共享同一目录便于聚合。注意:
+download只负责音视频媒体文件。如果用户需要的是逐字稿、总结、待办、章节等纪要内容,请使用 vc +notes --minute-tokens。
minute_token,可直接传给 vc +notes;如果只有妙记 URL,先提取 minute_token。# 通过 minute_token 获取纪要产物(逐字稿、总结、待办、章节)
lark-cli vc +notes --minute-tokens <minute_token>
跨 skill 路由:逐字稿、AI 总结、待办、章节等纪要内容由 lark-vc 的
+notes命令提供
Minutes (妙记) ← minute_token 标识
├── Metadata (标题、封面、时长、owner、url) → minutes minutes get
└── MediaFile (音频/视频文件) → minutes +download
能力边界:
minutes负责 搜索妙记、查看基础元信息、下载音视频文件。路由规则:
- 用户说"妙记列表 / 搜索妙记 / 某个关键词的妙记" →
minutes +search- 用户只是想看"我的妙记 / 某段时间内的妙记 / 妙记列表",不要先走 lark-vc,而应直接使用本 skill
- 用户如果同时提到"会议 / 会 / 开会 / 某场会",即使也提到了"妙记",也应优先走 lark-vc 先定位会议,再通过 vc +recording 获取
minute_token- 用户说"我的妙记 / 我拥有的妙记 / 我参与的妙记"时,可将相关过滤条件映射为
me;me表示当前用户- 结果有多页时,使用
page_token持续翻页,直到确认没有更多结果minutes +search单次最多返回200条;结果总数没有固定上限- 用户说"这个妙记的标题 / 时长 / 封面 / 链接" →
minutes minutes get- 用户说"下载这个妙记的视频 / 音频 / 媒体文件" →
minutes +download- 用户说"这个妙记的逐字稿 / 总结 / 待办 / 章节" → 使用 vc +notes --minute-tokens
Shortcut 是对常用操作的高级封装(lark-cli minutes +<verb> [flags])。有 Shortcut 的操作优先使用。
| Shortcut | 说明 |
|---|---|
+search | Search minutes by keyword, owners, participants, and time range |
+download | Download audio/video media file of a minute |
+search 命令时,必须阅读 references/lark-minutes-search.md,了解搜索参数和返回值结构。+download 命令时,必须阅读 references/lark-minutes-download.md,了解下载参数和返回值结构。lark-cli schema minutes.<resource>.<method> # 调用 API 前必须先查看参数结构
lark-cli minutes <resource> <method> [flags] # 调用 API
重要:使用原生 API 时,必须先运行
schema查看--data/--params参数结构,不要猜测字段格式。
get — 获取妙记信息| 方法 | 所需 scope |
|---|---|
+search | minutes:minutes.search:read |
minutes.get | minutes:minutes:readonly |
+download | minutes:minutes.media:export |