scheduler

scheduler is a skill for Claude Code, Codex from radif-ru/ai-multi-agent-system. It costs 59 tokens per session (1,006 once invoked), scanned A, original, MIT.

A scheduler for recurring tasks using cron, a time-based system for running jobs automatically. It can create, list and cancel repeating schedules, but does not support one-time reminders.

In plain words
What is it for?
Scheduling recurring reminders, email checks, summaries and other tasks by day, time, frequency and time zone.
Why use it?
It removes the need to remember routine actions or start them manually at set times.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Scheduling recurring reminders, email checks, summaries and other tasks by day, time, frequency and time zone.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/radif-ru/ai-multi-agent-system/scheduler
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add radif-ru/ai-multi-agent-system --skill scheduler
Clone the repo
git clone --depth 1 https://github.com/radif-ru/ai-multi-agent-system

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for scheduler

README.md
[![agentmods](https://agentmods.dev/badge/skills/radif-ru/ai-multi-agent-system/scheduler/github.svg)](https://agentmods.dev/skills/radif-ru/ai-multi-agent-system/scheduler)
Your own site
<a href="https://agentmods.dev/skills/radif-ru/ai-multi-agent-system/scheduler"><img src="https://agentmods.dev/badge/skills/radif-ru/ai-multi-agent-system/scheduler/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for scheduler

Your own site · 80×15
<a href="https://agentmods.dev/skills/radif-ru/ai-multi-agent-system/scheduler"><img src="https://agentmods.dev/badge/skills/radif-ru/ai-multi-agent-system/scheduler.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,006 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00059 $0.01006
Opus 5 $0.00030 $0.00503
Sonnet 5 $0.00012 $0.00201
Haiku 4.5 $0.00006 $0.00101

Measured 10d ago against content hash 10b803330558, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

scheduler scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

app/skills/scheduler/SKILL.md · 75 lines

How it starts

The opening of the file, as written. The whole thing — 75 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Skill: scheduler

Помогает планировать регулярные задачи, которые выполняются автоматически по расписанию (cron).

Когда использовать

  • «Напоминай мне каждый день в 9 утра выпить воду»
  • «Проверяй почту по будням в 18:30»
  • «Каждый час делай краткую сводку новостей»
  • «Запланируй задачу на каждый понедельник в 10:00»
  • «Какие у меня есть запланированные задачи?»
  • «Отмени мою задачу»

Когда не использовать

  • Однократные напоминания («напомни через 10 минут») — не поддерживаются, только cron-расписание.
  • Вопросы не про планирование → обычный ответ.

Инструменты

  • schedule_task (args: prompt — текст задачи, schedule_text — расписание на естественном языке, cron — 5-польное cron-выражение (fallback), timezone — часовой пояс, по умолчанию Europe/Moscow) → создаёт задачу.
  • list_scheduled_tasks (args: нет) → список задач текущего пользователя.
  • cancel_scheduled_task (args: task_id) → отменяет задачу.

Маппинг естественного языка в cron

Cron — 5 полей: минута час день_месяца месяц день_недели (min hour dom mon dow).

Детерминированный парсер

app/services/cron_parser.py — парсер поддерживает базовые паттерны:

Пример запроса Cron
Каждый день в 9:00 0 9 * * *
По будням в 18:30 30 18 * * 1-5
Каждый час 0 * * * *
Каждые 30 минут */30 * * * *
Каждые 2 часа 0 */2 * * *
1-го числа каждого месяца в 10:00 0 10 1 * *
По понедельникам в 12:00 0 12 * * 1
Каждую неделю 0 0 * * 0

Если парсер не распознал паттерн — возвращает None, и маппинг делает LLM (graceful fallback).

Полная таблица (для LLM-фолбэка)

Пример запроса Cron
Каждый день в 8:00 и 20:00 0 8,20 * * *

День недели: 0 = воскресенье, 1 = понедельник, ..., 6 = суббота. Также можно использовать имена: SUN, MON, TUE, WED, THU, FRI, SAT.

Порядок действий

  1. Определи, что именно нужно делать при срабатывании — сформируй prompt (текст задачи для выполнения). Например: «Проверь непрочитанную почту через email_list и сделай краткий дайджест».
  2. Передай в schedule_text оригинальный текст расписания пользователя (например: «каждую субботу в 15:08»). Парсер в коде преобразует его в cron. Если парсер не распознает паттерн — передай cron вручную (см. таблицу ниже).
  3. Вызови schedule_task с prompt и schedule_text (или cron как fallback). Если пользователь указал часовой пояс — передай его в timezone.
  4. Подтверди пользователю: что запланировано, с каким расписанием и ID задачи.
  5. Для просмотра задач — list_scheduled_tasks. Для отмены — cancel_scheduled_task с ID.

Read the full file on GitHub · 75 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 75 lines · 59 tokens per session scan A 10b803330558

Subscribe to this mod's changes

scheduler is a skill published in the GitHub repository radif-ru/ai-multi-agent-system (6 stars, last pushed 1mo ago), licensed MIT. It adds 59 tokens to every session and 1,006 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.