schedule

Creates and updates scheduled tasks that run automatically on cron or one-time triggers.

1|Updated Feb 5, 2026
One-click install
npx skills add https://github.com/ankur3-101106/dotfiles-hypr --skill schedule-ankur3-101106
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: schedule
Source: https://github.com/ankur3-101106/dotfiles-hypr/tree/main/Claude/local-agent-mode-sessions/skills-plugin/ab436dd0-752a-4b9b-8503-dc6695d483cb/cedd2988-3bab-48aa-884f-cc7b3bfb8e81/skills/schedule
Command: npx skills add https://github.com/ankur3-101106/dotfiles-hypr --skill schedule-ankur3-101106

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Automating recurring or future work normally requires manual setup of schedulers and careful prompt writing; this Skill turns a conversation into a self-contained scheduled task that runs on its own. ## Core Features & Use Cases - Create scheduled tasks: Distills the current session into a reusable, self-contained prompt and registers it with a cron expression, a one-time fire time, or ad-hoc execution. - Update existing tasks: Reschedules, edits prompts, or pauses/resumes tasks via update_scheduled_task, looking up IDs with list_scheduled_tasks when needed. - Use Case: After manually reviewing your inbox each morning, ask to run it every day at 8am — the Skill drafts a standalone prompt, names the task (e.g. daily-inbox-summary), and schedules it. ## Quick Start Ask the assistant to run this session's task every weekday at 9am as a scheduled task.

Frequently Asked Questions about schedule

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

FAQPage Schema
How do I schedule a task to run automatically every day?▼

Describe the recurring task and its schedule, such as "every day at 9am". The Skill drafts a self-contained prompt, picks a kebab-case task name, and calls create_scheduled_task with a cronExpression for the recurring schedule.

How do I reschedule or edit an existing scheduled task?▼

Use update_scheduled_task with the task's ID rather than creating a new one. If you don't know the ID, call list_scheduled_tasks to look it up; in a scheduled run, the current task ID appears in the scheduled-task tag's name attribute.

Can I create a one-time reminder instead of a recurring task?▼

Yes, one-time tasks use the fireAt parameter instead of cronExpression when calling create_scheduled_task. Omitting both scheduling options creates an ad-hoc task that runs only when manually triggered.

Why must the scheduled task prompt avoid referencing the current conversation?▼

Future scheduled runs execute in fresh sessions without access to the original conversation history. The prompt must be fully self-contained, including objectives, steps, file paths, and success criteria, so a cold session can execute it.

What happens if I don't specify a clear schedule for the task?▼

The Skill proposes a schedule and asks for confirmation before creating the task. This prevents wrong guesses, since task creation may be approved automatically in some permission modes without further review.