scheduler

Automate recurring commands and maintenance tasks with a built-in cron scheduler.

4|1|Updated May 8, 2026
One-click install
npx skills add https://github.com/IceWhaleTech/ZimaOS-Blue-temp --skill scheduler-icewhaletech
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: scheduler
Source: https://github.com/IceWhaleTech/ZimaOS-Blue-temp/tree/main/server/internal/skill/embedded/skills/scheduler
Command: npx skills add https://github.com/IceWhaleTech/ZimaOS-Blue-temp --skill scheduler-icewhaletech

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Scheduling and automating recurring tasks is error-prone and time-consuming without a reliable scheduler. This feature provides a built-in cron-style interface to create, list, trigger, enable/disable, and delete recurring commands.

Core Features & Use Cases

  • Create recurring timed task
  • List existing schedules
  • Run schedule immediately for testing
  • Temporarily stop/resume schedule
  • Remove schedule permanently

Quick Start

Create a recurring uptime_check task that runs every 10 minutes.

Frequently Asked Questions about scheduler

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate recurring maintenance tasks on a schedule?

You can automate recurring maintenance tasks by using a built-in cron scheduler to create timed commands. This validates cron expressions and supports listing, triggering, enabling, disabling, and deleting scheduled operations.

What's the best way to run a periodic command every 10 minutes?

The best way to run a periodic command every 10 minutes is to create a recurring timed task using the built-in cron scheduler. You can configure the schedule and immediately trigger it to verify the automation works.

Can I temporarily disable a scheduled task without deleting it?

Yes, you can temporarily disable a scheduled task without deleting it. The scheduler provides distinct enable and disable operations, allowing you to pause recurring commands and resume them later as needed.

How does a cron scheduler validate recurring task expressions?

A cron scheduler validates recurring task expressions by checking the syntax before creating the timed command. This ensures your periodic maintenance tasks are configured correctly and prevents scheduling errors.

How do I test a scheduled task before its next execution time?

You can test a scheduled task before its next execution time by triggering it immediately. This runs the recurring command on demand, allowing you to verify the maintenance task behaves as expected.

When should I use a built-in scheduler for periodic checks?

Use a built-in scheduler for periodic checks when your systems require automated maintenance and recurring commands. It eliminates manual scheduling errors by providing a reliable cron-style interface to manage timed tasks.