schedule

Creates scheduled tasks from session context using cron expressions or one-time timestamps.

Updated May 16, 2026
One-click install
npx skills add https://github.com/organvm-i-theoria/_agent-ontology --skill schedule-organvm-i-theoria
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: schedule
Source: https://github.com/organvm-i-theoria/_agent-ontology/tree/main/.agents/skills/schedule
Command: npx skills add https://github.com/organvm-i-theoria/_agent-ontology --skill schedule-organvm-i-theoria

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning a one-off conversation into a repeatable automated task is tedious and error-prone. This Skill distills the current session into a self-contained prompt and registers it as a scheduled task that runs on demand, on a recurring cron schedule, or at a single future moment. ## Core Features & Use Cases - Session Distillation: Analyzes the current conversation and rewrites it as a fully self-contained prompt that future runs can execute cold, with no references to ephemeral context. - Flexible Scheduling: Supports recurring schedules via cronExpression (evaluated in the user's local timezone), one-time execution via an ISO 8601 fireAt timestamp, or ad-hoc manual triggering. - Ambiguity Handling: When the requested schedule is unclear, it proposes a schedule and asks for confirmation before creating the task. - Use Case: After manually reviewing your inbox each morning, ask to "run this every weekday at 8am" and the Skill creates a recurring task with cron 0 8 * * 1-5 and a complete standalone prompt. ## Quick Start Ask the assistant to schedule the task you just performed, for example: "remind me to run this report every Friday at 9am."

Frequently Asked Questions about schedule

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

FAQPage Schema
How do I schedule a recurring task with an AI agent?▼

Describe the task and the recurrence in natural language, such as "run this every Friday at 8am". The Skill distills the session into a standalone prompt and creates a scheduled task with a cronExpression evaluated in your local timezone.

How do I schedule a one-time reminder for a specific time?▼

State the exact moment, like "remind me tomorrow at 3pm". The Skill computes the precise instant and emits a full ISO 8601 fireAt timestamp with timezone offset, since cron expressions have no one-shot semantics.

Does the cron schedule use UTC or local time?▼

The cronExpression is evaluated in the user's local timezone, not UTC. You write local times directly, so "8am every Friday" becomes `0 8 * * 5` without any timezone conversion.

Can I create a task that only runs when I trigger it manually?▼

Yes. For ad-hoc tasks, both cronExpression and fireAt are omitted, so the task is saved with its self-contained prompt and only executes when you invoke it manually.

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

Future runs execute without access to the original session, so any reference to "the current conversation" or "the above" would fail. The prompt must include the objective, steps, file paths, and success criteria so a cold session can execute it.