feishu-cron-reminder

v1.0.1

在飞书机器人上创建和管理定时提醒任务。支持一次性提醒和循环提醒,自动发送消息到飞书用户或群组。当用户提到"飞书定时提醒"、"飞书定时任务"、"飞书 cron"、"飞书提醒"时激活。

1· 140·5 current·5 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for zzqsama066/feishu-cron-reminder.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "feishu-cron-reminder" (zzqsama066/feishu-cron-reminder) from ClawHub.
Skill page: https://clawhub.ai/zzqsama066/feishu-cron-reminder
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install feishu-cron-reminder

ClawHub CLI

Package manager switcher

npx clawhub@latest install feishu-cron-reminder
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

latestvk97cbt2d75n6ez29rfw1hm5az184d369
140downloads
1stars
2versions
Updated 2w ago
v1.0.1
MIT-0

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)
--tzAsia/Shanghai
--sessionisolated
--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 工具。

Comments

Loading comments...