> For the complete documentation index, see [llms.txt](https://wren.atriasafety.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wren.atriasafety.org/features/proactive-memory.md).

# Proactive Memory

Wren is not forgetful. When you tell Wren something important about yourself, or when you outline rules for your server, Wren saves these facts in its memory. This means you don't have to repeat yourself over and over.

## How it works

When you send a message to Wren, it does a quick check to see if there is any long lasting information in your message. This could be things like:

* "I am the server owner."
* "My favorite color is green."
* "Rule 1 in this server is no spamming."

If Wren spots a fact like this, it uses a special internal tool to securely save it. The next time you ask Wren a question, it brings up those saved facts so it has all the context it needs to give you a great answer!

{% hint style="success" %}
Because Wren understands natural language, you can also just tell it to forget things. "Wren, my favorite color is actually blue now." It will handle the rest!
{% endhint %}

## Configuration

Server administrators can manage Wren's memory using the `/wren memory` command:

* Use `/wren memory list` to see all the facts Wren has saved for your server or specific users.
* Use `/wren memory add` to manually force Wren to remember something important.
* Use `/wren memory remove` to delete a memory you no longer want Wren to use.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://wren.atriasafety.org/features/proactive-memory.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
