schedule

Create a reusable scheduled task with cronExpression or fireAt.

2|1|Updated Apr 1, 2026
One-click install
npx skills add https://github.com/miriamdong/mstack --skill schedule-miriamdong
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: schedule
Source: https://github.com/miriamdong/mstack/tree/main/schedule
Command: npx skills add https://github.com/miriamdong/mstack --skill schedule-miriamdong

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Scheduling repetitive tasks from a session to run automatically or on demand, reducing manual orchestration.

Core Features & Use Cases

  • On-demand task creation: generate a reusable scheduler from the current context.
  • Interval-based automation: configure cron-style repetition to keep workflows up to date.
  • Use Case: Automate periodic data checks, report generation, and reminder notifications for ongoing projects.

Quick Start

Create a scheduled task from the current session that can run on demand or at a defined interval.

Frequently Asked Questions about schedule

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

FAQPage Schema
How do I create a scheduled task to automate repetitive data checks?

To create a scheduled task for repetitive data checks, you generate a reusable scheduler from your current session context. You must provide a kebab-case taskName and define a scheduling method using either a cronExpression for interval-based automation or a fireAt parameter for on-demand execution.

What is cron-style interval automation for workflow tasks?

Cron-style interval automation is a scheduling method that configures repetitive task execution at defined time intervals. By providing a cronExpression when you create a scheduled task, you can keep project workflows up to date without manual orchestration or intervention.

Can I run an on-demand task from my current session context?

Yes, you can run an on-demand task by creating a reusable scheduler from your current session. This requires defining a kebab-case taskName and specifying fireAt as your scheduling method, which integrates with the create_scheduled_task tool to execute the task exactly when needed.

Do I need a specific task name format to set up cron automation?

Yes, you need a kebab-case taskName to set up cron automation or any scheduled task. This formatting requirement ensures the task is properly registered and integrated when you pass your cronExpression or fireAt scheduling method to the create_scheduled_task tool.

What are the limitations of using session context for task scheduling?

The primary limitation of session-based task scheduling is that the task is created from your current session context, meaning the initial logic is captured at generation time. It requires a kebab-case taskName and a valid cronExpression or fireAt parameter to function properly within the create_scheduled_task tool integration.