← 返回 Skills 市场
ramlee77

Feishu Meeting Reminder

作者 ramlee77 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
92
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install feishu-meeting-reminder
功能描述
飞书会议自动提醒 - 会议前自动提醒参会人员,避免错过重要会议。 **功能**: - 会议开始前 N 分钟自动提醒参会人 - 支持设置重复提醒规则 - 自动创建飞书日程并设置提醒 - 支持查看即将到来的会议列表 **触发条件**: - 用户提到"会议提醒"、"会议通知"、"开会提醒"、"提醒参会" - 用户要求创...
使用说明 (SKILL.md)

飞书会议自动提醒

🚨 执行前必读

  • 时间格式:ISO 8601 / RFC 3339(带时区),例如 2026-02-28T14:00:00+08:00
  • user_open_id 必填:从消息上下文的 SenderId 获取(ou_...)
  • reminders 参数:正数表示会前提醒,负数表示会后提醒(分钟)
  • 首次添加参会人时自动创建飞书视频会议

📋 快速索引

用户意图 工具 action 必填参数
创建会议并提醒 feishu_calendar_event create summary, start_time, end_time, user_open_id
查看今日会议 feishu_calendar_event list start_time, end_time
查看会议详情 feishu_calendar_event get event_id
修改会议 feishu_calendar_event patch event_id
删除会议 feishu_calendar_event delete event_id
搜索会议 feishu_calendar_event search query

🛠️ 功能详解

1. 创建会议并设置提醒

创建会议并自动在会前提醒参会人:

{
  "action": "create",
  "summary": "周例会",
  "description": "每周一上午10点例会",
  "start_time": "2026-03-31T10:00:00+08:00",
  "end_time": "2026-03-31T11:00:00+08:00",
  "user_open_id": "ou_xxx",
  "attendees": [
    {"type": "user", "id": "ou_xxx"},
    {"type": "user", "id": "ou_yyy"}
  ],
  "reminders": [
    {"minutes": 15},   // 会前15分钟提醒
    {"minutes": 5}     // 会前5分钟提醒
  ],
  "need_notification": true
}

reminders 可选值

  • 15:会前15分钟
  • 10:会前10分钟
  • 5:会前5分钟
  • 0:会议开始时
  • -30:会议结束后30分钟

2. 查看即将到来的会议

{
  "action": "list",
  "start_time": "2026-03-31T00:00:00+08:00",
  "end_time": "2026-03-31T23:59:59+08:00",
  "user_open_id": "ou_xxx"
}

3. 会议冲突检测

在创建会议前检查时间冲突:

{
  "action": "list",
  "start_time": "2026-03-31T09:00:00+08:00",
  "end_time": "2026-03-31T12:00:00+08:00",
  "user_open_id": "ou_xxx"
}

如果返回空结果则表示该时间段空闲。

4. 搜索会议

{
  "action": "search",
  "query": "周例会"
}

💰 定价信息

版本 价格 功能
免费版 ¥0 基础会议创建、查看
专业版 ¥12/月 +自动提醒、重复提醒、冲突检测
企业版 ¥39/月 +批量创建、会议统计、API

📝 使用示例

用户说:"帮我创建一个明天上午10点的会议,主题是项目评审,参会人有张三和李四,会前15分钟提醒"

执行步骤

  1. 创建会议(带提醒)
  2. 添加参会人
  3. 确认创建成功

📚 附录:日历 API 限制

  • 时间区间最长40天
  • 返回实例数量上限1000
  • 重复日程会自动展开为多个实例
安全使用建议
Before installing, ask the publisher how the skill authenticates to Feishu and what credentials/scopes it needs. Confirm whether the platform will provide a Feishu integration (and what scopes it grants) or whether you'll need to supply app_id/app_secret/access_token — and insist on least-privilege (calendar/event + notification scopes only). Verify where reminders are delivered (in-app message, push, email, SMS) and what user data (open IDs, attendee emails) will be read or stored. Because the skill's instructions reference creating events and notifying attendees but declare no credentials, treat this as incomplete: test with a non-production/dummy account and require the author to document the auth flow and data handling before granting access or supplying any secrets.
功能分析
Type: OpenClaw Skill Name: feishu-meeting-reminder Version: 1.0.0 The skill bundle provides standard instructions for an AI agent to interact with the Feishu (Lark) Calendar API. The SKILL.md file defines legitimate actions such as creating, listing, and searching for meeting events using the 'feishu_calendar_event' tool. There is no evidence of malicious intent, data exfiltration, or prompt injection; the instructions are consistent with the stated purpose of a meeting reminder utility.
能力评估
Purpose & Capability
The SKILL.md describes creating events, adding attendees, and sending reminders via Feishu (references a feishu_calendar_event tool). Yet the skill declares no required environment variables, credentials, or config paths. Real Feishu API calls normally require app credentials/access tokens and explicit scopes; those are absent here, so it's unclear how the claimed functionality would be performed.
Instruction Scope
Instructions show JSON payloads and require user_open_id from message context, but do not specify any authentication flow, token acquisition/refresh, or where notifications are delivered. The doc assumes access to a feishu_calendar_event tool and message context but gives no runtime constraints, error handling, or limits on what user data (attendee IDs) may be read/transmitted.
Install Mechanism
No install spec and no code files — this is instruction-only, so nothing will be written to disk by the skill itself. That minimizes install-time risk.
Credentials
The skill declares zero required environment variables or primary credentials despite needing to operate against Feishu APIs and potentially send notifications to users. This is disproportionate and ambiguous: either the platform provides Feishu access implicitly (not declared), or the skill omitted necessary credential requirements.
Persistence & Privilege
always is false and there is no indication the skill requests permanent system-level presence or modifies other skills. No elevated persistence/privileges are requested.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install feishu-meeting-reminder
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /feishu-meeting-reminder 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
First release: Auto-remind attendees before meetings
元数据
Slug feishu-meeting-reminder
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Feishu Meeting Reminder 是什么?

飞书会议自动提醒 - 会议前自动提醒参会人员,避免错过重要会议。 **功能**: - 会议开始前 N 分钟自动提醒参会人 - 支持设置重复提醒规则 - 自动创建飞书日程并设置提醒 - 支持查看即将到来的会议列表 **触发条件**: - 用户提到"会议提醒"、"会议通知"、"开会提醒"、"提醒参会" - 用户要求创... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 92 次。

如何安装 Feishu Meeting Reminder?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install feishu-meeting-reminder」即可一键安装,无需额外配置。

Feishu Meeting Reminder 是免费的吗?

是的,Feishu Meeting Reminder 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Feishu Meeting Reminder 支持哪些平台?

Feishu Meeting Reminder 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Feishu Meeting Reminder?

由 ramlee77(@ramlee77)开发并维护,当前版本 v1.0.0。

💬 留言讨论