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.

What this means

A scheduled job could be created with the wrong message, time, or destination if the command is constructed incorrectly.

Why it was flagged

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.

Skill content
This skill schedules future actions using Moltbot’s `cron` CLI (via `exec`)
Recommendation

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.

What this means

Scheduled messages will be posted using the configured Discord bot/integration permissions.

Why it was flagged

The skill depends on the configured Discord integration and uses it to deliver scheduled messages to channels.

Skill content
metadata: {"moltbot":{"emoji":"⏰","requires":{"config":["channels.discord"]}}}
Recommendation

Ensure the Discord integration is limited to appropriate channels and verify the channel ID before scheduling public or recurring posts.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

Messages may be sent later or repeatedly even when the user is no longer actively chatting with the bot.

Why it was flagged

The skill creates background scheduled jobs, including recurring jobs that can continue after the original chat interaction.

Skill content
Cron jobs run in the background
Recommendation

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.