feishu-cron-reminder/SKILL.md
Create cron jobs that reliably deliver reminders to Feishu (飞书) chats. Use when the user asks to set up scheduled reminders, periodic notifications, or any recurring task that should send messages to a Feishu conversation. Triggers: '飞书定时提醒', '定时任务发飞书', 'cron reminder to feishu', '每小时提醒', 'scheduled feishu message'.
npx skillsauth add gula00/autoclaw-skills feishu-cron-reminderInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
通过 OpenClaw cron 创建定时任务,稳定投递提醒到飞书会话。
在创建任何 cron 定时任务之前,必须先向用户确认两件事:
用户确认后才能创建任务。不要自作主张定频率或目标。
--announce --channel feishu。使用 --session main --system-event,让主会话收到 system event 后调用 message 工具发飞书:
openclaw cron add \
--name "<任务名>" \
--every "<间隔>" \
--session main \
--system-event "[CRON定时任务] <任务名>。你必须立即调用 message 工具:action=send, channel=feishu, message='<提醒内容>'。调用完后回复 NO_REPLY。不要做其他任何事情,不要回复文字,只需要调用 message 工具发送飞书消息。不要删除或修改任何 cron 任务。"
| 参数 | 值 | 说明 |
|------|-----|------|
| --session | main | 必须用 main,isolated 没有飞书权限 |
| --system-event | 含 message 工具调用指令 | 明确要求调用 message 工具发飞书 |
| --every | 1m / 5m / 30m / 1h | 时间间隔 |
| --cron | */30 * * * * | 或用 cron 表达式(配合 --tz) |
system event 的 text 必须包含:
[CRON定时任务] 标记NO_REPLYnode /Applications/AutoClaw.app/Contents/Resources/gateway/openclaw/openclaw.mjs cron <command>
# 列出所有任务
openclaw cron list
# 修改间隔
openclaw cron edit <id> --every "30m"
# 删除任务(⚠️ 必须先征得用户同意!)
openclaw cron rm <id>
# 查看执行记录
openclaw cron runs --id <id>
# 手动触发测试
openclaw cron run <id>
Q: 为什么不用 --announce --channel feishu?
A: announce 直投飞书路由不可靠,可能投到错误会话或静默失败。
Q: 为什么不用 --session isolated?
A: isolated sub-agent 没有飞书 message 工具权限,发送会报错。
Q: 主会话收到 system event 但没发飞书怎么办? A: system event 指令必须非常明确地要求调用 message 工具,包含完整参数,并说明不需要回复文字。
development
Use when you have a spec or requirements for a multi-step task, before touching code
tools
Extract frames or short clips from videos using ffmpeg.
development
UI/UX design intelligence and implementation guidance for building polished interfaces. Use when the user asks for UI design, UX flows, information architecture, visual style direction, design systems/tokens, component specs, copy/microcopy, accessibility, or to generate/critique/refine frontend UI (HTML/CSS/JS, React, Next.js, Vue, Svelte, Tailwind). Includes workflows for (1) generating new UI layouts and styling, (2) improving existing UI/UX, (3) producing design-system tokens and component guidelines, and (4) turning UX recommendations into concrete code changes.
tools
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.