schedule

Create, list, and remove recurring or one-off scheduled tasks.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/Buckeyes22/weather-app --skill schedule-buckeyes22
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: schedule
Source: https://github.com/Buckeyes22/weather-app/tree/main/docs/corpora/citadel-protocols/skills/schedule
Command: npx skills add https://github.com/Buckeyes22/weather-app --skill schedule-buckeyes22

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Scheduling is essential to automate recurring and one-off tasks with reliability across sessions and devices. This skill provides an interface to create, list, and remove tasks using built-in tools like CronCreate, CronDelete, CronList, and supports cloud-persistent scheduling through RemoteTrigger when needed.

Core Features & Use Cases

  • Create recurring tasks with deterministic timing and visibility of next run.
  • List active schedules and their next execution times.
  • Remove schedules and handle fringe cases with clear guidance.

Quick Start

Add a recurring task, for example, schedule a PR check every 30 minutes.

Frequently Asked Questions about schedule

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

FAQPage Schema
How do I schedule recurring tasks that survive session restarts and device reboots?

You can set up recurring task scheduling using CronCreate with cron expressions, which supports deterministic timing and shows the next run time. For tasks needing to survive session restarts, cloud-persistent scheduling via RemoteTrigger is guided.

How do I list active cron schedules and check their next execution times?

You can list active schedules and view their next execution times using the CronList tool, which provides visibility into all currently active recurring and one-off task schedules.

What is the best way to handle cron expression errors when creating scheduled tasks?

The scheduling interface handles cron expression parsing and provides diagnostic messages with safe error responses, guiding you through fringe cases and confirmation prompts during CronCreate operations.

Can I remove or delete a scheduled task after it has been created?

Yes, you can remove active schedules using CronDelete, which handles task removal and provides clear guidance for fringe cases to ensure safe deletion of recurring and one-off tasks.

When do I need cloud-persistent scheduling instead of local cron scheduling?

Cloud-persistent scheduling via RemoteTrigger is needed when tasks must survive session sleeps, network drops, or device restarts, whereas standard CronCreate scheduling suits local recurring and one-off actions.