Ping Me
PassAudited by ClawScan on May 1, 2026.
Overview
The skill coherently implements one-shot reminders using OpenClaw cron; its channel/session use and short-lived persistence are disclosed and purpose-aligned.
Install this if you want your agent to schedule one-shot reminders through OpenClaw. Before use, confirm the default channel, delivery target, and timezone, and be cautious with sensitive reminder text in shared channels.
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 reminder request can result in a future message being posted through your OpenClaw instance.
The skill schedules future OpenClaw announcements. This is the core reminder function and is disclosed, but it still gives the agent authority to create scheduled messages.
CMD=("$OPENCLAW" cron add ... --message "${EMOJI} ${MSG}" --announce ... --delete-after-run --json)Use it for intended reminders only, and list or cancel active reminders if one is set incorrectly.
Reminders may be routed using the current chat/session target, including configured or derived channel identifiers.
The script uses OpenClaw delivery/session metadata to determine where to send the reminder. This is expected for channel auto-detection, but those identifiers control the delivery destination.
local env_to="${OPENCLAW_TO:-}" ... local session_key="${OPENCLAW_SESSION_KEY:-}" ... print(f"qqbot:c2c:{uid}")Verify the configured channel and target before relying on reminders, especially for shared or public chats.
Reminder contents can persist until the reminder fires or is cancelled.
The user's reminder text is stored in the OpenClaw cron job for later delivery. This is necessary for reminders, but the text may contain personal information.
--description "${MSG}" --message "${EMOJI} ${MSG}"Avoid putting highly sensitive information in reminders unless you are comfortable with it being stored by the local OpenClaw cron system until delivery.
