--- name: reminders description: "Local reminder system with natural language scheduling" version: 1.0.0 author: OpenClaw entry: ./dist/cli.js type: script --- # Reminders Skill Set and manage one-time or recurring reminders. Stores all data locally in SQLite. No external APIs required. ## Features - **One-time reminders**: Set reminders for specific dates/times - **Recurring reminders**: Daily, weekly, or monthly recurring reminders - **Natural language parsing**: "in 2 hours", "tomorrow", "14:30" - **Snooze functionality**: Temporarily dismiss reminders - **Daemon mode**: Check for due reminders (for cron/systemd integration) - **SQLite storage**: All data stored locally ## Capabilities ### Add a one-time reminder ```bash npx reminders add "" "" ``` **Datetime formats:** - `"2026-02-15 14:00"` - Specific date and time - `"tomorrow"` - Tomorrow at current time - `"in 2 hours"` - Relative time - `"in 30 minutes"` - Relative time in minutes - `"in 3 days"` - Relative time in days - `"14:30"` - Today at specific time (or tomorrow if passed) **Examples:** ```bash npx reminders add "in 30 minutes" "Call mom" npx reminders add "tomorrow" "Dentist appointment" npx reminders add "2026-02-15 09:00" "Team meeting" npx reminders add "14:30" "Standup meeting" ``` ### Add a recurring reminder ```bash npx reminders recurring "