skillZs
LIVE SKILL TAGS
>>> LIVE SKILLS INDEX <<<
* OPEN SOURCE *
NO LOGIN, NO TRACKING
REAL INSTALL DATA
← back to all skills
ruvnet/ruflo795 installs

cron-schedule

Schedule persistent background workers via CronCreate

How do I install this agent skill?

npx skills add https://github.com/ruvnet/ruflo --skill cron-schedule
view source ↗

Is this agent skill safe to install?

  • Gen Agent Trust Hubpass

    This skill provides instructions for using platform-provided cron tools to schedule persistent background tasks. No security issues or malicious patterns were detected.

  • Socketpass

    No alerts

  • Snykpass

    Risk: LOW · No issues

What does this agent skill do?

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

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.

Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.

<a href="https://skillzs.dev/skills/ruvnet/ruflo/cron-schedule">View cron-schedule on skillZs</a>