Scheduled Tasks a.k.a. Cron
"Set it. Forget it. Trust the tick."
Tells Hermes do this later — once, hourly, every Sunday at 9, whatever. The gateway daemon ticks every 60 seconds and runs anything that's due in a fresh agent session, then delivers the result wherever you said (chat, file, Telegram, Discord, email…).
Three ways to schedule: a relative delay (30m), an interval (every 2h), or a full cron expression (0 9 * * 1-5). You can also just ask Hermes in plain English — "every morning at 9, summarize Hacker News and DM me on Telegram" — and it'll wire up the cron job for you.
First-timer pitfall: cron runs in a fresh session with zero memory of your last chat. Whatever the agent needs to know, the prompt has to say.
- Reach for it when
- You want recurring or future-scheduled work — daily briefs, hourly polls, "remind me in 30 minutes."
- Don't reach for it when
- You need the result now in this conversation. Use the agent normally.