Explicitly delete a memory by ID, or run auto-forgetting across all memories based on the Ebbinghaus forgetting curve. Caveat-layer, goal-layer, and pinned (importance >= 0.9) memories are always preserved.Documentation Index
Fetch the complete documentation index at: https://docs.linksee.app/llms.txt
Use this file to discover all available pages before exploring further.
Parameters
Specific memory to delete. If omitted, runs an auto-sweep.
Report what would be deleted without actually deleting.
If
true, ask the user to confirm via MCP Elicitation before deleting. Only applies when memory_id is set.Auto-forgetting
When called withoutmemory_id, runs an automatic sweep using the forgetting risk formula:
Altitude multipliers
| Altitude | Multiplier | Effect |
|---|---|---|
mission | 0 | Never forgotten |
strategy | 0.1 | Very slow decay |
architecture | 0.3 | Slow decay |
implementation | 1.0 | Normal decay |
Thresholds
| Risk score | Action |
|---|---|
| < 50 | Keep |
| 50 - 200 | Compress (merge into learning) |
| > 200 | Drop |
Always preserved
These memories are never auto-forgotten:- All
caveatlayer memories - All
goallayer memories - All memories with
importance >= 0.9(pinned) - All memories with
protected = true