← All skills
Tencent SkillHub · AI

Reminder Engine

Create, list, cancel, and snooze reminders using OpenClaw cron jobs (one-shot or recurring). Use when a user asks things like: 'remind me in 20 minutes', 're...

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

Create, list, cancel, and snooze reminders using OpenClaw cron jobs (one-shot or recurring). Use when a user asks things like: 'remind me in 20 minutes', 're...

⬇ 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
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.0

Documentation

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

Reminder Engine

Turn natural-language reminders into OpenClaw cron jobs.

1) Parse intent

Classify the request: One-shot: “in 20 minutes”, “tomorrow at 9”, “on March 1st at 10:00” Recurring: “every day at 9”, “every weekday at 10:30”, “every Monday”, “every 2 hours” Management: “list reminders”, “cancel X”, “disable/enable”, “snooze X” Extract: reminder text (what should be said when it fires) delivery channel context (current chat unless user specifies otherwise) timezone (default to the runtime timezone unless user specifies)

2) Confirm schedule (always)

Before creating/updating/removing jobs, echo back: the computed schedule in human form (and timezone) whether it’s one-shot or recurring the exact reminder message text If the user’s wording is ambiguous (“next Friday”, “in the morning”), ask a single clarifying question.

3) Create the cron job (reminders)

Use the cron tool. Rules: Prefer schedule.kind="at" for one-shots. Prefer schedule.kind="cron" for recurring reminders (use tz when possible). Use sessionTarget="main" and payload.kind="systemEvent". Write payload text like a reminder: start with “Reminder:” (especially if the reminder is set far in advance). Include light context if it helps (“Reminder: submit the invoice (you said you need this for the client call)”).

4) List / cancel / snooze

List: use cron.list, show jobId + next run + name/summary. Cancel: cron.remove(jobId) (prefer cancelling by exact jobId; if user provides text, search list and confirm). Snooze: implement as cancel+recreate (one-shot) or a one-shot override reminder.

Reminder text quality

Keep it short and action-oriented. Avoid secrets. If the reminder is for a public channel, warn the user.

Safety

Never create spammy recurring reminders without explicit confirmation. Never “broadcast” reminders to multiple targets unless explicitly requested. Never include access keys/tokens in reminder payloads.

Examples (what good looks like)

User: “remind me in 20 minutes to stretch” Create one-shot at job. Payload text: Reminder: stretch. User: “every weekday at 10:30 remind me to stand up” Create recurring cron job in local timezone. Payload text: Reminder: stand up (weekday standup alarm). User: “list my reminders” List jobs; show ids so the user can say “cancel <id>”. User: “cancel the stand up reminder” List matching jobs, ask which one if multiple, then remove.

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc