Delete Memory Entry
vault_delete_memoryDelete a dated entry from a memory file by matching its exact date and text. Removes incorrect or outdated information, keeping memories accurate.
Instructions
Delete a single dated entry from a About Me/ memory file. Both date and entry text are required for exact matching — ensures only the intended entry is removed.
Example: vault_delete_memory({ file: "Opinions", section: "AI tooling & memory (newest first)", date: "2026-05-01", entry: "Prefer X over Y" })
When to use: Removing an outdated or incorrect entry from a memory file. Call vault_get_memory(file, section) first to see exact entry text for matching. Prefer vault_delete_note for deleting entire non-protected notes.
Returns: Confirmation message.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Memory file name without .md (e.g. "Principles") | |
| section | Yes | H2 section heading containing the entry | |
| date | Yes | ISO YYYY-MM-DD date of the entry | |
| entry | Yes | Exact entry text (no date prefix or bullet) |