返回 Skills
ruvnet/ruflo· MIT 内容可用

cron-schedule

Schedule persistent background workers via CronCreate

安装

与 skills.sh 相同的 Command / Prompt 安装方式


name: cron-schedule description: Schedule persistent background workers via CronCreate argument-hint: "<worker-name> [--interval CRON]" allowed-tools: CronCreate CronList CronDelete mcp__plugin_ruflo-core_ruflo__hooks_worker-dispatch

Use CronCreate for workers that must survive session restarts:

CronCreate({ schedule: "*/15 * * * *", prompt: "Run security audit worker via mcp__plugin_ruflo-core_ruflo__hooks_worker-dispatch" })

Recommended Schedules

WorkerCronDescription
audit*/15 * * * *Security scanning
optimize*/30 * * * *Performance optimization
consolidate0 * * * *Memory consolidation
map*/30 * * * *Codebase mapping
testgaps*/15 * * * *Test coverage analysis
document0 */2 * * *API documentation

When to Use Cron vs Loop

  • /loop: In-session, cache-aware, self-pacing. Use for active development.
  • CronCreate: Persistent, survives restarts. Use for CI/monitoring.