Set reminders and scheduled notifications.
python3 scripts/reminder.py add \
--message "Team meeting" \
--time "2024-01-15T14:00:00"
python3 scripts/reminder.py add \
--message "Take a break" \
--in "2 hours"
python3 scripts/reminder.py add \
--message "Daily standup" \
--schedule "every day at 9:00"
python3 scripts/reminder.py list
python3 scripts/reminder.py complete --id "rem_xxx"
python3 scripts/reminder.py delete --id "rem_xxx"
{
"success": true,
"reminder_id": "rem_xxx",
"message": "Team meeting",
"scheduled_for": "2024-01-15T14:00:00",
"channel": "push"
}
Reminders are persisted in ~/.openclaw/reminders.json and survive restarts.
共 1 个版本