← Back to Skills Marketplace
zzqsama066

feishu-cron-reminder

by ZZQSAMA066 · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
149
Downloads
1
Stars
5
Active Installs
2
Versions
Install in OpenClaw
/install feishu-cron-reminder
Description
在飞书机器人上创建和管理定时提醒任务。支持一次性提醒和循环提醒,自动发送消息到飞书用户或群组。当用户提到"飞书定时提醒"、"飞书定时任务"、"飞书 cron"、"飞书提醒"时激活。
README (SKILL.md)

feishu-cron-reminder:飞书定时提醒

在 OpenClaw 中创建定时任务,自动将提醒消息推送到飞书。

前置要求

  1. OpenClaw 已配置飞书机器人
  2. 飞书机器人已添加到目标用户/群组

使用方法

用户只需说「提醒我明天9点开会」,AI 自动解析并创建 cron 任务。

支持的提醒类型

类型 示例 说明
一次性 "提醒我明天9点开会" 到指定时间发一次
每日循环 "每天早上8点提醒我" 每天固定时间
工作日循环 "每个工作日18点提醒下班" 周一到周五
每周循环 "每周一9点提醒周会" 每周固定星期

命令模板

一次性提醒(at 定时)

openclaw cron add \
  --name "我的提醒" \
  --at "2026-04-08T09:00:00.000Z" \
  --tz "Asia/Shanghai" \
  --session isolated \
  --message "直接发送以下文字到飞书,不需要调用任何工具:开会时间到了!" \
  --timeout-seconds 180 \
  --delete-after-run \
  --announce \
  --channel feishu \
  --to user:ou_XXXXXXXXXXXXXXXX \
  --description "一次性提醒示例"

每日循环提醒

openclaw cron add \
  --name "每日早提醒" \
  --cron "0 8 * * *" \
  --tz "Asia/Shanghai" \
  --session isolated \
  --message "直接发送以下文字到飞书,不需要调用任何工具:早安,今天也要加油!" \
  --timeout-seconds 180 \
  --announce \
  --channel feishu \
  --to user:ou_XXXXXXXXXXXXXXXX \
  --description "每日提醒"

工作日提醒

openclaw cron add \
  --name "工作日下班提醒" \
  --cron "0 18 * * 1-5" \
  --tz "Asia/Shanghai" \
  --session isolated \
  --message "直接发送以下文字到飞书,不需要调用任何工具:下班时间到,记得整理桌面!" \
  --timeout-seconds 180 \
  --announce \
  --channel feishu \
  --to user:ou_XXXXXXXXXXXXXXXX \
  --description "工作日下班提醒"

发送到群组

--to 参数改为群组 ID:

--to channel:oc_XXXXXXXXXXXXXXXX

cron 表达式参考

表达式 含义
0 8 * * * 每天 08:00
0 9 * * 1-5 工作日 09:00
30 18 * * 1-5 工作日 18:30
0 9 * * 1 每周一 09:00
0 20 * * * 每天 20:00

关键参数说明

参数 必须 说明
--name 任务名称
--cron --at二选一 cron 表达式
--at --cron二选一 ISO 绝对时间(UTC)
--tz Asia/Shanghai
--session isolated
--message 要发送的文字内容
--timeout-seconds 最小 180,建议 180
--delete-after-run 一次性任务必填 完成后自动删除
--announce 启用结果投递
--channel feishu 投递到飞书
--to 目标 ID(见下方)

飞书目标 ID

  • 用户 IDuser:ou_XXXXXXXXXXXXXXXX(以 ou_ 开头)
  • 群组 IDchannel:oc_XXXXXXXXXXXXXXXX(以 oc_ 开头)

获取方法:在飞书开发者后台查看机器人的 openId 或群 ID。

时区注意事项

--at "2026-04-08T09:00:00.000Z"UTC 时间,不是北京时间。

换算:北京时间 = UTC + 8 小时

  • 北京时间 09:00 = UTC 01:00 → --at "2026-04-08T01:00:00.000Z"

