AgentSkillsCN

scheduler

当用户希望为未来、定期或间隔执行的任务进行计划时使用此功能。通过C4通信桥,管理一次性任务、Cron任务以及间隔任务。

SKILL.md
--- frontmatter
name: scheduler
description: 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.

Task Scheduler (C5)

Enables Claude to work autonomously by dispatching scheduled tasks via C4 comm-bridge.

How It Works

  1. Activity Monitor writes state to ~/zylos/activity-monitor/claude-status.json
  2. Scheduler checks for pending tasks that are due
  3. If runtime is alive, dispatches task to C4 comm-bridge
  4. C4 handles execution control (idle waiting, priority queueing)
  5. Task sent to Claude based on priority and idle requirements

CLI

~/zylos/.claude/skills/scheduler/scripts/cli.js <command>

CommandDescriptionReference
add <prompt> [options]Add a new taskreferences/add.md
update <task-id> [options]Update an existing taskreferences/update.md
list / next / running / historyQuery tasksreferences/query.md
done / remove / pause / resumeTask lifecyclereferences/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.