Persistent memory and knowledge management. Use at session start to load context, when the user asks about past work or stored knowledge, and when saving important information for future sessions.
Add this skill
npx mdskills install agentic-mcp-tools/memoraClear actionable workflow for persistent memory management across sessions with appropriate permissions
1---2name: memora3description: Persistent memory and knowledge management. Use at session start to load context, when the user asks about past work or stored knowledge, and when saving important information for future sessions.4user-invocable: false5---67## Session Start89At the beginning of each session, proactively search memories for context related to the current project or working directory using `memory_hybrid_search`. Briefly summarize relevant findings to establish context.1011## Memory Search1213When the user asks about past work, stored knowledge, or previously discussed topics:14151. Use `memory_hybrid_search` to find relevant memories162. Use `memory_semantic_search` for pure meaning-based lookup173. Summarize findings and cite memory IDs (e.g., "Memory #42 shows...")1819For research/recall questions, always search memories first before answering.2021## Saving Memories2223When the user asks to remember something, or when important decisions, patterns, or context emerge during a session:24251. Use `memory_create` for general knowledge and notes262. Use `memory_create_todo` for tasks and action items273. Use `memory_create_issue` for bugs and problems284. Use appropriate tags to organize memories2930## Avoiding Duplicates3132Before creating a new memory, use `memory_hybrid_search` to check if similar content already exists. If a near-match is found, use `memory_update` to extend the existing memory instead of creating a duplicate.3334## Linking Related Memories3536When creating or finding memories that relate to each other, use `memory_link` to establish explicit connections. This strengthens the knowledge graph and improves future recall.37
Full transparency — inspect the skill content before installing.