AgentSkillsCN

cron

安排提醒和重复性任务。

SKILL.md
--- frontmatter
name: cron
description: Schedule reminders and recurring tasks.

Cron

Use the cron tool to schedule reminders or recurring tasks.

Modes:

  1. Reminder: send a message to the user.
  2. Task: run a task description through the agent at each interval.

Examples:

code
cron(action="add", message="Time to stand up", every_seconds=3600)
cron(action="add", message="Check status and summarize", cron_expr="0 9 * * 1-5")
cron(action="list")
cron(action="remove", job_id="abc123")