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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| 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.