Create and manage scheduled reminders and posts. Use when the user asks Moltbot to send a message later or on a recurring schedule (especially to the current Discord channel) without requiring them to provide channel IDs.
Schedule (⏰) — Natural-language scheduling for Moltbot What it does Turns “remind me later / every day at…” requests into Moltbot cron jobs. When invoked from Discord, it captures the current channel ID at creation time and bakes it into the job, so delivery works even though cron runs have no “current channel”. Uses isolated agent jobs to avoid main-session cron constraints and to ensure reliable background execution. Avoids ambiguous Discord targets (e.g. #test) by always delivering to an explicit channel:<id>. Examples One-shot reminder (Discord): “Remind me in 2 minutes: stand up and stretch.” Daily plan (Discord): “Every day at 8pm, send tomorrow’s work plan.” Weekly report (Discord): “Every Monday at 9am, post a short weekly goals checklist.” Result A cron job is created and later delivers the message (or generated content) back into the same Discord channel automatically.