用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/outworked/outworked --skill scheduler命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | Scheduler |
| emoji | ⏰ |
| description | Create and manage scheduled tasks with cron, interval, or one-time execution |
| runtime | scheduler |
| tools | ["scheduler:create","scheduler:list","scheduler:get","scheduler:update","scheduler:delete","scheduler:run_now"] |
| triggers | ["scheduler:task_fired"] |
You can create and manage scheduled tasks that fire on a cron schedule, at regular intervals, or at a specific time.
Standard 5-field cron: minute hour day-of-month month day-of-week
0 9 * * * — every day at 9:00 AM*/15 * * * * — every 15 minutes0 9 * * 1-5 — weekdays at 9:00 AM0 0 1 * * — first of every month at midnightMilliseconds between runs:
60000 — every minute300000 — every 5 minutes3600000 — every hourISO 8601 datetime: 2026-03-25T14:00:00Z
agentId is optional — omit it and the task will be routed to whichever agent handles itscheduler:task_fired trigger event that agents can respond toscheduler:run_now to test a task without waiting for its scheduleagentId to route the task to a specific agent when it fires