cron
星标9
分支0
更新时间2026年3月23日 17:19
Schedule reminders and recurring tasks.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Schedule reminders and recurring tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
| name | cron |
| description | Schedule reminders and recurring tasks. |
Use add_cron, list_cron, and remove_cron to schedule reminders and manage recurring tasks.
Fixed reminder:
add_cron(message="Time to take a break!", interval=1200)
Dynamic task (agent executes each time):
add_cron(message="Check yankeguo/weavbot GitHub stars and report", interval=600)
One-time scheduled task (compute ISO datetime from current time):
add_cron(message="Remind me about the meeting", at="<ISO datetime>")
Timezone-aware cron:
add_cron(message="Morning standup", expr="0 9 * * 1-5", tz="America/Vancouver")
List/remove:
list_cron()
remove_cron(job_id="abc123")
| User says | Parameters |
|---|---|
| every 20 minutes | interval: 1200 |
| every hour | interval: 3600 |
| every day at 8am | expr: "0 8 ** *" |
| weekdays at 5pm | expr: "0 17 ** 1-5" |
| 9am Vancouver time daily | expr: "0 9 ** *", tz: "America/Vancouver" |
| at a specific time | at: ISO datetime string (compute from current time) |
Use tz with expr to schedule in a specific IANA timezone. Without tz, the server's local timezone is used.