> For the complete documentation index, see [llms.txt](https://docs.controltheory.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.controltheory.com/controltheory-documentation/dstl8-docs/slash-commands.md).

# Möbius Chat Slash Commands

Möbius Chat — the AI assistant built into the Dstl8 web UI — supports slash commands for common actions like saving facts to memory or resetting the conversation. They work anywhere the chat input appears: the chat sidebar (toggle it from the header), incident pages, and the explore heatmap.

### Using slash commands

Type `/` as the first character in the chat input and a command menu pops up above it. Keep typing to filter the list.

| Key     | Action                             |
| ------- | ---------------------------------- |
| `↑` `↓` | Move through the matching commands |
| `Tab`   | Autocomplete the selected command  |
| `Enter` | Run the selected command           |
| `Esc`   | Close the menu                     |

You can also click a command in the menu to run it. Commands that take an argument (`/remember`, `/forget`) wait for you to type the text and press `Enter`; the others run immediately.

### Available commands

#### `/remember <fact>`

Saves something to Möbius's persistent memory. Möbius stores the fact in its knowledge graph — attaching it to a related entity if one exists, or creating a new one — and confirms what it saved. Memory persists across conversations, so Möbius can use it in future investigations.

```
/remember the checkout service is owned by the payments team
/remember we deploy to prod every Tuesday afternoon
/remember error spikes in api-gateway around 2am are the nightly batch job — expected
```

#### `/forget <fact>`

The inverse of `/remember` — removes something from Möbius's persistent memory. Möbius finds the matching entry, deletes the specific fact (or the whole entity if nothing else is attached to it), and confirms what it removed.

```
/forget the checkout service is owned by the payments team
```

#### `/summarize`

Asks Möbius to summarize the conversation so far, highlighting the key points and any decisions made. Useful at the end of a long investigation before you close the tab — pair it with `/remember` to keep the conclusions.

#### `/clear`

Starts a new conversation immediately, clearing all messages in the current chat. Möbius's persistent memory is **not** affected — only the conversation history.

#### `/help`

Lists all available slash commands with their descriptions, right in the chat.

{% hint style="info" %}
**Memory is shared with your AI agents.** Facts saved with `/remember` live in the same knowledge graph your MCP-connected agents (Claude Code, Cursor, and others) can read and write — so context you teach Möbius in the browser is available to your coding agent in the terminal, and vice versa. See [MCP Integration](/controltheory-documentation/dstl8-docs/mcp-integration.md).
{% endhint %}


---

# 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://docs.controltheory.com/controltheory-documentation/dstl8-docs/slash-commands.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.
