Skip to main content

cron-schedule

Schedule persistent background workers via CronCreate

インストールへ移動

ソース情報

リポジトリ
ruvnet/ruflo
ソースの最終更新活動
2026年7月17日 03:06
検出された SKILL.md の言語
英語
スター
72,687
フォーク
8,609

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
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.
GitHubで見る