rememora · git:20260426.7ff5b2d · 2026-04-26 · sha256 226bf77d4189b4ae

rememora git:20260426.7ff5b2dA

Immutable. This exact content is served forever at /api/v1/blob/226bf77d4189b4ae.

---
name: rememora
description: Manage rememora persistent memory — save knowledge, search prior context, or check status.
argument-hint: "[save|search|status] [text]"
allowed-tools: Bash
---

# Rememora Memory Management

The user invoked `/rememora`. Parse the argument and act accordingly.

## Commands

### `/rememora save <text>`
Save the specified text as a memory. Determine the best category automatically:
- If it describes a choice/decision → `--category decision`
- If it describes a bug fix → `--category case`
- If it describes a pattern → `--category pattern`
- If it describes a service/API/config → `--category entity`
- If it describes a preference → `--category preference`

```bash
rememora save "<text>" --category <auto-detected> --project <project-name>
```

### `/rememora search <query>`
Search for prior knowledge matching the query.

```bash
rememora search "<query>" --project <project-name>
```

### `/rememora status`
Show current rememora status — project, session, memory count.

```bash
rememora status --json
```

### `/rememora` (no args)
Show project context — memory map, last session, key context.

```bash
rememora context --auto
```

Report the results concisely.