cron-schedule
Installation
SKILL.md
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
agent-swarm
Agent skill for swarm - invoke with $agent-swarm
402agent-workflow
Agent skill for workflow - invoke with $agent-workflow
402workflow-automation
>
390agent-arch-system-design
Agent skill for arch-system-design - invoke with $agent-arch-system-design
385security-audit
>
375agent-architecture
Agent skill for architecture - invoke with $agent-architecture
354