scheduler for discord
PassAudited by ClawScan on May 10, 2026.
Overview
This is a coherent Discord reminder scheduler, but it can create background or recurring jobs that post through the configured Discord bot.
This skill appears safe for its stated purpose. Before using it, confirm the exact message, time, recurrence, and Discord channel, and periodically review scheduled cron jobs so recurring posts do not continue longer than intended.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
A scheduled job could be created with the wrong message, time, or destination if the command is constructed incorrectly.
The skill explicitly instructs the agent to use an execution tool to create cron jobs. This is purpose-aligned, but user-provided schedule and message text become command arguments and should be handled carefully.
This skill schedules future actions using Moltbot’s `cron` CLI (via `exec`)
Confirm the schedule, message, and destination with the user for meaningful or recurring posts, and ensure user text is passed as data with safe quoting/argument handling.
Scheduled messages will be posted using the configured Discord bot/integration permissions.
The skill depends on the configured Discord integration and uses it to deliver scheduled messages to channels.
metadata: {"moltbot":{"emoji":"⏰","requires":{"config":["channels.discord"]}}}Ensure the Discord integration is limited to appropriate channels and verify the channel ID before scheduling public or recurring posts.
Messages may be sent later or repeatedly even when the user is no longer actively chatting with the bot.
The skill creates background scheduled jobs, including recurring jobs that can continue after the original chat interaction.
Cron jobs run in the background
Use `moltbot cron list` or equivalent job management to review active schedules, and cancel or add expirations for recurring jobs when they are no longer needed.
