Scheduler
Provide a customizable AI assistant on Telegram with multiple tools, skills, and monitors that runs locally using hybrid memory.
npx -y skills add Rayan55050/progressive-agent --skill schedulerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Напоминания и запланированные задачи
SKILL.md
1.4 KB, as published. Nobody here has run it
Scheduler Skill
Tools
schedule_add
Create a reminder (one-shot or recurring).
message— what to remind aboutrun_at— ISO datetime:2026-02-21T09:00:00repeat(optional) —hourly,daily,weekly,every_30_min,every_2_hours,every_12_hours
schedule_list
Show all active reminders.
schedule_remove
Remove a reminder by ID (get IDs from schedule_list).
Rules
- Convert user's natural language time to ISO format. User's timezone is set in
config/agent.toml→[scheduler]→timezone. - "через 2 часа" → calculate current time + 2 hours → ISO datetime
- "завтра в 9" → tomorrow at 09:00:00 → ISO datetime
- "каждый день в 8 утра" → use
repeat: dailywithrun_atset to next 08:00 - "через 30 минут" → calculate current time + 30 minutes
- After adding a reminder, confirm what was set and when it will fire
- If time is ambiguous, ask for clarification