scheduler

Schedule tasks with cron, interval, or once modes via task management commands.

17|Updated Mar 14, 2023
One-click install
npx skills add https://github.com/hybrid-npm/hybrid --skill scheduler-hybrid-npm
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: scheduler
Source: https://github.com/hybrid-npm/hybrid/tree/main/packages/agent/skills/scheduler
Command: npx skills add https://github.com/hybrid-npm/hybrid --skill scheduler-hybrid-npm

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Schedule tasks to run at specific times or intervals for reminders, follow-ups, and recurring actions.

Core Features & Use Cases

  • ScheduleTask: create tasks with cron, interval, or once
  • listTasks: view and filter tasks by status
  • cancelTask: remove a scheduled task
  • pauseTask / resumeTask: pause or resume a task
  • getTask: fetch details of a task
  • runTask: trigger a task immediately
  • Common use cases include daily reminders, inactivity follow-ups, and periodic system checks.

Quick Start

Create a daily reminder task by specifying its name, scheduleType, scheduleValue, and prompt.

Frequently Asked Questions about scheduler

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

FAQPage Schema
How do I schedule recurring reminders and automated follow-ups for my agent?

You can schedule recurring reminders and automated follow-ups by creating tasks with cron, interval, or once scheduling modes to trigger timely prompts and checks across agent workflows.

What is the difference between cron, interval, and once scheduling modes for automated tasks?

Cron scheduling triggers tasks at specific calendar times, interval scheduling runs tasks at fixed periods, and once scheduling executes a task a single time for one-off reminders or follow-ups.

How do I manage and filter scheduled tasks after they are created?

You can manage scheduled tasks by using listTasks to view and filter tasks by status, getTask to fetch specific details, pauseTask or resumeTask to control execution, and cancelTask to remove them.

Can I trigger a scheduled task immediately instead of waiting for its next interval?

Yes, you can trigger a scheduled task immediately by using the runTask command, which executes the task prompt on demand without altering the original cron or interval schedule.

What do I need to set up periodic system checks and daily reminders in an agent workflow?

You need to specify the task name, scheduleType, scheduleValue, and prompt to set up periodic system checks and daily reminders, automating timely prompts without external dependencies.

Are there limitations when using interval scheduling for inactivity follow-ups?

Interval scheduling handles inactivity follow-ups by running tasks at fixed periods, but it requires active task management through pauseTask or cancelTask to prevent unnecessary recurring prompts once the user is active.