Turns persistent background workers into actual cron jobs that survive session restarts. You get recommended schedules for common tasks like security audits every 15 minutes or documentation updates every 2 hours, plus a clear decision matrix: use /loop for active development work that benefits from cache awareness, use CronCreate for CI and monitoring tasks that need to keep running when you're not there. The tool wraps CronCreate, CronList, and CronDelete with worker-dispatch integration, so you can set up something like a test coverage analyzer that checks gaps every 15 minutes without babysitting it. Honestly fills a gap between ephemeral dev loops and proper infrastructure automation.
npx skills add https://github.com/ruvnet/ruflo --skill cron-schedule