What problem does it solve? Claude Code sessions are stateless, so reminders created in one session disappear on restart, and LLM-computed cron expressions frequently misfire due to timezone errors. This Skill maintains a persistent cron registry at memory/crons.json, reconciles it against the live harness every session, and forces all cron expressions through a deterministic helper script so reminders fire at the correct local time and survive restarts. ## Core Features & Use Cases - Full reminder lifecycle: List, add, delete, pause, resume, and reconcile scheduled reminders via natural language in English or Spanish ("recordame en 5 minutos", "every Monday at 9am"). - Deterministic time handling: All cron expressions come from bin/cron-from.sh (relative, absolute, or recurring modes), enforced by a PreToolUse hook that blocks hand-computed crons. - Registry integrity: A single writeback.sh script handles upserts, tombstones, audits, orphan relinking, and expired one-shot pruning with locking and atomic writes. - OpenClaw migration: Import existing jobs from ~/.openclaw/cron/jobs.json with tiered classification (green/yellow/red), prompt adaptation, and per-item reporting. - Use Case: A user says "recuérdame tomar agua cada 2 horas" on WhatsApp; the Skill computes the correct local cron, creates a durable reminder, registers it, and confirms the exact fire time. ## Quick Start Ask the agent to set a reminder in natural language, for example "remind me in 10 minutes to check the oven", and it will create a durable cron and confirm the exact local time.