> ## Documentation Index
> Fetch the complete documentation index at: https://docs.baobun.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Reminders

> Set, view, and manage personal reminders.

<Warning>
  `<>` means an argument is required, `[]` means it's optional
</Warning>

### Set a reminder

Create a reminder for yourself that will notify you after a specified duration.

<CodeGroup>
  ```js Syntax theme={null}
  /remind <duration> [message]
  ```
</CodeGroup>

* `duration` (time): required <br />
  When to remind you (for example: **10m**, **1h**, **1d**, **1w**)
* `message` (str): optional <br />
  What you want to be reminded about

### View reminders

View all of your active reminders.

<CodeGroup>
  ```js Syntax theme={null}
  /remind list
  ```
</CodeGroup>

### Delete a reminder

Delete one of your active reminders.

<CodeGroup>
  ```js Syntax theme={null}
  /remind delete <reminder_id>
  ```
</CodeGroup>

* `reminder_id` (number): required <br />
  The ID of the reminder you want to delete
