在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用cron
星标65
分支13
更新时间2026年2月12日 01:30
Schedule reminders and agent tasks.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Schedule reminders and agent tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | cron |
| description | Schedule reminders and agent tasks. |
使用 cron 工具设置定时提醒或定时 Agent 任务。
mode="remind")直接发送预设文本,不经过 Agent 处理。适合固定提醒。
cron(action="add", message="该喝水了!💧", every_seconds=3600, mode="remind")
mode="agent") ⭐Agent 在触发时用完整工具链执行指令:可调用 weather、exec、web_search 等工具,处理结果自动发送给用户。
cron(action="add", message="查询景德镇今天的天气预报,温度用摄氏度,格式化后发送给我", cron_expr="0 7 * * *", timezone="Asia/Shanghai", mode="agent")
cron(action="add", message="检查 /opt 目录磁盘使用情况并报告", every_seconds=86400, mode="agent")
cron(action="list")
cron(action="remove", job_id="abc123")
| 用户说 | 参数 |
|---|---|
| 每 20 分钟 | every_seconds=1200 |
| 每小时 | every_seconds=3600 |
| 每天早上 8 点(北京时间) | cron_expr="0 8 * * *", timezone="Asia/Shanghai" |
| 工作日下午 5 点 | cron_expr="0 17 * * 1-5", timezone="Asia/Shanghai" |
cron_expr 时,务必设置 timezone,否则默认 UTCmessage 就是用户会收到的原文message 必须是自然语言指令,不能是工具调用语法:
"查询景德镇今天天气预报,温度摄氏度,详细格式""检查磁盘使用情况并报告""exec(command='curl wttr.in/...')""weather(location='Jingdezhen')"