schedule
星标10
分支3
更新时间2026年4月16日 00:29
Create, list, and manage scheduled cron tasks that fire prompts at specific times or intervals
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Create, list, and manage scheduled cron tasks that fire prompts at specific times or intervals
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | schedule |
| description | Create, list, and manage scheduled cron tasks that fire prompts at specific times or intervals |
Use this skill when:
| Tool | Purpose | Context cost |
|---|---|---|
cron_create | Schedule a prompt (recurring or one-shot) | Low |
cron_list | List active scheduled tasks | Low |
cron_delete | Cancel a task by ID | Low |
cron_list — check what's already scheduledcron_create — create the new taskcron_delete — clean up when done"Remind me at 3pm to push the branch"
→ cron_create { cron: "0 15 * * *", prompt: "Reminder: push the branch", recurring: false }
"Check the CI pipeline every 10 minutes"
→ cron_create { cron: "*/10 * * * *", prompt: "Check CI pipeline status", recurring: true }
"What's scheduled right now?"
→ cron_list {}
"Stop the deploy monitor"
→ cron_list {}, then cron_delete { id: "<id>" }