Skip to main content

cron-schedule

Schedule persistent background workers via CronCreate

Jump to install

Source facts

Repository
ruvnet/ruflo
Last source activity
July 17, 2026 at 03:06
Detected SKILL.md language
English
Stars
72,687
Forks
8,609

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
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 | 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.
View on GitHub