Skills reminder-guardian
Helps you remember things by keeping a list of reminders, creating the scheduled jobs to alert you, and tracking which ones are done.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/a-suraj-bhatti/reminder-guardian" ~/.openclaw/skills/openclaw-skills-reminder-guardian && rm -rf "$T"
manifest:
skills/a-suraj-bhatti/reminder-guardian/skill.mdsource content
Reminder Guardian
A 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.
Quick steps anyone can follow
-
Log the reminder:
python3 skills/reminder-guardian/scripts/reminder_guard.py add --message "Take meds" --when 2026-02-19T17:00:00 --label "Medication"- Writes a JSON entry under
(statusmemory/reminder-log.json
).pending - Prints the cron blueprint that contains the schedule + payload for the reminder.
- Writes a JSON entry under
-
Create the cron job: Copy the printed blueprint and run
(choose the delivery channel that fits your workflow).openclaw cron add -
Tell the skill the job exists:
sets status topython3 skills/reminder-guardian/scripts/reminder_guard.py blueprint <id> --mark
so the log reflects the Cron job is active.scheduled -
After the reminder fires:
keeps the log accurate. Nothing happens automatically—the CLI merely tracks your intention and status changes.python3 skills/reminder-guardian/scripts/reminder_guard.py update <id> --status sent -
See the next reminder:
prints the next pending entry plus its blueprint, which is handy if you want to re-schedule or re-run a reminder.python3 skills/reminder-guardian/scripts/reminder_guard.py next
Time helper and consistency
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.
Why this matters
- The log is auditable (
, ignored from git).memory/reminder-log.json - The blueprint gives you a human-reviewed cron payload before you schedule anything.
- Anyone who installs this skill follows the same steps, keeping delivery explicit and safe.
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.