From memora
Diagnose and repair Memora health. Check for missing embeddings, broken links, orphaned memories, and rebuild indexes. Use when memories seem inconsistent or search isn't working well.
How this skill is triggered — by the user, by Claude, or both
Slash command
/memora:doctorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Diagnose and repair the Memora memory store.
Diagnose and repair the Memora memory store.
Check memory statistics:
memory_stats()
Validate tags:
memory_validate_tags(include_memories=true)
Report invalid tags that don't match the allowlist.
Find duplicates (quick scan):
memory_find_duplicates(min_similarity=0.85, limit=5, use_llm=false)
Check for orphans — memories with no tags, no links, no hierarchy:
memory_list(tags_none=["memora/todos", "memora/issues", "memora/knowledge", "memora/sections", "memora/decisions", "memora/auto-capture"], limit=20)
Present health report:
Memora Health
─────────────
Total memories: N
With embeddings: N/N
Duplicate pairs: N
Invalid tags: N
Orphan memories: N
─────────────
Status: HEALTHY / NEEDS ATTENTION
Offer repairs:
memory_rebuild_embeddings()memory_rebuild_crossrefs()/memora:cleanup| Argument | Action |
|---|---|
| (none) | Full health check |
rebuild | Rebuild all indexes |
tags | Validate tags only |
fix | Auto-fix what's safe to fix |
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.