在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用cron
星标66
分支8
更新时间2026年4月23日 08:52
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 the cron tool to schedule reminders or recurring tasks.
agent_turn)message for reminder/agent task prompts.exec, preferred for deterministic scripts)command for direct shell execution.timeout_seconds controls command timeout.deliver=true only when you explicitly want the raw cron result sent back.message="RUN:...".Fixed reminder (message mode):
cron(action="add", message="Time to take a break!", every_seconds=1200)
Recurring script (command mode, preferred):
cron(action="add", command="bash /abs/path/run_daily.sh", every_seconds=600, timeout_seconds=180)
Cron expression:
cron(action="add", command="python /abs/path/job.py", cron_expr="0 9 * * *", timeout_seconds=300)
One-shot task:
cron(action="add", command="bash /abs/path/one_off.sh", at_time="2026-04-15T09:00:00", timeout_seconds=300)
List/remove/enable/run:
cron(action="list")
cron(action="remove", job_id="abc123")
cron(action="enable", job_id="abc123", enabled=false)
cron(action="enable", job_id="abc123", enabled=true)
cron(action="run", job_id="abc123", force=true)
| User says | Parameters |
|---|---|
| every 20 minutes | every_seconds: 1200 |
| every hour | every_seconds: 3600 |
| every day at 8am | cron_expr: "0 8 * * *" |
| weekdays at 5pm | cron_expr: "0 17 * * 1-5" |
| at 2026-04-15 09:00 | at_time: "2026-04-15T09:00:00" |
command for production cron jobs requiring deterministic behavior.message when you want the agent to interpret and complete a higher-level task.deliver unset or false.