Reminder Guardian

v0.1.1

Helps you remember things by keeping a list of reminders, creating the scheduled jobs to alert you, and tracking which ones are done.

0· 646·1 current·1 all-time
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match what the code does: log reminders to memory/reminder-log.json, print a cron blueprint, and provide simple CLI operations. No unrelated credentials, binaries, or services are requested.
Instruction Scope
SKILL.md instructs running the included CLI scripts and manually pasting the printed blueprint into `openclaw cron add`. The scripts only read/write a single repository-local JSON log and call the local time helper; they do not access other system paths or contact external endpoints.
Install Mechanism
No install specification or remote download is present. The skill ships as local Python scripts; nothing is fetched or extracted from the network during install.
Credentials
No environment variables, API keys, or credentials are required. The script does call the local `python3` binary, which is a reasonable runtime dependency.
Persistence & Privilege
The skill is not force-installed (always: false) and does not modify other skills or system-wide agent settings. It stores its own log under the repository's memory/ directory only.
Assessment
This skill appears coherent and low-risk: it is a small, local Python CLI that writes a JSON log at memory/reminder-log.json and prints cron blueprints for you to copy into `openclaw cron add`. Before installing, (1) confirm you are comfortable with the skill writing to the repository/workspace memory/ directory (the log is stored there), (2) verify you have a trusted python3 on PATH, and (3) review the two included scripts if you want to be certain they meet your policies. Because the skill is run locally and requires no credentials or network installs, consider running it in a sandbox or isolated workspace if you want extra assurance.

Like a lobster shell, security has layers — review code before you run it.

latestvk970d0272txpma9kb4r8agcryd81f384

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

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

  1. 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 memory/reminder-log.json (status pending).
    • Prints the cron blueprint that contains the schedule + payload for the reminder.
  2. Create the cron job: Copy the printed blueprint and run openclaw cron add (choose the delivery channel that fits your workflow).

  3. 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.

  4. 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.

  5. 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.

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 (memory/reminder-log.json, ignored from git).
  • 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.

Files

3 total
Select a file
Select a file to preview.

Comments

Loading comments…