建议:用 --cron + --tz Asia/Shanghai 代替 --at,自动处理时区。

常见错误排查

症状 原因 解决方法
消息没发出去 --to ID 格式错误 必须是 user:ou_channel:oc_ 开头
任务不触发 --at 时间在过去 确认时间是未来,用 ISO 绝对时间
超时无响应 --timeout-seconds 太小 设为 180,不要低于 120
飞书收不到 没有飞书机器人 确认 OpenClaw 飞书配置正确

架构说明

本 Skill 调用 OpenClaw 内置的 openclaw cron 命令创建定时任务,消息通过 OpenClaw 的 announce 机制投递到飞书频道,不需要额外的 feishu_chat 工具。

Usage Guidance
This skill is coherent and low-risk as long as your OpenClaw instance already has Feishu configured. Before installing or enabling it, ensure: (1) your OpenClaw Feishu integration credentials are stored securely and only trusted bots/users can create cron jobs; (2) verify which user/group IDs the agent is allowed to message (so scheduled messages cannot be sent to unintended recipients); (3) review created jobs regularly (openclaw cron list / remove) to avoid unwanted recurring messages; (4) avoid putting sensitive secrets or private data directly into reminder messages. Note: the agent can create and run scheduled reminders via OpenClaw — that behavior is expected for this skill, not a hidden capability.
Capability Analysis
Type: OpenClaw Skill Name: feishu-cron-reminder Version: 1.0.1 The skill bundle provides instructions for an AI agent to manage Feishu (Lark) reminders using the platform's built-in `openclaw cron` command. It contains no executable code, external dependencies, or malicious instructions, functioning purely as a configuration wrapper for existing CLI tools (SKILL.md, README.md).
Capability Assessment
Purpose & Capability
Name/description match the content: SKILL.md shows how to create cron reminders using the OpenClaw CLI and the built-in announce mechanism for Feishu. It does not request unrelated services, binaries, or secrets.
Instruction Scope
Instructions are narrowly scoped: they provide concrete openclaw cron commands, explain required parameters (--to IDs, cron/--at, timezone), and reference only OpenClaw's Feishu integration. They do not instruct reading arbitrary files, accessing other env vars, or posting to external endpoints outside OpenClaw/Feishu.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is downloaded or written to disk by the skill itself.
Credentials
The skill declares no required environment variables or credentials. It reasonably assumes OpenClaw already has a Feishu integration configured; it does not ask for unrelated secrets or multiple credentials.
Persistence & Privilege
Flags are default (always:false, user-invocable:true). The skill does not request permanent presence or modify other skills' configs. It relies on OpenClaw cron jobs executing at scheduled times, which is consistent with its purpose.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install feishu-cron-reminder
  3. After installation, invoke the skill by name or use /feishu-cron-reminder
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
Fix metadata: remove redundant feishu_bot_id/secret fields to match SKILL.md dependencies
v1.0.0
Initial release: Feishu scheduled reminders for OpenClaw
Metadata
Slug feishu-cron-reminder
Version 1.0.1
License MIT-0
All-time Installs 5
Active Installs 5
Total Versions 2
Frequently Asked Questions

What is feishu-cron-reminder?

在飞书机器人上创建和管理定时提醒任务。支持一次性提醒和循环提醒,自动发送消息到飞书用户或群组。当用户提到"飞书定时提醒"、"飞书定时任务"、"飞书 cron"、"飞书提醒"时激活。 It is an AI Agent Skill for Claude Code / OpenClaw, with 149 downloads so far.

How do I install feishu-cron-reminder?

Run "/install feishu-cron-reminder" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is feishu-cron-reminder free?

Yes, feishu-cron-reminder is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does feishu-cron-reminder support?

feishu-cron-reminder is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created feishu-cron-reminder?

It is built and maintained by ZZQSAMA066 (@zzqsama066); the current version is v1.0.1.

💬 Comments