
Mem0 Project Tour
FreeExplore and review project memories efficiently.
Free · Opens the source repo
What Mem0 Project Tour does
Mem0 Project Tour is designed to help users navigate and review all stored memories within a project efficiently. By grouping memories by category and providing full content displays, it allows developers and designers to gain comprehensive insights into their project history. This tool is particularly useful for onboarding new team members, conducting project reviews, or exploring stored knowledge and decisions.
When invoked, the skill fetches all memories associated with the current project or across all projects if specified. It organizes the results by application ID and category, making it easy to locate specific information. The output is structured to highlight the most relevant memories, including architecture decisions, coding conventions, and anti-patterns, ensuring that users can quickly access critical information without sifting through unrelated data.
For users looking for specific topics, the skill supports a compact search mode that provides quick, summarized results of relevant memories. This feature is particularly beneficial when time is of the essence, allowing for rapid retrieval of information without the need for extensive browsing. The ability to merge and deduplicate results ensures that users receive a clean and organized view of their project's learnings and decisions.
Overall, Mem0 Project Tour is an essential tool for anyone involved in project management or development, providing a structured approach to memory retrieval that enhances productivity and knowledge sharing within teams.
When to use it
Use this skill when you need to review project memories, onboard new team members, or explore stored knowledge.
When not to use it
This skill may not be suitable for real-time collaboration or for projects lacking stored memories, as it relies on existing data.
What you can build with it
Onboarding New Team Members
Use the Mem0 Project Tour to provide new hires with a comprehensive overview of project memories and decisions.
Conducting Project Reviews
Leverage the skill to gather insights into past decisions and conventions during project review meetings.
Exploring Knowledge Across Projects
Utilize the cross-project mode to search for relevant memories and best practices across multiple projects.
How to install Mem0 Project Tour
View source1. Install with the skills CLI
npx skills add mem0ai/mem0/tour --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by mem0aiMem0 Project Tour
Show the user what mem0 has stored for the current project.
Cross-project mode
When invoked with --all-projects (e.g., /mem0:tour --all-projects or
/mem0:tour --all-projects auth middleware), search across ALL projects:
- Call
get_memorieswithfilters={"AND": [{"user_id": "<active_user_id>"}]},page_size=200— noapp_idfilter. - If a search query was also provided, run
search_memorieswithquery=<query>,filters={"AND": [{"user_id": "<active_user_id>"}]},top_k=20— again noapp_id. - Group results by
app_idfirst, then by category within each project. - Display:
## <app_id_1> (<N> memories) ← current **Architecture Decisions** — <memory content> ... ## <app_id_2> (<N> memories) ... <N> memories across <M> projects - Mark the current project with
← (current)in the heading.
If --all-projects is NOT present, use the standard single-project flow below.
Peek mode (compact search)
When /mem0:tour receives a search query argument (e.g., /mem0:tour auth middleware)
WITHOUT --all-projects, run in peek mode — compact one-liner results:
- Run 2 parallel
search_memoriescalls:- Broad:
query=<query>,filters={"AND": [{"user_id": "<id>"}, {"app_id": "<pid>"}]},top_k=10,rerank=true - Targeted:
query=<query>,filters={"AND": [{"user_id": "<id>"}, {"app_id": "<pid>"}, {"metadata": {"type": "decision"}}]},top_k=5,rerank=true
- Broad:
- Deduplicate by ID, display compact results:
Format:## mem0 search: "<query>" (<N> results) 1. [decision] Auth module uses JWT with RS256 keys (2025-05-15) [mem0:a3f8b2c1] 2. [anti_pattern] Don't use symmetric HS256 — leaked in env (2025-05-10) [mem0:7e2d9f4a] 3. [convention] All middleware in src/middleware/ (2025-05-08) [mem0:c4d5e6f7]<number>. [<type>] <content, 80 chars> (<date>) [mem0:<short_id>] - If no results:
No memories matching "<query>" for project <project_id>.
If no query argument and no --all-projects flag, use the full tour flow below.
Execution
Step 1: Fetch ALL memories for this project
Call get_memories to fetch all memories for this project:
filters={"AND": [{"user_id": "<active_user_id>"}, {"app_id": "<active_project_id>"}]}, page_size=100
Step 2: Run supplementary semantic searches
In parallel, run these search_memories calls to get relevance-ranked results for key topics:
query="architecture decisions design choices",filters={"AND": [{"user_id": "<id>"}, {"app_id": "<pid>"}]},top_k=10,rerank=truequery="bugs errors failures anti-patterns",filters={"AND": [{"user_id": "<id>"}, {"app_id": "<pid>"}]},top_k=10,rerank=truequery="project setup tooling conventions preferences",filters={"AND": [{"user_id": "<id>"}, {"app_id": "<pid>"}]},top_k=10,rerank=true
Do NOT filter by metadata.type in these calls. The platform auto-assigns categories — filtering on metadata.type misses memories that were auto-categorized but don't have an explicit metadata.type.
Step 3: Merge and group
Merge all results by memory ID (deduplicate). For each memory, determine its group using this priority:
- Platform
categoriesfield (array on each memory, auto-assigned by Mem0). Use the first category value. metadata.typefield (if present, set explicitly by hooks/agent). Use as fallback if nocategories.- "other" bucket for memories with neither.
Map category names to display names:
| Platform category / metadata.type | Display name |
|---|---|
architecture decisions, architecture_decisions, decision | Architecture Decisions |
anti patterns, anti_patterns, anti_pattern | Anti-Patterns |
task learnings, task_learnings, task_learning | Task Learnings |
coding conventions, coding_conventions, convention | Coding Conventions |
user preferences, user_preferences, user_preference | User Preferences |
project profile, project_profile | Project Profile |
tooling setup, tooling_setup, environmental | Tooling & Setup |
technology, professional_details | Tooling & Setup |
session_state | Session State |
compact_summary | Compact Summaries |
| anything else | Other |
Step 4: Display results
Sort groups by descending memory count. For each group that has results, print:
## <display_name> (<count> memories)
- <full_memory_content> (score: <similarity_score_if_available>)
- ...
Show the full memory text for each entry — do NOT truncate. If a group has more than 10 entries, show top 10 by recency (or similarity score if from a search call) and note ... and <N> more.
For groups with zero results, skip them entirely — don't print empty groups.
Step 5: Print totals
<N> memories across <M> categories — project: <project_id>, branch: <active_branch>
Step 6: Empty state
If zero memories found for this project, print:
No memories stored yet for project <project_id>.
Run /mem0:onboard to import project files, or start working — mem0 captures learnings automatically.
Frequently asked questions about Mem0 Project Tour
Similar skills
Spring Boot Testing
Master testing techniques for Spring Boot 4 applications.
GitHub Issues
Manage GitHub issues efficiently with MCP tools.
Geofeed Tuner
Optimize your IP geolocation feeds in CSV format.
Batch Files
Master Windows batch scripting for automation and task management.
Adobe Illustrator Scripting
Automate your Illustrator workflows with ExtendScript.
Plugin Structure
Create and organize Claude Code plugins effectively.
