mem0-tour

Browses and displays stored mem0 memories grouped by category for a project.

64.5k|7.6k|Updated Jun 20, 2023
One-click install
npx skills add https://github.com/mem0ai/mem0 --skill mem0-tour
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: mem0-tour
Source: https://github.com/mem0ai/mem0/tree/main/integrations/mem0-plugin/.opencode-plugin/opencode-skills/mem0-tour
Command: npx skills add https://github.com/mem0ai/mem0 --skill mem0-tour

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

When working on a project with mem0, stored memories accumulate over time and become hard to review. This Skill gives you a structured overview of everything mem0 has captured for your project, so you can onboard quickly, audit stored knowledge, or find past decisions.

Core Features & Use Cases

  • Full Project Tour: Fetches all memories for the current project and groups them by category such as architecture decisions, anti-patterns, coding conventions, and tooling setup.
  • Peek Mode Search: Pass a query like "/mem0-tour auth middleware" to get compact, deduplicated one-line search results ranked by relevance.
  • Cross-Project Mode: Use the --all-projects flag to browse memories across every project, grouped by app_id with the current project marked.
  • Use Case: After returning to a project you have not touched in weeks, run the tour to see the 349 stored memories summarized by category, including the top 5 most recent entries per group.

Quick Start

Ask the assistant to show a tour of all mem0 memories stored for the current project, grouped by category.

Frequently Asked Questions about mem0-tour

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I view all memories mem0 has stored for my project?

Invoke the tour command with no arguments. It calls get_memories with your user_id and app_id filters, groups results by category, and displays a summary table plus the top 5 memories per group.

How do I search mem0 memories for a specific topic?

Pass a search query as an argument, such as "/mem0-tour auth middleware". This triggers peek mode, which runs parallel broad and targeted search_memories calls and returns compact deduplicated one-line results.

Can I see mem0 memories across all my projects at once?

Yes, use the --all-projects flag. It fetches memories filtered only by user_id without an app_id filter, then groups results by project first and by category within each project, marking the current project.

Why are some memories missing when filtering by metadata type?

The mem0 platform auto-assigns categories that may not have an explicit metadata.type field. The tour avoids filtering on metadata.type in supplementary searches and instead uses the platform categories field first, falling back to metadata.type.

What happens if no memories exist for my project yet?

The tour prints an empty-state message telling you no memories are stored for the project. It suggests continuing to work so mem0 captures learnings automatically, or using the remember command to save something manually.