← 返回 Skills 市场
366
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install feishu-notes-bot
功能描述
通过飞书机器人创建、查询和管理笔记,支持飞书消息交互和云文档同步。
使用说明 (SKILL.md)
Feishu Notes Bot - 飞书笔记机器人
通过飞书机器人实现笔记的创建、查询和管理,支持飞书消息交互和云文档同步。
🎯 功能特性
核心功能
- 📝 创建笔记 - 在飞书聊天中快速创建笔记
- 🔍 搜索笔记 - 搜索本地和飞书云文档中的笔记
- 📊 查看行动项 - 查询待办事项列表
- 📋 会议记录 - 结构化会议笔记并同步到飞书文档
- 🔔 消息通知 - 飞书消息提醒和推送
支持的笔记类型
| 类型 | 命令示例 | 存储位置 |
|---|---|---|
| 会议笔记 | "记录会议:项目进度会" | 飞书云文档 + 本地 |
| 快速笔记 | "记一下:明天买咖啡" | 本地 |
| 日记 | "写日记" | 本地 |
| 项目笔记 | "项目更新:A 项目进度" | 飞书云文档 |
| 行动项 | "待办:下周完成报告" | 本地 actions.md |
⚙️ 配置步骤
第 1 步:飞书应用配置
-
访问飞书开放平台:
https://open.feishu.cn/ -
创建企业自建应用:
- 登录飞书管理后台
- 进入「开发者后台」
- 创建企业自建应用
- 应用名称:Notes Bot
-
配置应用权限:
进入「权限管理」,添加以下权限:
权限 权限标识 用途 发送消息 im:message发送笔记通知 读取/创建文档 docx:docs管理飞书文档 云空间访问 docx:drive访问云文档 机器人功能 im:chat群组消息交互 知识库 wiki:wiki知识库管理 -
获取凭证:
- App ID(格式:
cli_xxxxxxxxxxxx) - App Secret(一串加密字符)
- App ID(格式:
-
配置机器人:
- 进入「机器人」功能
- 启用机器人
- 配置回调地址(可选)
第 2 步:配置到 OpenClaw
方法 A:使用配置文件
编辑 ~/.openclaw/openclaw.json:
{
"channels": {
"feishu": {
"accounts": {
"default": {
"appId": "cli_your_app_id",
"appSecret": "your_app_secret",
"dmPolicy": "pairing"
}
},
"enabled": true
}
}
}
方法 B:使用环境变量
export FEISHU_APP_ID="cli_your_app_id"
export FEISHU_APP_SECRET="your_app_secret"
第 3 步:配置笔记存储路径
编辑 ~/notes/config.md:
# Platform Routing
meetings: feishu-doc # 会议笔记存飞书文档
decisions: local # 决策记录存本地
projects: feishu-doc # 项目笔记存飞书文档
journal: local # 日记存本地
quick: local # 快速笔记存本地
💬 飞书机器人使用方式
私聊机器人
在飞书中私聊 Notes Bot,发送:
记录会议:项目进度汇报
时间:今天下午 3 点
参会:张三、李四、王五
内容:讨论了 A 项目开发进度,决定下周上线
机器人会自动:
- 创建结构化会议笔记
- 保存到飞书云文档
- 提取行动项
- 返回文档链接
群聊机器人
在飞书群聊中 @Notes Bot:
@Notes Bot 创建会议笔记
机器人会引导填写会议信息。
快捷命令
| 命令 | 功能 |
|---|---|
/note \x3C内容> |
创建快速笔记 |
/meeting \x3C主题> |
创建会议笔记 |
/todo \x3C任务> |
添加行动项 |
/search \x3C关键词> |
搜索笔记 |
/actions |
查看待办事项 |
/help |
显示帮助 |
🔌 API 集成
飞书 API 基础用法
获取访问令牌:
curl -X POST "https://open.feishu.cn/open-apis/auth/v3/tenant_access_token/internal" \
-H "Content-Type: application/json" \
-d '{
"app_id": "cli_xxx",
"app_secret": "xxx"
}'
发送消息:
curl -X POST "https://open.feishu.cn/open-apis/im/v1/messages" \
-H "Authorization: Bearer \x3Ctoken>" \
-H "Content-Type: application/json" \
-d '{
"receive_id": "user_id",
"msg_type": "interactive",
"content": "{\"title\":\"笔记已创建\",\"content\":\"...\"}"
}'
创建飞书文档:
curl -X POST "https://open.feishu.cn/open-apis/docx/v1/documents" \
-H "Authorization: Bearer \x3Ctoken>" \
-H "Content-Type: application/json" \
-d '{
"title": "会议笔记",
"parent_folder": "folder_id"
}'
📁 文件结构
feishu-notes-bot/
├── SKILL.md # 本文件
├── scripts/
│ ├── create_note.py # 创建笔记脚本
│ ├── sync_to_feishu.py # 同步到飞书
│ └── send_notification.py # 发送通知
├── templates/
│ ├── meeting.md # 会议笔记模板
│ ├── decision.md # 决策记录模板
│ └── quick.md # 快速笔记模板
└── config/
├── feishu_example.json # 飞书配置示例
└── routing_example.md # 路由配置示例
🎯 使用场景
场景 1:会议记录
- 会议中打开飞书
- 私聊 Notes Bot 记录要点
- 会后自动生成结构化笔记
- 同步到飞书云文档分享给参会者
场景 2:待办管理
- 随时发送待办事项
- 自动记录到 actions.md
- 定期推送待办提醒
- 完成后标记状态
场景 3:知识沉淀
- 项目讨论时记录决策
- 自动分类到项目笔记
- 同步到飞书知识库
- 团队可搜索查阅
⚠️ 注意事项
- 权限配置: 确保飞书应用有文档读写权限
- 网络访问: 需要能访问飞书 API(国内可直连)
- 凭证安全: App Secret 不要公开分享
- 速率限制: 飞书 API 有调用频率限制
📞 故障排查
问题:无法发送消息
检查:
- 飞书应用权限是否配置
- App ID/Secret 是否正确
- 网络是否通畅
问题:文档创建失败
检查:
- 是否有 docx:docs 权限
- 父文件夹 ID 是否正确
- 文档标题是否合规
问题:机器人无响应
检查:
- 机器人是否启用
- 回调地址是否配置(如需要)
- Gateway 是否运行
🔗 相关资源
- 飞书开放平台:https://open.feishu.cn/
- 飞书 API 文档:https://open.feishu.cn/document/
- notes 技能:~/skills/notes/
- feishu-doc 技能:~/skills/feishu-doc/
版本:1.0.0 | 更新时间:2026-03-04
安全使用建议
This skill appears coherent for connecting to Feishu and saving notes, but take these practical precautions before installing: 1) Confirm the scripts the README references actually exist where the agent will run — if the package doesn't include them, ask the author what code will run. 2) Create a Feishu app with minimal permissions and rotate credentials if possible; never reuse high-privilege secrets. 3) Understand where notes are stored locally (~/notes, actions.md) and set appropriate filesystem permissions if they may contain sensitive data. 4) If you will provide FEISHU_APP_SECRET as an environment variable, supply it only to trusted agents/hosts; review any callbacks/URLs you configure for the bot to ensure they point to expected endpoints. 5) If you want higher assurance, request the missing scripts/source from the publisher or prefer a version that bundles the code so you can audit it prior to giving credentials.
功能分析
Type: OpenClaw Skill
Name: feishu-notes-bot
Version: 1.0.0
The OpenClaw skill 'feishu-notes-bot' appears benign. Its `SKILL.md` clearly outlines the purpose of creating and managing notes via a Feishu bot, requiring `FEISHU_APP_ID` and `FEISHU_APP_SECRET` for legitimate Feishu API interactions. The skill uses `curl` for network communication with `open.feishu.cn` and interacts with local files for note storage, all of which are consistent with its stated functionality. There is no evidence of intentional data exfiltration to unauthorized endpoints, malicious execution, persistence mechanisms, obfuscation, or prompt injection attempts designed to subvert the agent's behavior beyond its described purpose.
能力评估
Purpose & Capability
Name/description (Feishu Notes Bot) match the behavior in SKILL.md: calling Feishu APIs to create/search docs and sending messages. Requested env vars (FEISHU_APP_ID, FEISHU_APP_SECRET) and required binary (curl) are appropriate. Minor inconsistency: SKILL.md lists a scripts/ directory (create_note.py, sync_to_feishu.py, send_notification.py) and a more extensive file structure, but the published package contains only SKILL.md, two templates and a config example — no scripts. This could be an innocuous documentation artifact or mean the skill expects external scripts that are not bundled.
Instruction Scope
Instructions are explicit about using the Feishu API (tenant_access_token and message/doc endpoints) and about local storage under ~/notes and a configuration file (~/.openclaw/openclaw.json). They do not instruct reading unrelated system files or exfiltrating data to third-party endpoints. Note: SKILL.md tells users to edit ~/.openclaw/openclaw.json but the skill metadata declared no required config paths; this is a minor mismatch to be aware of.
Install Mechanism
No install spec (instruction-only). That is the lowest-risk install model — nothing is downloaded or written by an installer as part of the skill package.
Credentials
Only FEISHU_APP_ID and FEISHU_APP_SECRET are required, which is proportional to a Feishu integration. No unrelated credentials or broad-scoped secrets are requested.
Persistence & Privilege
always is false and the skill does not request unusual privileges or claim to modify other skills or global agent configuration. It expects to read/write local notes (~/notes) and the user's OpenClaw config, which is consistent with its functionality.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install feishu-notes-bot - 安装完成后,直接呼叫该 Skill 的名称或使用
/feishu-notes-bot触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of Feishu Notes Bot.
- First version providing Feishu chat-based note creation, searching, and management.
- Supports interactive message handling and cloud document sync.
- Includes commands for meeting notes, quick notes, todos, and more.
- Configurable storage for different note types (local or Feishu doc).
- API integration samples and troubleshooting steps included.
元数据
常见问题
Feishu Notes Bot 是什么?
通过飞书机器人创建、查询和管理笔记,支持飞书消息交互和云文档同步。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 366 次。
如何安装 Feishu Notes Bot?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install feishu-notes-bot」即可一键安装,无需额外配置。
Feishu Notes Bot 是免费的吗?
是的,Feishu Notes Bot 完全免费(开源免费),可自由下载、安装和使用。
Feishu Notes Bot 支持哪些平台?
Feishu Notes Bot 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(linux, darwin, win32)。
谁开发了 Feishu Notes Bot?
由 ilinkzwq(@ilinkzwq)开发并维护,当前版本 v1.0.0。
推荐 Skills