← Back to Skills Marketplace
382
Downloads
1
Stars
1
Active Installs
5
Versions
Install in OpenClaw
/install feishu-meeting-summary
Description
飞书会议总结技能 - 读取飞书会议纪要,生成结构化总结,沉淀知识,支持搜索
README (SKILL.md)
feishu-meeting-summary
读取飞书会议纪要,生成结构化总结,沉淀知识,支持搜索
前置要求
必须安装飞书工具: 请参考飞书官方文档安装 OpenClaw 飞书插件
安装后需重启 Gateway 使插件生效。
功能
| 功能 | 说明 |
|---|---|
| 会议总结 | 读取会议纪要,生成结构化文档 |
| 知识沉淀 | 提炼方法论,存到 knowledge/ |
| 搜索历史 | 搜索历史会议内容 |
目录结构
会议记录(meetings/)
meetings/
└── YYYY-MM-DD/
├── index.md # 当日会议索引
└── 话题名称.md # 独立会议文档
知识沉淀(knowledge/)
knowledge/
├── thinking/ # 思考方法论
├── business/ # 业务认知
├── lessons/ # 踩坑经验
└── workflows/ # 工作流程
工作流程
用户发会议链接
↓
读取文字记录(原汁原味)
↓
提取:讨论话题 + 真实案例 + 实施方案
↓
提炼方法论 → 存到 knowledge/
↓
生成文档 → 存到 meetings/YYYY-MM-DD/
↓
返回链接
核心逻辑
1. 前置检查
- 尝试调用
feishu_fetch_doc读取会议链接 - 如返回未授权/失败 → 提示用户安装飞书插件
- 检查 config 中是否已配置 wiki_root 和 meetings_folder
2. 读取会议
- 必须读取文字记录(原汁原味,最详细)
- 提取智能纪要作为补充参考
- AI 摘要可能删减细节,必须以文字记录为主
3. 提取信息
- 讨论话题
- 真实案例(最宝贵)
- 实施方案
- 待办事项
4. 提炼方法论
- 思考方式
- 业务流转
- 归纳到 knowledge/ 对应分类
5. 生成文档
技术问题说明:
feishu_create_doc创建文档时,markdown 末尾的链接会丢失feishu_update_doc的append模式也会丢失链接replace_all多次使用会导致内容重复
解决方案:
- 使用
feishu_create_doc的overwrite模式写入完整内容 - 直接在 markdown 末尾包含原文链接,不要后续 append
# 话题名称(不含日期前缀)
> 讨论话题:xxx
---
## 一、背景/项目介绍
(详细描述项目背景、时间节点、业务场景等)
## 二、详细讨论内容
- 按议题分段详细描述
- 基于原文字记录萃取(非AI摘要)
- 保留关键细节、案例、争议点
## 三、技术方案(如有)
- 技术难点
- 解决方案
- 三阶段规划等
## 四、待办事项
| 负责人 | 事项 | 截止时间 |
|--------|------|---------|
| ... | ... | ... |
## 五、会议结论
- 核心决策要点
## 六、我的看法(AI 认知)
基于沉淀的知识和行业认知,提供:
- 技术方案评估
- 风险点提示
- 优化建议
- 相关经验参考
---
原文链接:
- 智能纪要:https://m1ed09stz4r.feishu.cn/docx/xxx
- 文字记录:https://m1ed09stz4r.feishu.cn/docx/xxx
整理:{助手名称}
重要原则:
- 标题不要加日期前缀
- 内容要详细,基于原文字记录
- 使用 overwrite 模式写入,不要用 append
- 必须包含原文链接
6. 写入后检查
- 文档创建后,必须读取文档末尾确认原文链接是否存在
- 如链接丢失,使用 overwrite 模式重新写入完整内容
- 验证通过后再返回给用户
推荐写法:直接在 markdown 末尾写上链接,不要单独 append
7. 权限处理
- 自动创建 meetings/YYYY-MM-DD/ 目录
- 权限不足时提示
使用案例
触发方式
用户:会议总结 https://m1ed09stz4r.feishu.cn/docx/xxx
重要:在群聊中收到会议总结请求时,必须:
- 使用
feishu-meeting-summary技能 - 生成总结后必须写入飞书文档(调用 feishu_create_doc 存到 meetings 目录)
- 返回飞书文档链接给用户
搜索历史
用户:搜索"数据结构"
助手:找到 X 个相关会议
- 2026-03-12 业务系统数据结构规划
- ...
[链接]
配置
首次使用配置
用户需要提供知识库根目录 URL,然后:
- 使用
feishu_wiki_space_node获取根目录 token → 配置为 wiki_root - 列出根目录找到 meetings 文件夹 → 配置为 meetings_folder
- 后续会议自动存到对应目录
目录路径(命名规范)
wiki_root/meetings/
├── YYYY-MM-DD/
│ ├── 话题名称1
│ └── 话题名称2
- 命名格式:
YYYY-MM-DD 话题名称 - 例:
2026-03-13 资源系统规划会议
会议创建流程
- 获取 meetings 文件夹 token
- 检查 meetings/ 下是否存在当日日期文件夹(如 2026-03-13)
- 如不存在,创建日期文件夹
- 会议文档创建在当日日期文件夹下
注意事项
- 必须先安装飞书工具才能使用
- 优先使用文字记录,AI总结可能有删减
- 只记方法论,不记细节
- 知识沉淀是核心,帮助AI进化
Usage Guidance
This skill is internally consistent: it reads Feishu meeting text and writes structured summaries back into your Feishu wiki. Before enabling it, confirm you have (or are willing to install) the official Feishu plugin the skill requires, and check what Feishu permissions that plugin will have (read access to meeting documents and write/create/overwrite access to the wiki space). Because the skill will create and overwrite documents and persist meeting contents into a knowledge folder, consider privacy and access controls for sensitive meetings and whether you want automated writes into your team wiki. Also confirm the Feishu connector's credentials are managed securely by your environment (the skill itself does not declare or request separate secrets).
Capability Analysis
Type: OpenClaw Skill
Name: feishu-meeting-summary
Version: 1.0.4
The skill bundle is a legitimate tool designed to automate Feishu meeting summaries and knowledge management. It uses standard OpenClaw Feishu plugin functions (e.g., feishu_fetch_doc, feishu_create_doc) to read meeting transcripts and organize them into a structured wiki format. While the documentation contains specific Feishu tenant URLs (m1ed09stz4r.feishu.cn), these function as placeholders/examples for the AI's output format and do not indicate malicious intent or data exfiltration.
Capability Assessment
Purpose & Capability
The name/description (Feishu meeting summaries, knowledge sinking, search) match the runtime instructions which call Feishu-specific operations (feishu_fetch_doc, feishu_create_doc, feishu_update_doc, feishu_wiki_space_node) and describe writing to meetings/ and knowledge/ folders. Nothing requested in the SKILL.md is unrelated to that purpose.
Instruction Scope
Instructions are narrowly scoped to reading Feishu meeting text, extracting structured summaries, persisting them into the configured wiki/meetings and knowledge folders, and confirming links. They do not instruct the agent to read unrelated local files, environment variables, or to transmit data to non-Feishu endpoints. The requirement to always preserve original links and to verify after write is explicit.
Install Mechanism
This is an instruction-only skill with no install spec or bundled code. The SKILL.md tells the user to install an external Feishu plugin (official tool) before use; that is appropriate for a Feishu-integrated skill and avoids arbitrary downloads or archive extraction.
Credentials
The skill declares no required env vars or credentials, which is consistent because it relies on a separate Feishu plugin/connector for authentication. Users should verify that the Feishu plugin / Gateway configuration provides only the necessary Feishu read/write permissions (wiki space and document create/update) and that no unrelated credentials are granted.
Persistence & Privilege
always is false and there is no install-time persistence or modification of other skills. The skill's behavior requires creating and overwriting Feishu docs in the user's wiki space — this is expected for its purpose but means it needs write permission in Feishu; there is no indication it modifies agent/system configuration.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install feishu-meeting-summary - After installation, invoke the skill by name or use
/feishu-meeting-summary - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.4
- 改进会议文档生成方式,新增 overwrite 模式,确保原文链接不丢失
- 明确要求会议总结以详细的原文字记录为主,AI摘要仅作补充
- 增加文档写入后检查,未写入原文链接时自动覆盖重写
- 更新会议总结模板,细化文档结构和示例内容
- 强调不得在标题加日期前缀,原文链接必须保留
- 新增技术限制说明及推荐操作流程
v1.0.3
feishu-meeting-summary v1.0.3
- 更新安装指引,推荐参考飞书官方文档安装 OpenClaw 飞书插件
- 前置检查流程优化:首次调用时自动检测飞书插件安装与权限
- 配置流程调整,明确通过 API 获取和配置 wiki_root 与 meetings_folder
- 细化第一次配置和目录结构自动化处理说明
v1.0.2
- 新增 config 字段,支持 wiki_root 和 meetings_folder 配置项
- 补充说明首次使用时需指定并配置知识库根目录和文件夹 token
- 详细说明会议目录命名规则及自动创建逻辑
- 优化配置流程描述,提升首次使用指引清晰度
- 其余功能及结构保持不变
v1.0.1
- 配置项更新:首次使用需指定知识库根目录,meetings 与 knowledge 路径支持自定义,增加配置修改说明。
- 文档优化:将“助手名称”由固定“小羊”改为模板变量,更具通用性。
- 搜索历史返回内容中,将“小羊”替换为“助手”,适应不同部署。
- 其他描述细节优化,提高灵活性与适用范围。
v1.0.0
feishu-meeting-summary 1.0.0
- 新增读取飞书会议纪要,自动生成结构化会议总结能力
- 支持提取讨论话题、真实案例、实施方案及方法论,并整理到知识库
- 自动归档文档到 meetings/ 和 knowledge/ 目录,方便查找与搜索
- 内置会议纪要检索功能,支持关键词快速搜索历史内容
- 用户需预先安装飞书工具方可启用全部功能
Metadata
Frequently Asked Questions
What is 飞书会议总结?
飞书会议总结技能 - 读取飞书会议纪要,生成结构化总结,沉淀知识,支持搜索. It is an AI Agent Skill for Claude Code / OpenClaw, with 382 downloads so far.
How do I install 飞书会议总结?
Run "/install feishu-meeting-summary" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is 飞书会议总结 free?
Yes, 飞书会议总结 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does 飞书会议总结 support?
飞书会议总结 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created 飞书会议总结?
It is built and maintained by Yann (@yannboy); the current version is v1.0.4.
More Skills