Agent skill
memora
Use when working with persistent memory across sessions, storing/retrieving knowledge, managing TODOs/issues, or when context from previous sessions would be helpful.
Install this agent skill to your Project
npx add-skill https://github.com/agentic-box/memora/tree/main/claude-plugin/skills/memora
SKILL.md
Memora - Persistent Semantic Memory
Memora is the persistent memory system for this environment. Use memora MCP tools to store, search, and organize knowledge across sessions.
When to Use
- Session start: Relevant memories are auto-injected via hook
- Storing decisions: Use
memory_createto save architectural decisions, patterns, preferences - Finding context: Use
memory_hybrid_searchto find relevant past work - Tracking work: Use
memory_create_todo/memory_create_issuefor task tracking - Organizing knowledge: Use
memory_hierarchyto browse organized memories
Core Tools
Creating Memories
memory_create- Store a new memory (auto-deduplicates, suggests hierarchy)memory_create_todo- Create a TODO with priority (high/medium/low)memory_create_issue- Create an issue with severity (critical/major/minor)memory_create_section- Create organizational headersmemory_create_batch- Bulk create multiple memories
Searching
memory_hybrid_search- Best search: combines keyword + semantic (use this by default)memory_semantic_search- Pure vector similarity searchmemory_list- List/filter by tags, dates, metadatamemory_list_compact- Lightweight listing (id, preview, tags only)
Organizing
memory_hierarchy- View memories in section/subsection treememory_tags- List allowed tagsmemory_tag_hierarchy- View tag namespace treememory_link- Create typed relationships between memoriesmemory_clusters- Detect related memory clusters
Maintenance
memory_find_duplicates- Find and review potential duplicates (LLM-powered)memory_merge- Merge two memories togethermemory_insights- Get activity summary, stale items, patternsmemory_stats- Database statisticsmemory_boost- Increase a memory's importance ranking
Visualization
- Knowledge graph available at http://localhost:8765 when running
memory_export_graph- Export as interactive HTML file
Tag Conventions
Use hierarchical tags with / separators:
memora/knowledge- General knowledgememora/todos- Task itemsmemora/issues- Bug/issue trackingmemora/auto-capture- Auto-captured contentmemora/sections- Organizational headersproject-name/topic- Project-specific tags
Best Practices
- Search before creating - avoid duplicates
- Use metadata for structured data (
section,subsection,project) - Tag consistently - use hierarchical tags
- Boost important memories - they rank higher in searches
- Use hybrid search as default - it combines keyword + semantic
- Review insights periodically - find stale items and consolidation opportunities
Auto-Capture
When MEMORA_AUTO_CAPTURE=true is set, the PostToolUse hook automatically captures:
- Git commits (appended to per-project commit log)
- Test results (failures become issues)
- Web research (GitHub repos, documentation)
- Documentation edits (README, CHANGELOG, etc.)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
memora
verl-rl-training
Provides guidance for training LLMs with reinforcement learning using verl (Volcano Engine RL). Use when implementing RLHF, GRPO, PPO, or other RL algorithms for LLM post-training at scale with flexible infrastructure backends.
openrlhf-training
High-performance RLHF framework with Ray+vLLM acceleration. Use for PPO, GRPO, RLOO, DPO training of large models (7B-70B+). Built on Ray, vLLM, ZeRO-3. 2× faster than DeepSpeedChat with distributed architecture and GPU resource sharing.
gguf-quantization
GGUF format and llama.cpp quantization for efficient CPU/GPU inference. Use when deploying models on consumer hardware, Apple Silicon, or when needing flexible quantization from 2-8 bit without GPU requirements.
Claude Code Guide
Master guide for using Claude Code effectively. Includes configuration templates, prompting strategies "Thinking" keywords, debugging techniques, and best practices for interacting with the agent.
qdrant-vector-search
High-performance vector similarity search engine for RAG and semantic search. Use when building production RAG systems requiring fast nearest neighbor search, hybrid search with filtering, or scalable vector storage with Rust-powered performance.
Didn't find tool you were looking for?