[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-mem0-tour":3,"mdc--kqw4yo-key":47,"related-repo-mem0-tour":1048,"related-org-mem0-tour":1139},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":42,"sourceUrl":45,"mdContent":46},"tour","browse and explore stored project memories","Browses all stored memories grouped by category with full content display. Use when reviewing all project memories, exploring stored knowledge, onboarding to a project, or getting an overview of captured decisions, conventions, and learnings.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"mem0","Mem0","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmem0.png","mem0ai",[13,17,20],{"name":14,"slug":15,"type":16},"Knowledge Management","knowledge-management","tag",{"name":18,"slug":19,"type":16},"Memory","memory",{"name":21,"slug":22,"type":16},"Search","search",60691,"https:\u002F\u002Fgithub.com\u002Fmem0ai\u002Fmem0","2026-07-13T06:12:52.502335",null,7066,[29,30,31,32,33,34,35,36,37,19,38,39,40,41],"agents","ai","ai-agents","application","chatbots","chatgpt","genai","llm","long-term-memory","memory-management","python","rag","state-management",{"repoUrl":24,"stars":23,"forks":27,"topics":43,"description":44},[29,30,31,32,33,34,35,36,37,19,38,39,40,41],"Universal memory layer for AI Agents","https:\u002F\u002Fgithub.com\u002Fmem0ai\u002Fmem0\u002Ftree\u002FHEAD\u002Fintegrations\u002Fmem0-plugin\u002Fskills\u002Ftour","---\nname: tour\ndescription: Browses all stored memories grouped by category with full content display. Use when reviewing all project memories, exploring stored knowledge, onboarding to a project, or getting an overview of captured decisions, conventions, and learnings.\n---\n\n# Mem0 Project Tour\n\nShow the user what mem0 has stored for the current project.\n\n## Cross-project mode\n\nWhen invoked with `--all-projects` (e.g., `\u002Fmem0:tour --all-projects` or\n`\u002Fmem0:tour --all-projects auth middleware`), search across ALL projects:\n\n1. Call `get_memories` with `filters={\"AND\": [{\"user_id\": \"\u003Cactive_user_id>\"}]}`, `page_size=200` — **no `app_id` filter**.\n2. If a search query was also provided, run `search_memories` with `query=\u003Cquery>`,\n   `filters={\"AND\": [{\"user_id\": \"\u003Cactive_user_id>\"}]}`, `top_k=20` — again no `app_id`.\n3. Group results by `app_id` first, then by category within each project.\n4. Display:\n   ```\n   ## \u003Capp_id_1> (\u003CN> memories) ← current\n   **Architecture Decisions** — \u003Cmemory content>\n   ...\n\n   ## \u003Capp_id_2> (\u003CN> memories)\n   ...\n\n   \u003CN> memories across \u003CM> projects\n   ```\n5. Mark the current project with `← (current)` in the heading.\n\nIf `--all-projects` is NOT present, use the standard single-project flow below.\n\n## Peek mode (compact search)\n\nWhen `\u002Fmem0:tour` receives a search query argument (e.g., `\u002Fmem0:tour auth middleware`)\nWITHOUT `--all-projects`, run in **peek mode** — compact one-liner results:\n\n1. Run 2 parallel `search_memories` calls:\n   - Broad: `query=\u003Cquery>`, `filters={\"AND\": [{\"user_id\": \"\u003Cid>\"}, {\"app_id\": \"\u003Cpid>\"}]}`, `top_k=10`, `rerank=true`\n   - Targeted: `query=\u003Cquery>`, `filters={\"AND\": [{\"user_id\": \"\u003Cid>\"}, {\"app_id\": \"\u003Cpid>\"}, {\"metadata\": {\"type\": \"decision\"}}]}`, `top_k=5`, `rerank=true`\n2. Deduplicate by ID, display compact results:\n   ```\n   ## mem0 search: \"\u003Cquery>\" (\u003CN> results)\n\n   1. [decision] Auth module uses JWT with RS256 keys (2025-05-15) [mem0:a3f8b2c1]\n   2. [anti_pattern] Don't use symmetric HS256 — leaked in env (2025-05-10) [mem0:7e2d9f4a]\n   3. [convention] All middleware in src\u002Fmiddleware\u002F (2025-05-08) [mem0:c4d5e6f7]\n   ```\n   Format: `\u003Cnumber>. [\u003Ctype>] \u003Ccontent, 80 chars> (\u003Cdate>) [mem0:\u003Cshort_id>]`\n3. If no results: `No memories matching \"\u003Cquery>\" for project \u003Cproject_id>.`\n\nIf no query argument and no `--all-projects` flag, use the full tour flow below.\n\n## Execution\n\n### Step 1: Fetch ALL memories for this project\n\nCall `get_memories` to fetch all memories for this project:\n\n`filters={\"AND\": [{\"user_id\": \"\u003Cactive_user_id>\"}, {\"app_id\": \"\u003Cactive_project_id>\"}]}`, `page_size=100`\n\n### Step 2: Run supplementary semantic searches\n\nIn parallel, run these `search_memories` calls to get relevance-ranked results for key topics:\n\n- `query=\"architecture decisions design choices\"`, `filters={\"AND\": [{\"user_id\": \"\u003Cid>\"}, {\"app_id\": \"\u003Cpid>\"}]}`, `top_k=10`, `rerank=true`\n- `query=\"bugs errors failures anti-patterns\"`, `filters={\"AND\": [{\"user_id\": \"\u003Cid>\"}, {\"app_id\": \"\u003Cpid>\"}]}`, `top_k=10`, `rerank=true`\n- `query=\"project setup tooling conventions preferences\"`, `filters={\"AND\": [{\"user_id\": \"\u003Cid>\"}, {\"app_id\": \"\u003Cpid>\"}]}`, `top_k=10`, `rerank=true`\n\n**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`.\n\n### Step 3: Merge and group\n\nMerge all results by memory ID (deduplicate). For each memory, determine its group using this priority:\n\n1. **Platform `categories` field** (array on each memory, auto-assigned by Mem0). Use the first category value.\n2. **`metadata.type` field** (if present, set explicitly by hooks\u002Fagent). Use as fallback if no `categories`.\n3. **\"other\"** bucket for memories with neither.\n\nMap category names to display names:\n\n| Platform category \u002F metadata.type | Display name |\n|---|---|\n| `architecture decisions`, `architecture_decisions`, `decision` | Architecture Decisions |\n| `anti patterns`, `anti_patterns`, `anti_pattern` | Anti-Patterns |\n| `task learnings`, `task_learnings`, `task_learning` | Task Learnings |\n| `coding conventions`, `coding_conventions`, `convention` | Coding Conventions |\n| `user preferences`, `user_preferences`, `user_preference` | User Preferences |\n| `project profile`, `project_profile` | Project Profile |\n| `tooling setup`, `tooling_setup`, `environmental` | Tooling & Setup |\n| `technology`, `professional_details` | Tooling & Setup |\n| `session_state` | Session State |\n| `compact_summary` | Compact Summaries |\n| anything else | Other |\n\n### Step 4: Display results\n\nSort groups by descending memory count. For each group that has results, print:\n\n```\n## \u003Cdisplay_name> (\u003Ccount> memories)\n- \u003Cfull_memory_content> (score: \u003Csimilarity_score_if_available>)\n- ...\n```\n\nShow 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 \u003CN> more`.\n\nFor groups with zero results, skip them entirely — don't print empty groups.\n\n### Step 5: Print totals\n\n```\n\u003CN> memories across \u003CM> categories — project: \u003Cproject_id>, branch: \u003Cactive_branch>\n```\n\n### Step 6: Empty state\n\nIf zero memories found for this project, print:\n```\nNo memories stored yet for project \u003Cproject_id>.\nRun \u002Fmem0:onboard to import project files, or start working — mem0 captures learnings automatically.\n```\n",{"data":48,"body":49},{"name":4,"description":6},{"type":50,"children":51},"root",[52,61,67,74,104,236,248,254,289,402,414,420,427,438,454,460,472,556,595,601,606,656,661,969,975,980,989,1008,1013,1019,1028,1034,1039],{"type":53,"tag":54,"props":55,"children":57},"element","h1",{"id":56},"mem0-project-tour",[58],{"type":59,"value":60},"text","Mem0 Project Tour",{"type":53,"tag":62,"props":63,"children":64},"p",{},[65],{"type":59,"value":66},"Show the user what mem0 has stored for the current project.",{"type":53,"tag":68,"props":69,"children":71},"h2",{"id":70},"cross-project-mode",[72],{"type":59,"value":73},"Cross-project mode",{"type":53,"tag":62,"props":75,"children":76},{},[77,79,86,88,94,96,102],{"type":59,"value":78},"When invoked with ",{"type":53,"tag":80,"props":81,"children":83},"code",{"className":82},[],[84],{"type":59,"value":85},"--all-projects",{"type":59,"value":87}," (e.g., ",{"type":53,"tag":80,"props":89,"children":91},{"className":90},[],[92],{"type":59,"value":93},"\u002Fmem0:tour --all-projects",{"type":59,"value":95}," or\n",{"type":53,"tag":80,"props":97,"children":99},{"className":98},[],[100],{"type":59,"value":101},"\u002Fmem0:tour --all-projects auth middleware",{"type":59,"value":103},"), search across ALL projects:",{"type":53,"tag":105,"props":106,"children":107},"ol",{},[108,154,194,206,223],{"type":53,"tag":109,"props":110,"children":111},"li",{},[112,114,120,122,128,130,136,138,152],{"type":59,"value":113},"Call ",{"type":53,"tag":80,"props":115,"children":117},{"className":116},[],[118],{"type":59,"value":119},"get_memories",{"type":59,"value":121}," with ",{"type":53,"tag":80,"props":123,"children":125},{"className":124},[],[126],{"type":59,"value":127},"filters={\"AND\": [{\"user_id\": \"\u003Cactive_user_id>\"}]}",{"type":59,"value":129},", ",{"type":53,"tag":80,"props":131,"children":133},{"className":132},[],[134],{"type":59,"value":135},"page_size=200",{"type":59,"value":137}," — ",{"type":53,"tag":139,"props":140,"children":141},"strong",{},[142,144,150],{"type":59,"value":143},"no ",{"type":53,"tag":80,"props":145,"children":147},{"className":146},[],[148],{"type":59,"value":149},"app_id",{"type":59,"value":151}," filter",{"type":59,"value":153},".",{"type":53,"tag":109,"props":155,"children":156},{},[157,159,165,166,172,174,179,180,186,188,193],{"type":59,"value":158},"If a search query was also provided, run ",{"type":53,"tag":80,"props":160,"children":162},{"className":161},[],[163],{"type":59,"value":164},"search_memories",{"type":59,"value":121},{"type":53,"tag":80,"props":167,"children":169},{"className":168},[],[170],{"type":59,"value":171},"query=\u003Cquery>",{"type":59,"value":173},",\n",{"type":53,"tag":80,"props":175,"children":177},{"className":176},[],[178],{"type":59,"value":127},{"type":59,"value":129},{"type":53,"tag":80,"props":181,"children":183},{"className":182},[],[184],{"type":59,"value":185},"top_k=20",{"type":59,"value":187}," — again no ",{"type":53,"tag":80,"props":189,"children":191},{"className":190},[],[192],{"type":59,"value":149},{"type":59,"value":153},{"type":53,"tag":109,"props":195,"children":196},{},[197,199,204],{"type":59,"value":198},"Group results by ",{"type":53,"tag":80,"props":200,"children":202},{"className":201},[],[203],{"type":59,"value":149},{"type":59,"value":205}," first, then by category within each project.",{"type":53,"tag":109,"props":207,"children":208},{},[209,211],{"type":59,"value":210},"Display:\n",{"type":53,"tag":212,"props":213,"children":217},"pre",{"className":214,"code":216,"language":59},[215],"language-text","## \u003Capp_id_1> (\u003CN> memories) ← current\n**Architecture Decisions** — \u003Cmemory content>\n...\n\n## \u003Capp_id_2> (\u003CN> memories)\n...\n\n\u003CN> memories across \u003CM> projects\n",[218],{"type":53,"tag":80,"props":219,"children":221},{"__ignoreMap":220},"",[222],{"type":59,"value":216},{"type":53,"tag":109,"props":224,"children":225},{},[226,228,234],{"type":59,"value":227},"Mark the current project with ",{"type":53,"tag":80,"props":229,"children":231},{"className":230},[],[232],{"type":59,"value":233},"← (current)",{"type":59,"value":235}," in the heading.",{"type":53,"tag":62,"props":237,"children":238},{},[239,241,246],{"type":59,"value":240},"If ",{"type":53,"tag":80,"props":242,"children":244},{"className":243},[],[245],{"type":59,"value":85},{"type":59,"value":247}," is NOT present, use the standard single-project flow below.",{"type":53,"tag":68,"props":249,"children":251},{"id":250},"peek-mode-compact-search",[252],{"type":59,"value":253},"Peek mode (compact search)",{"type":53,"tag":62,"props":255,"children":256},{},[257,259,265,267,273,275,280,282,287],{"type":59,"value":258},"When ",{"type":53,"tag":80,"props":260,"children":262},{"className":261},[],[263],{"type":59,"value":264},"\u002Fmem0:tour",{"type":59,"value":266}," receives a search query argument (e.g., ",{"type":53,"tag":80,"props":268,"children":270},{"className":269},[],[271],{"type":59,"value":272},"\u002Fmem0:tour auth middleware",{"type":59,"value":274},")\nWITHOUT ",{"type":53,"tag":80,"props":276,"children":278},{"className":277},[],[279],{"type":59,"value":85},{"type":59,"value":281},", run in ",{"type":53,"tag":139,"props":283,"children":284},{},[285],{"type":59,"value":286},"peek mode",{"type":59,"value":288}," — compact one-liner results:",{"type":53,"tag":105,"props":290,"children":291},{},[292,369,391],{"type":53,"tag":109,"props":293,"children":294},{},[295,297,302,304],{"type":59,"value":296},"Run 2 parallel ",{"type":53,"tag":80,"props":298,"children":300},{"className":299},[],[301],{"type":59,"value":164},{"type":59,"value":303}," calls:\n",{"type":53,"tag":305,"props":306,"children":307},"ul",{},[308,339],{"type":53,"tag":109,"props":309,"children":310},{},[311,313,318,319,325,326,332,333],{"type":59,"value":312},"Broad: ",{"type":53,"tag":80,"props":314,"children":316},{"className":315},[],[317],{"type":59,"value":171},{"type":59,"value":129},{"type":53,"tag":80,"props":320,"children":322},{"className":321},[],[323],{"type":59,"value":324},"filters={\"AND\": [{\"user_id\": \"\u003Cid>\"}, {\"app_id\": \"\u003Cpid>\"}]}",{"type":59,"value":129},{"type":53,"tag":80,"props":327,"children":329},{"className":328},[],[330],{"type":59,"value":331},"top_k=10",{"type":59,"value":129},{"type":53,"tag":80,"props":334,"children":336},{"className":335},[],[337],{"type":59,"value":338},"rerank=true",{"type":53,"tag":109,"props":340,"children":341},{},[342,344,349,350,356,357,363,364],{"type":59,"value":343},"Targeted: ",{"type":53,"tag":80,"props":345,"children":347},{"className":346},[],[348],{"type":59,"value":171},{"type":59,"value":129},{"type":53,"tag":80,"props":351,"children":353},{"className":352},[],[354],{"type":59,"value":355},"filters={\"AND\": [{\"user_id\": \"\u003Cid>\"}, {\"app_id\": \"\u003Cpid>\"}, {\"metadata\": {\"type\": \"decision\"}}]}",{"type":59,"value":129},{"type":53,"tag":80,"props":358,"children":360},{"className":359},[],[361],{"type":59,"value":362},"top_k=5",{"type":59,"value":129},{"type":53,"tag":80,"props":365,"children":367},{"className":366},[],[368],{"type":59,"value":338},{"type":53,"tag":109,"props":370,"children":371},{},[372,374,383,385],{"type":59,"value":373},"Deduplicate by ID, display compact results:\n",{"type":53,"tag":212,"props":375,"children":378},{"className":376,"code":377,"language":59},[215],"## mem0 search: \"\u003Cquery>\" (\u003CN> results)\n\n1. [decision] Auth module uses JWT with RS256 keys (2025-05-15) [mem0:a3f8b2c1]\n2. [anti_pattern] Don't use symmetric HS256 — leaked in env (2025-05-10) [mem0:7e2d9f4a]\n3. [convention] All middleware in src\u002Fmiddleware\u002F (2025-05-08) [mem0:c4d5e6f7]\n",[379],{"type":53,"tag":80,"props":380,"children":381},{"__ignoreMap":220},[382],{"type":59,"value":377},{"type":59,"value":384},"\nFormat: ",{"type":53,"tag":80,"props":386,"children":388},{"className":387},[],[389],{"type":59,"value":390},"\u003Cnumber>. [\u003Ctype>] \u003Ccontent, 80 chars> (\u003Cdate>) [mem0:\u003Cshort_id>]",{"type":53,"tag":109,"props":392,"children":393},{},[394,396],{"type":59,"value":395},"If no results: ",{"type":53,"tag":80,"props":397,"children":399},{"className":398},[],[400],{"type":59,"value":401},"No memories matching \"\u003Cquery>\" for project \u003Cproject_id>.",{"type":53,"tag":62,"props":403,"children":404},{},[405,407,412],{"type":59,"value":406},"If no query argument and no ",{"type":53,"tag":80,"props":408,"children":410},{"className":409},[],[411],{"type":59,"value":85},{"type":59,"value":413}," flag, use the full tour flow below.",{"type":53,"tag":68,"props":415,"children":417},{"id":416},"execution",[418],{"type":59,"value":419},"Execution",{"type":53,"tag":421,"props":422,"children":424},"h3",{"id":423},"step-1-fetch-all-memories-for-this-project",[425],{"type":59,"value":426},"Step 1: Fetch ALL memories for this project",{"type":53,"tag":62,"props":428,"children":429},{},[430,431,436],{"type":59,"value":113},{"type":53,"tag":80,"props":432,"children":434},{"className":433},[],[435],{"type":59,"value":119},{"type":59,"value":437}," to fetch all memories for this project:",{"type":53,"tag":62,"props":439,"children":440},{},[441,447,448],{"type":53,"tag":80,"props":442,"children":444},{"className":443},[],[445],{"type":59,"value":446},"filters={\"AND\": [{\"user_id\": \"\u003Cactive_user_id>\"}, {\"app_id\": \"\u003Cactive_project_id>\"}]}",{"type":59,"value":129},{"type":53,"tag":80,"props":449,"children":451},{"className":450},[],[452],{"type":59,"value":453},"page_size=100",{"type":53,"tag":421,"props":455,"children":457},{"id":456},"step-2-run-supplementary-semantic-searches",[458],{"type":59,"value":459},"Step 2: Run supplementary semantic searches",{"type":53,"tag":62,"props":461,"children":462},{},[463,465,470],{"type":59,"value":464},"In parallel, run these ",{"type":53,"tag":80,"props":466,"children":468},{"className":467},[],[469],{"type":59,"value":164},{"type":59,"value":471}," calls to get relevance-ranked results for key topics:",{"type":53,"tag":305,"props":473,"children":474},{},[475,502,529],{"type":53,"tag":109,"props":476,"children":477},{},[478,484,485,490,491,496,497],{"type":53,"tag":80,"props":479,"children":481},{"className":480},[],[482],{"type":59,"value":483},"query=\"architecture decisions design choices\"",{"type":59,"value":129},{"type":53,"tag":80,"props":486,"children":488},{"className":487},[],[489],{"type":59,"value":324},{"type":59,"value":129},{"type":53,"tag":80,"props":492,"children":494},{"className":493},[],[495],{"type":59,"value":331},{"type":59,"value":129},{"type":53,"tag":80,"props":498,"children":500},{"className":499},[],[501],{"type":59,"value":338},{"type":53,"tag":109,"props":503,"children":504},{},[505,511,512,517,518,523,524],{"type":53,"tag":80,"props":506,"children":508},{"className":507},[],[509],{"type":59,"value":510},"query=\"bugs errors failures anti-patterns\"",{"type":59,"value":129},{"type":53,"tag":80,"props":513,"children":515},{"className":514},[],[516],{"type":59,"value":324},{"type":59,"value":129},{"type":53,"tag":80,"props":519,"children":521},{"className":520},[],[522],{"type":59,"value":331},{"type":59,"value":129},{"type":53,"tag":80,"props":525,"children":527},{"className":526},[],[528],{"type":59,"value":338},{"type":53,"tag":109,"props":530,"children":531},{},[532,538,539,544,545,550,551],{"type":53,"tag":80,"props":533,"children":535},{"className":534},[],[536],{"type":59,"value":537},"query=\"project setup tooling conventions preferences\"",{"type":59,"value":129},{"type":53,"tag":80,"props":540,"children":542},{"className":541},[],[543],{"type":59,"value":324},{"type":59,"value":129},{"type":53,"tag":80,"props":546,"children":548},{"className":547},[],[549],{"type":59,"value":331},{"type":59,"value":129},{"type":53,"tag":80,"props":552,"children":554},{"className":553},[],[555],{"type":59,"value":338},{"type":53,"tag":62,"props":557,"children":558},{},[559,572,574,580,582,587,589,594],{"type":53,"tag":139,"props":560,"children":561},{},[562,564,570],{"type":59,"value":563},"Do NOT filter by ",{"type":53,"tag":80,"props":565,"children":567},{"className":566},[],[568],{"type":59,"value":569},"metadata.type",{"type":59,"value":571}," in these calls.",{"type":59,"value":573}," The platform auto-assigns ",{"type":53,"tag":80,"props":575,"children":577},{"className":576},[],[578],{"type":59,"value":579},"categories",{"type":59,"value":581}," — filtering on ",{"type":53,"tag":80,"props":583,"children":585},{"className":584},[],[586],{"type":59,"value":569},{"type":59,"value":588}," misses memories that were auto-categorized but don't have an explicit ",{"type":53,"tag":80,"props":590,"children":592},{"className":591},[],[593],{"type":59,"value":569},{"type":59,"value":153},{"type":53,"tag":421,"props":596,"children":598},{"id":597},"step-3-merge-and-group",[599],{"type":59,"value":600},"Step 3: Merge and group",{"type":53,"tag":62,"props":602,"children":603},{},[604],{"type":59,"value":605},"Merge all results by memory ID (deduplicate). For each memory, determine its group using this priority:",{"type":53,"tag":105,"props":607,"children":608},{},[609,626,646],{"type":53,"tag":109,"props":610,"children":611},{},[612,624],{"type":53,"tag":139,"props":613,"children":614},{},[615,617,622],{"type":59,"value":616},"Platform ",{"type":53,"tag":80,"props":618,"children":620},{"className":619},[],[621],{"type":59,"value":579},{"type":59,"value":623}," field",{"type":59,"value":625}," (array on each memory, auto-assigned by Mem0). Use the first category value.",{"type":53,"tag":109,"props":627,"children":628},{},[629,638,640,645],{"type":53,"tag":139,"props":630,"children":631},{},[632,637],{"type":53,"tag":80,"props":633,"children":635},{"className":634},[],[636],{"type":59,"value":569},{"type":59,"value":623},{"type":59,"value":639}," (if present, set explicitly by hooks\u002Fagent). Use as fallback if no ",{"type":53,"tag":80,"props":641,"children":643},{"className":642},[],[644],{"type":59,"value":579},{"type":59,"value":153},{"type":53,"tag":109,"props":647,"children":648},{},[649,654],{"type":53,"tag":139,"props":650,"children":651},{},[652],{"type":59,"value":653},"\"other\"",{"type":59,"value":655}," bucket for memories with neither.",{"type":53,"tag":62,"props":657,"children":658},{},[659],{"type":59,"value":660},"Map category names to display names:",{"type":53,"tag":662,"props":663,"children":664},"table",{},[665,684],{"type":53,"tag":666,"props":667,"children":668},"thead",{},[669],{"type":53,"tag":670,"props":671,"children":672},"tr",{},[673,679],{"type":53,"tag":674,"props":675,"children":676},"th",{},[677],{"type":59,"value":678},"Platform category \u002F metadata.type",{"type":53,"tag":674,"props":680,"children":681},{},[682],{"type":59,"value":683},"Display name",{"type":53,"tag":685,"props":686,"children":687},"tbody",{},[688,720,751,782,813,844,868,899,922,939,956],{"type":53,"tag":670,"props":689,"children":690},{},[691,715],{"type":53,"tag":692,"props":693,"children":694},"td",{},[695,701,702,708,709],{"type":53,"tag":80,"props":696,"children":698},{"className":697},[],[699],{"type":59,"value":700},"architecture decisions",{"type":59,"value":129},{"type":53,"tag":80,"props":703,"children":705},{"className":704},[],[706],{"type":59,"value":707},"architecture_decisions",{"type":59,"value":129},{"type":53,"tag":80,"props":710,"children":712},{"className":711},[],[713],{"type":59,"value":714},"decision",{"type":53,"tag":692,"props":716,"children":717},{},[718],{"type":59,"value":719},"Architecture Decisions",{"type":53,"tag":670,"props":721,"children":722},{},[723,746],{"type":53,"tag":692,"props":724,"children":725},{},[726,732,733,739,740],{"type":53,"tag":80,"props":727,"children":729},{"className":728},[],[730],{"type":59,"value":731},"anti patterns",{"type":59,"value":129},{"type":53,"tag":80,"props":734,"children":736},{"className":735},[],[737],{"type":59,"value":738},"anti_patterns",{"type":59,"value":129},{"type":53,"tag":80,"props":741,"children":743},{"className":742},[],[744],{"type":59,"value":745},"anti_pattern",{"type":53,"tag":692,"props":747,"children":748},{},[749],{"type":59,"value":750},"Anti-Patterns",{"type":53,"tag":670,"props":752,"children":753},{},[754,777],{"type":53,"tag":692,"props":755,"children":756},{},[757,763,764,770,771],{"type":53,"tag":80,"props":758,"children":760},{"className":759},[],[761],{"type":59,"value":762},"task learnings",{"type":59,"value":129},{"type":53,"tag":80,"props":765,"children":767},{"className":766},[],[768],{"type":59,"value":769},"task_learnings",{"type":59,"value":129},{"type":53,"tag":80,"props":772,"children":774},{"className":773},[],[775],{"type":59,"value":776},"task_learning",{"type":53,"tag":692,"props":778,"children":779},{},[780],{"type":59,"value":781},"Task Learnings",{"type":53,"tag":670,"props":783,"children":784},{},[785,808],{"type":53,"tag":692,"props":786,"children":787},{},[788,794,795,801,802],{"type":53,"tag":80,"props":789,"children":791},{"className":790},[],[792],{"type":59,"value":793},"coding conventions",{"type":59,"value":129},{"type":53,"tag":80,"props":796,"children":798},{"className":797},[],[799],{"type":59,"value":800},"coding_conventions",{"type":59,"value":129},{"type":53,"tag":80,"props":803,"children":805},{"className":804},[],[806],{"type":59,"value":807},"convention",{"type":53,"tag":692,"props":809,"children":810},{},[811],{"type":59,"value":812},"Coding Conventions",{"type":53,"tag":670,"props":814,"children":815},{},[816,839],{"type":53,"tag":692,"props":817,"children":818},{},[819,825,826,832,833],{"type":53,"tag":80,"props":820,"children":822},{"className":821},[],[823],{"type":59,"value":824},"user preferences",{"type":59,"value":129},{"type":53,"tag":80,"props":827,"children":829},{"className":828},[],[830],{"type":59,"value":831},"user_preferences",{"type":59,"value":129},{"type":53,"tag":80,"props":834,"children":836},{"className":835},[],[837],{"type":59,"value":838},"user_preference",{"type":53,"tag":692,"props":840,"children":841},{},[842],{"type":59,"value":843},"User Preferences",{"type":53,"tag":670,"props":845,"children":846},{},[847,863],{"type":53,"tag":692,"props":848,"children":849},{},[850,856,857],{"type":53,"tag":80,"props":851,"children":853},{"className":852},[],[854],{"type":59,"value":855},"project profile",{"type":59,"value":129},{"type":53,"tag":80,"props":858,"children":860},{"className":859},[],[861],{"type":59,"value":862},"project_profile",{"type":53,"tag":692,"props":864,"children":865},{},[866],{"type":59,"value":867},"Project Profile",{"type":53,"tag":670,"props":869,"children":870},{},[871,894],{"type":53,"tag":692,"props":872,"children":873},{},[874,880,881,887,888],{"type":53,"tag":80,"props":875,"children":877},{"className":876},[],[878],{"type":59,"value":879},"tooling setup",{"type":59,"value":129},{"type":53,"tag":80,"props":882,"children":884},{"className":883},[],[885],{"type":59,"value":886},"tooling_setup",{"type":59,"value":129},{"type":53,"tag":80,"props":889,"children":891},{"className":890},[],[892],{"type":59,"value":893},"environmental",{"type":53,"tag":692,"props":895,"children":896},{},[897],{"type":59,"value":898},"Tooling & Setup",{"type":53,"tag":670,"props":900,"children":901},{},[902,918],{"type":53,"tag":692,"props":903,"children":904},{},[905,911,912],{"type":53,"tag":80,"props":906,"children":908},{"className":907},[],[909],{"type":59,"value":910},"technology",{"type":59,"value":129},{"type":53,"tag":80,"props":913,"children":915},{"className":914},[],[916],{"type":59,"value":917},"professional_details",{"type":53,"tag":692,"props":919,"children":920},{},[921],{"type":59,"value":898},{"type":53,"tag":670,"props":923,"children":924},{},[925,934],{"type":53,"tag":692,"props":926,"children":927},{},[928],{"type":53,"tag":80,"props":929,"children":931},{"className":930},[],[932],{"type":59,"value":933},"session_state",{"type":53,"tag":692,"props":935,"children":936},{},[937],{"type":59,"value":938},"Session State",{"type":53,"tag":670,"props":940,"children":941},{},[942,951],{"type":53,"tag":692,"props":943,"children":944},{},[945],{"type":53,"tag":80,"props":946,"children":948},{"className":947},[],[949],{"type":59,"value":950},"compact_summary",{"type":53,"tag":692,"props":952,"children":953},{},[954],{"type":59,"value":955},"Compact Summaries",{"type":53,"tag":670,"props":957,"children":958},{},[959,964],{"type":53,"tag":692,"props":960,"children":961},{},[962],{"type":59,"value":963},"anything else",{"type":53,"tag":692,"props":965,"children":966},{},[967],{"type":59,"value":968},"Other",{"type":53,"tag":421,"props":970,"children":972},{"id":971},"step-4-display-results",[973],{"type":59,"value":974},"Step 4: Display results",{"type":53,"tag":62,"props":976,"children":977},{},[978],{"type":59,"value":979},"Sort groups by descending memory count. For each group that has results, print:",{"type":53,"tag":212,"props":981,"children":984},{"className":982,"code":983,"language":59},[215],"## \u003Cdisplay_name> (\u003Ccount> memories)\n- \u003Cfull_memory_content> (score: \u003Csimilarity_score_if_available>)\n- ...\n",[985],{"type":53,"tag":80,"props":986,"children":987},{"__ignoreMap":220},[988],{"type":59,"value":983},{"type":53,"tag":62,"props":990,"children":991},{},[992,994,999,1001,1007],{"type":59,"value":993},"Show the ",{"type":53,"tag":139,"props":995,"children":996},{},[997],{"type":59,"value":998},"full memory text",{"type":59,"value":1000}," 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 ",{"type":53,"tag":80,"props":1002,"children":1004},{"className":1003},[],[1005],{"type":59,"value":1006},"... and \u003CN> more",{"type":59,"value":153},{"type":53,"tag":62,"props":1009,"children":1010},{},[1011],{"type":59,"value":1012},"For groups with zero results, skip them entirely — don't print empty groups.",{"type":53,"tag":421,"props":1014,"children":1016},{"id":1015},"step-5-print-totals",[1017],{"type":59,"value":1018},"Step 5: Print totals",{"type":53,"tag":212,"props":1020,"children":1023},{"className":1021,"code":1022,"language":59},[215],"\u003CN> memories across \u003CM> categories — project: \u003Cproject_id>, branch: \u003Cactive_branch>\n",[1024],{"type":53,"tag":80,"props":1025,"children":1026},{"__ignoreMap":220},[1027],{"type":59,"value":1022},{"type":53,"tag":421,"props":1029,"children":1031},{"id":1030},"step-6-empty-state",[1032],{"type":59,"value":1033},"Step 6: Empty state",{"type":53,"tag":62,"props":1035,"children":1036},{},[1037],{"type":59,"value":1038},"If zero memories found for this project, print:",{"type":53,"tag":212,"props":1040,"children":1043},{"className":1041,"code":1042,"language":59},[215],"No memories stored yet for project \u003Cproject_id>.\nRun \u002Fmem0:onboard to import project files, or start working — mem0 captures learnings automatically.\n",[1044],{"type":53,"tag":80,"props":1045,"children":1046},{"__ignoreMap":220},[1047],{"type":59,"value":1042},{"items":1049,"total":1138},[1050,1063,1075,1089,1103,1117,1129],{"slug":1051,"name":1051,"fn":1052,"description":1053,"org":1054,"tags":1055,"stars":23,"repoUrl":24,"updatedAt":1062},"context-loader","load project context from Mem0","Searches and injects relevant memories into context before starting work on a task. Use when beginning a new task, switching context, or when project history, past decisions, or coding conventions need to be loaded.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1056,1058,1061],{"name":1057,"slug":29,"type":16},"Agents",{"name":1059,"slug":1060,"type":16},"Context","context",{"name":18,"slug":19,"type":16},"2026-07-13T06:13:15.682218",{"slug":1064,"name":1064,"fn":1065,"description":1066,"org":1067,"tags":1068,"stars":23,"repoUrl":24,"updatedAt":1074},"dream","consolidate and prune stored memories","Consolidates stored memories by merging duplicates, resolving contradictions, and pruning stale entries. Use when memory count is high, search results feel noisy or repetitive, or periodic cleanup is needed to maintain memory quality.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1069,1070,1073],{"name":1057,"slug":29,"type":16},{"name":1071,"slug":1072,"type":16},"Data Cleaning","data-cleaning",{"name":18,"slug":19,"type":16},"2026-07-13T06:12:54.000421",{"slug":1076,"name":1076,"fn":1077,"description":1078,"org":1079,"tags":1080,"stars":23,"repoUrl":24,"updatedAt":1088},"export","export project memories to Markdown files","Exports all project memories to a portable Markdown file for backup or migration. Use when backing up memories, migrating to another project, sharing memory state with teammates, or archiving before cleanup.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1081,1084,1085],{"name":1082,"slug":1083,"type":16},"Backup","backup",{"name":18,"slug":19,"type":16},{"name":1086,"slug":1087,"type":16},"Migration","migration","2026-07-13T06:13:05.091831",{"slug":1090,"name":1090,"fn":1091,"description":1092,"org":1093,"tags":1094,"stars":23,"repoUrl":24,"updatedAt":1102},"forget","delete outdated or incorrect memories","Deletes memories by search query or memory ID with confirmation before removal. Use when removing outdated decisions, incorrect memories, sensitive data, or cleaning up after experiments. Also handles undo of recent additions.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1095,1098,1099],{"name":1096,"slug":1097,"type":16},"Maintenance","maintenance",{"name":18,"slug":19,"type":16},{"name":1100,"slug":1101,"type":16},"Privacy","privacy","2026-07-13T06:13:00.862899",{"slug":1104,"name":1104,"fn":1105,"description":1106,"org":1107,"tags":1108,"stars":23,"repoUrl":24,"updatedAt":1116},"health","diagnose Mem0 connectivity and health","Diagnoses mem0 connectivity, API key validity, and memory read\u002Fwrite functionality. Use when memory operations fail, searches return empty, add_memory errors occur, MCP connection drops, or to verify the plugin is working correctly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1109,1112,1113],{"name":1110,"slug":1111,"type":16},"Debugging","debugging",{"name":18,"slug":19,"type":16},{"name":1114,"slug":1115,"type":16},"Monitoring","monitoring","2026-07-13T06:13:06.569475",{"slug":1118,"name":1118,"fn":1119,"description":1120,"org":1121,"tags":1122,"stars":23,"repoUrl":24,"updatedAt":1128},"import","import project memories from Markdown files","Imports memories from an exported Markdown file or MEMORY.md into the current project. Use when migrating from another project, restoring from backup, importing Claude Code native MEMORY.md content, or setting up a new project with existing knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1123,1126,1127],{"name":1124,"slug":1125,"type":16},"Markdown","markdown",{"name":18,"slug":19,"type":16},{"name":1086,"slug":1087,"type":16},"2026-07-13T06:12:59.389494",{"slug":1130,"name":1130,"fn":1131,"description":1132,"org":1133,"tags":1134,"stars":23,"repoUrl":24,"updatedAt":1137},"list-projects","list projects with stored memories","Lists all projects with stored memories for the current user, showing memory counts and last activity dates. Use when checking which projects have memories, comparing memory distribution across repos, or finding a specific project scope.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1135,1136],{"name":1057,"slug":29,"type":16},{"name":18,"slug":19,"type":16},"2026-07-13T06:13:27.80043",23,{"items":1140,"total":1138},[1141,1147,1153,1159,1165,1171,1177,1182,1193,1207,1219,1229],{"slug":1051,"name":1051,"fn":1052,"description":1053,"org":1142,"tags":1143,"stars":23,"repoUrl":24,"updatedAt":1062},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1144,1145,1146],{"name":1057,"slug":29,"type":16},{"name":1059,"slug":1060,"type":16},{"name":18,"slug":19,"type":16},{"slug":1064,"name":1064,"fn":1065,"description":1066,"org":1148,"tags":1149,"stars":23,"repoUrl":24,"updatedAt":1074},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1150,1151,1152],{"name":1057,"slug":29,"type":16},{"name":1071,"slug":1072,"type":16},{"name":18,"slug":19,"type":16},{"slug":1076,"name":1076,"fn":1077,"description":1078,"org":1154,"tags":1155,"stars":23,"repoUrl":24,"updatedAt":1088},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1156,1157,1158],{"name":1082,"slug":1083,"type":16},{"name":18,"slug":19,"type":16},{"name":1086,"slug":1087,"type":16},{"slug":1090,"name":1090,"fn":1091,"description":1092,"org":1160,"tags":1161,"stars":23,"repoUrl":24,"updatedAt":1102},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1162,1163,1164],{"name":1096,"slug":1097,"type":16},{"name":18,"slug":19,"type":16},{"name":1100,"slug":1101,"type":16},{"slug":1104,"name":1104,"fn":1105,"description":1106,"org":1166,"tags":1167,"stars":23,"repoUrl":24,"updatedAt":1116},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1168,1169,1170],{"name":1110,"slug":1111,"type":16},{"name":18,"slug":19,"type":16},{"name":1114,"slug":1115,"type":16},{"slug":1118,"name":1118,"fn":1119,"description":1120,"org":1172,"tags":1173,"stars":23,"repoUrl":24,"updatedAt":1128},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1174,1175,1176],{"name":1124,"slug":1125,"type":16},{"name":18,"slug":19,"type":16},{"name":1086,"slug":1087,"type":16},{"slug":1130,"name":1130,"fn":1131,"description":1132,"org":1178,"tags":1179,"stars":23,"repoUrl":24,"updatedAt":1137},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1180,1181],{"name":1057,"slug":29,"type":16},{"name":18,"slug":19,"type":16},{"slug":8,"name":8,"fn":1183,"description":1184,"org":1185,"tags":1186,"stars":23,"repoUrl":24,"updatedAt":1192},"add persistent memory to AI applications","Mem0 Platform SDK for adding persistent memory to AI applications. TRIGGER when: user mentions \"mem0\", \"MemoryClient\", \"memory layer\", \"remember user preferences\", \"persistent context\", \"personalization\", or needs to add long-term memory to chatbots, agents, or AI apps. Covers Python SDK (mem0ai), TypeScript SDK (mem0ai), and framework integrations (LangChain, CrewAI, OpenAI Agents SDK, Pipecat, LlamaIndex, AutoGen, LangGraph). Also covers the open-source self-hosted Memory class. This is the DEFAULT mem0 skill for ambiguous queries. DO NOT TRIGGER when: user asks about CLI commands, terminal usage, or shell scripts (use mem0-cli), or Vercel AI SDK \u002F @mem0\u002Fvercel-ai-provider \u002F createMem0 (use mem0-vercel-ai-sdk).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1187,1188,1191],{"name":1057,"slug":29,"type":16},{"name":1189,"slug":1190,"type":16},"AI Infrastructure","ai-infrastructure",{"name":18,"slug":19,"type":16},"2026-07-13T06:12:42.552904",{"slug":1194,"name":1194,"fn":1195,"description":1196,"org":1197,"tags":1198,"stars":23,"repoUrl":24,"updatedAt":1206},"mem0-cli","manage Mem0 memory via command line","Mem0 CLI -- the command-line interface for mem0 memory operations. TRIGGER when: user mentions \"mem0 cli\", \"mem0 command line\", \"@mem0\u002Fcli\", \"mem0-cli\", \"pip install mem0-cli\", \"npm install -g @mem0\u002Fcli\", or is running mem0 commands in a terminal\u002Fshell (mem0 add, mem0 search, mem0 list, mem0 get, mem0 init, mem0 config, mem0 import). Also triggers when query includes CLI flags like --user-id, --output, --json, --agent, or describes bash\u002Fzsh\u002Fterminal\u002Fshell usage. DO NOT TRIGGER when: user asks about programmatic SDK integration in Python\u002FTS code (use mem0 skill), or Vercel AI SDK provider (use mem0-vercel-ai-sdk skill).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1199,1202,1205],{"name":1200,"slug":1201,"type":16},"Automation","automation",{"name":1203,"slug":1204,"type":16},"CLI","cli",{"name":18,"slug":19,"type":16},"2026-07-13T06:12:48.46494",{"slug":1208,"name":1208,"fn":1209,"description":1210,"org":1211,"tags":1212,"stars":23,"repoUrl":24,"updatedAt":1218},"mem0-integrate","integrate Mem0 into repositories","Integrate Mem0 into an existing repository using a goal-driven, TDD pipeline. Detects the repo's language automatically and asks the user to pick between Mem0 Platform (managed) and Mem0 Open Source (self-hosted). Writes failing tests before any implementation. Produces a local feature branch plus `.mem0-integration\u002F` artifacts consumed by the paired verification skill. TRIGGER when: user says \"integrate mem0\", \"add mem0 to this repo\", \"wire mem0 into \u003Crepo>\", or asks how to add memory to an existing project. DO NOT TRIGGER when: the user wants general SDK usage (use skill:mem0), CLI usage (use skill:mem0-cli), or Vercel AI SDK (use skill:mem0-vercel-ai-sdk). After success, invoke skill:mem0-test-integration to verify in the same workspace (loose coupling).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1213,1214,1217],{"name":1057,"slug":29,"type":16},{"name":1215,"slug":1216,"type":16},"API Development","api-development",{"name":18,"slug":19,"type":16},"2026-07-13T06:12:46.60755",{"slug":1220,"name":1220,"fn":1221,"description":1222,"org":1223,"tags":1224,"stars":23,"repoUrl":24,"updatedAt":1228},"mem0-oss-to-platform","migrate Mem0 projects to platform","Plan and then execute a migration of a project from the mem0 open-source \u002F self-hosted SDK (the local `Memory` class) to the mem0 Platform \u002F hosted \u002F managed SDK (the `MemoryClient` class). Use this whenever a developer wants to move, switch, or migrate their mem0 usage off OSS\u002Fself-hosted to the hosted API — e.g. \"migrate my mem0 setup to the platform\", \"switch from self-hosted mem0 to MemoryClient\", \"use my mem0 API key instead of a local Qdrant\", \"move mem0 to the cloud\u002Fhosted\u002Fmanaged service\", or \"replace my local mem0 vector store + embedder config with the platform\". Applies to Python (`from mem0 import Memory` → `from mem0 import MemoryClient`) and TypeScript\u002FJavaScript (`import { Memory } from \"mem0ai\u002Foss\"` → `import MemoryClient from \"mem0ai\"`). Trigger even when the user doesn't say the word \"migrate\" but clearly wants their existing mem0 integration to run against the hosted platform. It first produces a reviewable migration plan, then executes it after the developer approves. Strictly scoped to the mem0 integration — it does not refactor, restructure, or \"improve\" any unrelated code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1225,1226,1227],{"name":1057,"slug":29,"type":16},{"name":18,"slug":19,"type":16},{"name":1086,"slug":1087,"type":16},"2026-07-13T06:12:43.848266",{"slug":1230,"name":1230,"fn":1231,"description":1232,"org":1233,"tags":1234,"stars":23,"repoUrl":24,"updatedAt":1243},"mem0-test-integration","verify Mem0 integration tests","Verify a Mem0 integration produced by \u002Fmem0-integrate. Runs in the same workspace on the same branch (loose coupling) — installs dependencies, runs the repo's native test suite, then exercises a real end-to-end smoke flow against the user's API key. Produces a scorecard. TRIGGER when: user has just run \u002Fmem0-integrate and says \"verify\", \"test the integration\", \"run \u002Fmem0-test-integration\", or when a .mem0-integration\u002F directory exists and tests have not been run yet on the current branch. DO NOT TRIGGER when: the user wants to run general project tests (defer to the repo's native test command), or when no prior \u002Fmem0-integrate run exists in the current branch (ask them to run \u002Fmem0-integrate first). This skill ONLY catches compile and runtime bugs by design. Logical integration errors — wrong data stored, wrong time retrieved, wrong user scoping — are on the human reviewer.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1235,1236,1237,1240],{"name":1057,"slug":29,"type":16},{"name":18,"slug":19,"type":16},{"name":1238,"slug":1239,"type":16},"QA","qa",{"name":1241,"slug":1242,"type":16},"Testing","testing","2026-07-13T06:12:50.669701"]