Cron Scheduler Skill logo

Cron Scheduler Skill

Community
zeenie-ai
cron-scheduler-skill

Schedule recurring tasks using cron expressions. Run workflows on schedules (daily, weekly, hourly, etc.).

Overview

Publisherzeenie-ai
RepositoryOpenCompany
Skill namecron-scheduler-skill
Stars
912
Forks
137
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by zeenie-ai on GitHub. Read the source before you install it.

Installation

Install the Cron Scheduler Skill AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/zeenie-ai/OpenCompany.git /tmp/OpenCompany
mkdir -p .claude/skills
cp -r /tmp/OpenCompany/server/skills/task_agent/cron-scheduler-skill .claude/skills/cron-scheduler-skill
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Cron Scheduler Skill in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Cron Scheduler Skill on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Cron Scheduler Skill is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Cron Scheduler Tool

Schedule recurring tasks using cron expressions.

How It Works

This skill provides instructions for the Cron Scheduler tool node. Connect the Cron Scheduler node to Zeenie's input-tools handle or use as a workflow trigger.

cron_scheduler Tool

Create recurring schedules using cron expressions.

Schema Fields

FieldTypeRequiredDescription
expressionstringYesCron expression (5 fields)
timezonestringNoTimezone (default: UTC)

Cron Expression Format

* * * * *
│ │ │ │ │
│ │ │ │ └── Day of week (0-7, Sun=0 or 7)
│ │ │ └──── Month (1-12)
│ │ └────── Day of month (1-31)
│ └──────── Hour (0-23)
└────────── Minute (0-59)

Special Characters

CharacterMeaningExample
*Any value* * * * * (every minute)
,List of values1,15 * * * * (minute 1 and 15)
-Range1-5 * * * * (minutes 1-5)
/Step values*/15 * * * * (every 15 minutes)

Common Patterns

PatternDescriptionCron Expression
Every minuteRuns each minute* * * * *
Every 5 minutesRuns at :00, :05, :10...*/5 * * * *
Every 15 minutesRuns at :00, :15, :30, :45*/15 * * * *
Every hourRuns at minute 00 * * * *
Every day at 9 AMMorning job0 9 * * *
Every day at midnightNightly job0 0 * * *
Weekdays at 9 AMMon-Fri morning0 9 * * 1-5
Every MondayWeekly on Monday0 0 * * 1
First of monthMonthly job0 0 1 * *
Every Sunday at 6 PMWeekly Sunday evening0 18 * * 0
Multiple times daily8am, noon, 6pm0 8,12,18 * * *

Examples

Every day at 9 AM:

json
{
  "expression": "0 9 * * *",
  "timezone": "America/New_York"
}

Every 30 minutes:

json
{
  "expression": "*/30 * * * *"
}

Weekdays at 6 PM:

json
{
  "expression": "0 18 * * 1-5",
  "timezone": "Europe/London"
}

Every Monday at 10 AM:

json
{
  "expression": "0 10 * * 1",
  "timezone": "Asia/Tokyo"
}

First day of each month:

json
{
  "expression": "0 0 1 * *"
}

Response Format

Schedule created:

json
{
  "success": true,
  "message": "Cron schedule created",
  "expression": "0 9 * * *",
  "timezone": "America/New_York",
  "next_run": "2025-01-31T09:00:00-05:00",
  "description": "At 09:00 AM, every day"
}

Schedule triggered:

json
{
  "success": true,
  "triggered": true,
  "message": "Cron schedule triggered",
  "expression": "0 9 * * *",
  "triggered_at": "2025-01-30T09:00:00Z"
}

Error Response

json
{
  "error": "Invalid cron expression: too few fields"
}

Timezone Reference

TimezoneDescription
UTCUniversal Time (default)
America/New_YorkEastern US
America/Los_AngelesPacific US
Europe/LondonUK
Europe/ParisCentral Europe
Asia/TokyoJapan
Asia/ShanghaiChina
Australia/SydneyAustralia Eastern

Use Cases

Use CaseExpressionDescription
Daily report0 9 * * *Generate daily reports
Hourly sync0 * * * *Sync data hourly
Weekly backup0 2 * * 0Sunday at 2 AM
Business hours check*/30 9-17 * * 1-5Every 30 min, 9-5 Mon-Fri
Monthly cleanup0 0 1 * *First of month

Common Workflows

Daily notification

  1. Set cron for desired time (e.g., 0 9 * * *)
  2. Cron triggers → workflow runs
  3. Send notification to user

Scheduled data sync

  1. Set cron for sync interval (e.g., 0 * * * *)
  2. Cron triggers → fetch data
  3. Process and store data

Weekly report

  1. Set cron for weekly (e.g., 0 10 * * 1)
  2. Cron triggers → generate report
  3. Send report via email/WhatsApp

Workflow-Based Scheduling

In this system, scheduling works through:

  1. Trigger Node: Use Cron Scheduler as workflow start
  2. Deployment: Deploy workflow to activate schedule
  3. Cancellation: Undeploy workflow to stop schedule

Each trigger creates independent workflow runs.

Best Practices

  1. Use UTC for global: Avoid timezone confusion
  2. Consider load: Don't schedule many jobs at :00
  3. Stagger jobs: Use :05, :10 instead of all at :00
  4. Test expressions: Verify with online cron tools
  5. Document schedules: Keep track of what runs when

Limitations

  • Requires workflow deployment to activate
  • Cannot schedule past events
  • Minimum granularity is 1 minute
  • Complex conditions need multiple schedules

Setup Requirements

  1. Connect the Cron Scheduler node to Zeenie's input-tools handle
  2. Or use as workflow trigger (first node)
  3. Deploy workflow to activate the schedule
  4. Undeploy to cancel the schedule

Frequently asked questions

What does the Cron Scheduler Skill AI skill do?

Schedule recurring tasks using cron expressions. Run workflows on schedules (daily, weekly, hourly, etc.).

Why use Cron Scheduler Skill on TypingMind?

Because you install it once and use it with any model. Cron Scheduler Skill is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Cron Scheduler Skill in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/zeenie-ai/OpenCompany/tree/main/server/skills/task_agent/cron-scheduler-skill. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Cron Scheduler Skill?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Cron Scheduler Skill?

As many as you like. As long as a model supports skills, you can use Cron Scheduler Skill with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Cron Scheduler Skill AI skill free?

Yes. It is published on GitHub by zeenie-ai under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