From claude-mneme
Remove entries from remembered items. Use when the user wants to delete, remove, or clear a previously remembered item, or says "forget this", "remove that memory", or "clear my preferences".
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-mneme:forgetThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The user wants to remove something from their remembered items. They may have specified what to forget, or you may need to show them the list.
The user wants to remove something from their remembered items. They may have specified what to forget, or you may need to show them the list.
The mem-forget script has three modes:
node "${CLAUDE_PLUGIN_ROOT}/scripts/mem-forget.mjs" --list
Returns JSON array of entries with their indices.
node "${CLAUDE_PLUGIN_ROOT}/scripts/mem-forget.mjs" --remove 0,2,3
Removes entries at the specified indices (comma-separated).
node "${CLAUDE_PLUGIN_ROOT}/scripts/mem-forget.mjs" --match "description of what to forget"
Uses AI to identify which entries match the description. Returns matching indices.
/forget my tabs preference)--match to find matching entries--remove with the indices/forget with no content--list to show all remembered items--match to find them, confirm, then removeUser: /forget my preference about tabs
-> Run --match "preference about tabs"
-> Show: "Found 1 matching entry: [preference] Prefers tabs over spaces. Remove it?"
-> On yes: Run --remove 0
-> Confirm: "Removed 1 entry."
User: /forget
-> Run --list
-> Show numbered list of all entries
-> Ask: "Which would you like to remove? (Enter numbers or describe)"
-> User: "1 and 3"
-> Confirm: "Remove these 2 entries? [show them]"
-> On yes: Run --remove 1,3
npx claudepluginhub edimuj/claude-mneme --plugin claude-mnemeSupersedes memory entries matching a query in CLAUDE.local.md, registers/*.md, and daily/*.md. Preserves history without deletion, annotates as outdated, updates metadata.json.
Soft-deletes memories by adding/removing 'forget' tag or hard-deletes outdated/incorrect ones using Aide memory bash tools. Includes workflows for search, confirm, tag, and delete.
Deletes specific observations or sessions from agentmemory via API after user confirmation. Use for privacy requests like 'forget this', 'delete memory', or targeted data removal.