perseus_remember
Persist project conventions, decisions, and gotchas to encrypted memory, ensuring knowledge survives across sessions. Use stable keys to update existing memories.
Instructions
Save a fact, decision, convention, or piece of context to persistent encrypted memory so it survives across Codex sessions. Call this whenever you learn something durable about the project: build commands, code style, architectural decisions, gotchas, or the user's preferences. Idempotent per (category, key).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | Optional stable identifier. Re-using a key updates that memory instead of creating a duplicate. Auto-generated if omitted. | |
| tags | No | Optional tags for later filtering. | |
| text | Yes | The fact or context to remember, in plain language. | |
| category | No | Optional grouping, e.g. 'convention', 'decision', 'gotcha'. Defaults to 'codex-memory'. | |
| importance | No | Optional salience 0.0–1.0 (higher ranks sooner in recall). |