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

# Memory

> Manage long-term memory

Your AI assistant can remember details across sessions using the memory feature. You can manage this memory using the CLI.

## Usage

```bash theme={null}
apollo memory <subcommand>
```

## Subcommands

* `list`: View all stored memories.
* `add <content>`: Manually add a new memory.
* `clear`: Clear all stored memories.

## Examples

View memories:

```bash theme={null}
apollo memory list
```

Add a memory:

```bash theme={null}
apollo memory add "My preferred language is TypeScript"
```

Clear all memory:

```bash theme={null}
apollo memory clear
```
