scheduler
Use when user wants to schedule tasks for future, recurring, or interval execution. Manages one-time, cron, and interval tasks dispatched via C4 comm-bridge.
适合你,如果需要按计划自动执行代码或脚本
npx oh-my-skill add zylos-ai/zylos-core/schedulercurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- zylos-ai/zylos-core/schedulernpx oh-my-skill verify zylos-ai/zylos-core/scheduler怎么用
商店整理自技能原文 · 版本 7a034ca · 表述以原文为准Claude 可以按你设定的时间自动执行任务,支持一次性、重复(cron)和间隔执行。任务通过 C4 通信桥调度,并根据优先级和空闲状态处理。
当你需要安排未来某个时间执行任务,或设置定期重复的任务时触发。
技能原文 SKILL.md
Task Scheduler (C5)
Enables Claude to work autonomously by dispatching scheduled tasks via C4 comm-bridge.
How It Works
- Activity Monitor writes state to
~/zylos/activity-monitor/agent-status.json - Scheduler checks for pending tasks that are due
- If runtime is alive, dispatches task to C4 comm-bridge
- C4 handles execution control (idle waiting, priority queueing)
- Task sent to Claude based on priority and idle requirements
CLI
~/zylos/.claude/skills/scheduler/scripts/cli.js <command>
| Command | Description | Reference | |---------|-------------|-----------| | add <prompt> [options] | Add a new task | references/add.md | | update <task-id> [options] | Update an existing task | references/update.md | | list / next / running / history | Query tasks | references/query.md | | done / remove / pause / resume | Task lifecycle | references/lifecycle.md |
Timezone
Resolves TZ: ~/zylos/.env > process.env.TZ > UTC. Times are parsed and displayed in configured timezone. DB stores UTC. See references/config.md for details.