Install
openclaw skills install reminder-guardianHelps you remember things by keeping a list of reminders, creating the scheduled jobs to alert you, and tracking which ones are done.
openclaw skills install reminder-guardianA very lightweight skill that turns every reminder request into a logged record plus a ready-to-run openclaw cron add blueprint. Installers use the CLI to record the reminder, then immediately paste the printed blueprint into openclaw cron add, and finally mark the reminder as scheduled so nothing slips through.
Log the reminder: python3 skills/reminder-guardian/scripts/reminder_guard.py add --message "Take meds" --when 2026-02-19T17:00:00 --label "Medication"
memory/reminder-log.json (status pending).Create the cron job: Copy the printed blueprint and run openclaw cron add (choose the delivery channel that fits your workflow).
Tell the skill the job exists: python3 skills/reminder-guardian/scripts/reminder_guard.py blueprint <id> --mark sets status to scheduled so the log reflects the Cron job is active.
After the reminder fires: python3 skills/reminder-guardian/scripts/reminder_guard.py update <id> --status sent keeps the log accurate. Nothing happens automatically—the CLI merely tracks your intention and status changes.
See the next reminder: python3 skills/reminder-guardian/scripts/reminder_guard.py next prints the next pending entry plus its blueprint, which is handy if you want to re-schedule or re-run a reminder.
The skill ships with its own scripts/time_helper.py. Every command that needs “the current time” calls that helper before printing or logging anything, keeping the workflow aligned with your canonical time source.
memory/reminder-log.json, ignored from git).Publishing tip: document that the blueprint must be copied into openclaw cron add—without that manual step, reminders never run. Once you publish, future installers will read this explanation and understand exactly how the flow works.