docs: update docs for calendar reminders

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
user
2026-02-15 12:39:47 +01:00
parent f888faf2bd
commit 2333af0624
3 changed files with 47 additions and 0 deletions

View File

@@ -273,6 +273,21 @@ MAXMIND_LICENSE_KEY=xxx ./scripts/update-data.sh # + GeoLite2
!timer cancel deploy # Cancel a timer
```
## Remind
```
!remind 5m check oven # One-shot (in-memory)
!remind every 1h hydrate # Repeating (in-memory)
!remind at 2027-06-15 deploy # Calendar one-shot (persisted)
!remind at 2027-06-15 14:30 go # With explicit time
!remind yearly 02-14 valentines # Yearly recurring (persisted)
!remind yearly 12-25 09:00 xmas # Yearly with time
!remind list # Show active reminders
!remind cancel abc123 # Cancel by ID
```
Default time: 12:00. Timezone: `bot.timezone` config (default UTC).
## Plugin Template
```python