How to install cron-schedule
npx skills add https://github.com/ruvnet/ruflo --skill cron-scheduleClaude Code
Cursor
Windsurf
Cline
Full instructions (SKILL.md)
Source of truth, from ruvnet/ruflo.
name: cron-schedule description: Schedule persistent background workers via CronCreate argument-hint: "<worker-name> [--interval CRON]" allowed-tools: CronCreate CronList CronDelete mcp__claude-flow__hooks_worker-dispatch
Use CronCreate for workers that must survive session restarts:
CronCreate({ schedule: "*/15 * * * *", prompt: "Run security audit worker via mcp__claude-flow__hooks_worker-dispatch" })
Recommended Schedules
| Worker | Cron | Description |
|---|---|---|
| audit | */15 * * * * | Security scanning |
| optimize | */30 * * * * | Performance optimization |
| consolidate | 0 * * * * | Memory consolidation |
| map | */30 * * * * | Codebase mapping |
| testgaps | */15 * * * * | Test coverage analysis |
| document | 0 */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.
Related skills
More from ruvnet/ruflo and the wider catalog.
AG
agent-arch-system-design
ruvnet/ruflo
Agent skill for arch-system-design - invoke with $agent-arch-system-design
1.1k installs
AG
agent-workflow
ruvnet/ruflo
Agent skill for workflow - invoke with $agent-workflow
1.1k installsAudited
WO
workflow-automation
ruvnet/ruflo
>
1.1k installs
SE
security-audit
ruvnet/ruflo
>
1.1k installs
AG
agent-swarm
ruvnet/ruflo
Agent skill for swarm - invoke with $agent-swarm
998 installsAudited
AG
agent-spec-mobile-react-native
ruvnet/ruflo
Agent skill for spec-mobile-react-native - invoke with $agent-spec-mobile-react-native
979 installsAudited