From memora
Find and merge duplicate memories, prune stale items, and maintain memory health. Use when the user says "clean up memories", "find duplicates", or "prune stale".
How this skill is triggered — by the user, by Claude, or both
Slash command
/memora:cleanupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Find duplicates, merge similar memories, and prune stale items.
Find duplicates, merge similar memories, and prune stale items.
Find duplicates:
memory_find_duplicates(min_similarity=0.7, max_similarity=0.95, limit=10, use_llm=false)
Set use_llm=true only if the user wants AI-powered comparison.
Present duplicate pairs with:
For each pair the user approves, merge:
memory_merge(source_id=<lower_quality>, target_id=<higher_quality>, merge_strategy="append")
Find stale items:
memory_insights(period="30d", include_llm_analysis=false)
Report open TODOs and issues that haven't been touched in 14+ days.
Rebuild indexes if needed:
memory_rebuild_crossrefs()memory_rebuild_embeddings()Report summary: duplicates merged, stale items flagged, total memories before/after.
| Argument | Action |
|---|---|
| (none) | Find duplicates + stale items |
duplicates | Only find duplicates |
stale | Only find stale items |
rebuild | Rebuild embeddings and crossrefs |
deep | Use LLM for duplicate comparison |
npx claudepluginhub p/zpankz-memora-claude-pluginCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.