Commands

Complete reference for all 20 rem CLI commands: rem add, rem list, rem complete, rem delete, rem update, rem search, rem stats, rem today, rem overdue, rem upcoming, rem export, rem import, rem interactive, rem lists, rem list-mgmt, rem flag, rem skills, and more.

Global flags

These flags work with every command:

FlagDescription
-o, --outputOutput format: table, json, or plain
--no-colorDisable colored output
-h, --helpShow help for any command

Reminders

rem add

Create a new reminder.

rem add "Buy groceries" --due tomorrow --priority high --list Personal

Aliases: create, new

FlagDescription
-l, --listTarget list (default: system default list)
-d, --dueDue date (natural language or standard format)
-p, --priorityPriority: high, medium, low, none
-n, --notesNotes/body text
-u, --urlURL to attach
-f, --flaggedFlag the reminder
--remind-meSet alarm: duration before due (15m, 1h, 2d) or absolute time
--repeatSet recurrence: daily, weekly, monthly, yearly, or weekly on mon,wed,fri
-i, --interactiveStep-by-step interactive creation

rem list

List reminders with optional filters.

rem list --list Work --incomplete --due-before 2026-03-01

Aliases: ls

FlagDescription
-l, --listFilter by list name
--incompleteShow only incomplete reminders
--completedShow only completed reminders
--flaggedShow only flagged reminders
--due-beforeReminders due before this date
--due-afterReminders due after this date
-s, --searchFull-text search in title and notes

rem show

Show full details for a single reminder, including alarms and recurrence rules.

rem show 6ECE

Aliases: get

Pass the full ID, UUID, or any unique prefix. IDs are case-insensitive and prefix-matched.

rem update

Update an existing reminder.

rem update 6ECE --priority medium --due "next friday"

Aliases: edit

FlagDescription
--nameNew title
-l, --listMove reminder to a different list
-d, --dueNew due date
-p, --priorityNew priority
-n, --notesNew notes
-u, --urlNew URL
--flaggedSet flag: true or false
--remind-meSet alarm: duration (15m, 1h, 2d), none to clear
--repeatSet recurrence: daily, weekly, monthly, yearly, none to clear
-i, --interactiveInteractive update

rem complete

Mark a reminder as completed.

rem complete 6ECE

Aliases: done

rem uncomplete

Mark a completed reminder as incomplete.

rem uncomplete 6ECE

rem flag / rem unflag

Toggle the flag on a reminder.

rem flag 6ECE
rem unflag 6ECE

rem delete

Delete one or more reminders. Supports multiple IDs for batch deletion.

rem delete 6ECE
rem delete 6ECE A1B2 --force    # batch delete, skip confirmation

Aliases: rm, remove

FlagDescription
--force / --yes / -ySkip the confirmation prompt

Search & Analytics

Full-text search across title and notes.

rem search "quarterly review" --list Work --incomplete
FlagDescription
-l, --listSearch within a specific list
--incompleteSearch only incomplete reminders

rem stats

Show overall statistics.

rem stats

Displays: total count, completed, incomplete, flagged, overdue, completion rate, and per-list breakdown.

rem today

Show today’s due and overdue reminders.

rem today
rem today --list Work
FlagDescription
-l, --listFilter by list name

rem overdue

Show all overdue incomplete reminders.

rem overdue
rem overdue --list Work
FlagDescription
-l, --listFilter by list name

rem upcoming

Show reminders due in the next N days.

rem upcoming           # next 7 days (default)
rem upcoming --days 14 # next 14 days
FlagDescription
--daysNumber of days to look ahead (default: 7)
-l, --listFilter by list name

Lists

rem lists

View all reminder lists.

rem lists
rem lists --count    # include reminder count per list
FlagDescription
-c, --countShow reminder count per list

rem list-mgmt

Create, rename, or delete lists.

Aliases: lm

rem lm create "Projects"
rem lm rename "Projects" "Active Projects"
rem lm delete "Old List" --force

Note: List deletion may fail on some macOS versions due to AppleScript limitations.

Import & Export

rem export

Export reminders to JSON or CSV.

rem export --format json --output-file backup.json
rem export --list Work --format csv
rem export --incomplete --format json
FlagDescription
-l, --listExport from a specific list
--formatjson or csv (default: json)
--output-fileFile path (default: stdout)
--incompleteExport only incomplete reminders

rem import

Import reminders from JSON or CSV.

rem import backup.json
rem import data.csv --list "Imported" --dry-run
FlagDescription
-l, --listImport into this list (overrides source list)
--dry-runPreview what would be created without creating

Interactive Mode

rem interactive

Launch a full interactive menu.

rem i

Aliases: i

The menu includes:

  1. Create reminder (guided prompts)
  2. List reminders
  3. Complete a reminder
  4. Delete a reminder
  5. View all lists
  6. Create a new list

You can also use -i with add and update for interactive field entry.

Skills

rem skills install

Install the rem agent skill for AI coding agents.

rem skills install                         # Interactive picker
rem skills install --agent claude          # Claude Code only
rem skills install --agent openclaw        # OpenClaw only
rem skills install --agent all             # All agents
FlagDescription
--agentTarget agent: claude, codex, openclaw, or all (default: interactive picker)

rem skills uninstall

Remove the rem agent skill.

rem skills uninstall --agent claude
FlagDescription
--agentTarget agent: claude, codex, openclaw, or all (default: interactive picker)

rem skills status

Show skill installation status across all supported agents.

rem skills status

Date Formats

Date parsing is powered by go-eventkit/dateparser. Supported patterns:

PatternExample
Relativein 2 days, in 3 hours, in 30 minutes, 5 days ago
Namednow, today, tomorrow, yesterday
Day of weekmonday, next monday, next friday
Specialeod (5pm today), eow (Friday 5pm), this week, next week (next Monday), next month (1st of next month)
Compoundnext friday at 2pm, tomorrow at 3:30pm, today 5pm, monday 2pm
Month-daymar 15, 21 march, december 31 11:59pm
Time only5pm, 17:00, 3:30pm
ISO 86012026-02-15, 2026-02-15T14:30:00
US format02/15/2026, 2/15
Named monthFeb 15, February 15, 2026

When a standalone time is given (like 5pm), it uses today if the time hasn’t passed yet, otherwise tomorrow.