← All skills
Tencent SkillHub Β· Productivity

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.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
scripts/reminder_guard.py, scripts/time_helper.py, skill.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 4 sections Open source page

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 memory/reminder-log.json (status pending). Prints the cron blueprint that contains the schedule + payload for the reminder. 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.

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.

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Scripts1 Docs
  • skill.md Docs
  • scripts/reminder_guard.py Scripts
  • scripts/time_helper.py Scripts