What problem does it solve?
Background workers that need to run on a recurring basis disappear when a session ends, forcing users to manually restart monitoring, auditing, and maintenance tasks. This Skill schedules workers via CronCreate so they survive session restarts.
Core Features & Use Cases
- Persistent Scheduling: Creates cron-based schedules for workers that continue running across session restarts, unlike in-session loops.
- Recommended Presets: Provides ready-made cron expressions for common workers such as security audits (*/15 * * * ), performance optimization (/30 * * * *), memory consolidation (hourly), codebase mapping, test coverage analysis, and API documentation.
- Use Case: A team wants automated security scanning every 15 minutes without keeping an interactive session open. Use this Skill to register a cron job that dispatches the audit worker on schedule.
Quick Start
Ask the assistant to schedule the audit worker to run every 15 minutes using a persistent cron schedule.