system-schedule

Create scheduled tasks from session objectives with cron or ISO timestamps.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill captures the actionable objective from a conversation and converts it into a reusable scheduled task so you no longer need to manually repeat setup steps or recreate prompts for recurring or one-off automation.

Core Features & Use Cases

  • Session analysis: Distills the current session into a single, repeatable objective and a self-contained prompt.
  • Prompt authoring: Produces an imperative, standalone prompt with explicit steps, file paths, tool names, expected outputs, and constraints so a future run can execute cold.
  • Flexible scheduling: Supports ad-hoc manual triggers, recurring cron expressions (local timezone), and one-time ISO fireAt timestamps and then invokes the create_scheduled_task tool.
  • Use cases: Automate daily summaries, schedule weekly reports, or create one-shot reminders derived from a prior conversation.

Quick Start

Create a recurring scheduled task named weekly-grade-report that runs every Monday at 08:00 to generate the class grade summary CSV and save it to /shared/reports.

Frequently Asked Questions about system-schedule

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

FAQPage Schema
How do I create a scheduled task from a prompt for automated daily reports?

To create a scheduled task, you provide a kebab-case taskName, a self-contained prompt, and either a local timezone cron expression or an ISO 8601 fireAt timestamp. The skill distills your actionable objective into a standalone prompt and calls the create_scheduled_task tool.

Can I use a cron expression to run periodic data pulls in my local timezone?

Yes, you can use a standard cron expression evaluated in your local timezone to schedule recurring periodic data pulls. This allows you to automate repetitive workflows like weekly reports or daily summaries without manual intervention.

What is a self-contained prompt for an automated task and why do I need it?

A self-contained prompt is an imperative, standalone instruction set with explicit steps, file paths, tool names, expected outputs, and constraints. It ensures a future scheduled task can execute cold without relying on prior session context.

Does this scheduling approach support one-off reminders using an ISO 8601 timestamp?

Yes, one-off reminders are supported by providing an ISO 8601 fireAt timestamp instead of a recurring cron expression. This allows you to schedule one-time automated executions derived from a prior conversation.

Can I manually trigger a scheduled task on-demand instead of using a cron schedule?

Yes, the flexible scheduling mechanism supports ad-hoc manual triggers alongside recurring cron expressions and one-time ISO timestamps. This allows you to execute the encapsulated actionable objective whenever needed.

What format is required for the taskName when creating a scheduled task?

The taskName must be provided in kebab-case format. This naming convention is required when the skill encapsulates your session objective and invokes the create_scheduled_task tool.