
Status
- 3 installs
- 62.5k repo stars
- Updated August 5, 2026
- mem0ai/mem0
Diagnoses Mem0 connectivity, API key validity, identity resolution, and memory read/write to verify the plugin is working.
About
Runs a full diagnostic of the Mem0 plugin, checking API key, resolved identity, connectivity, and a probe write it then cleans up. A developer uses it when memory operations fail or searches return empty to troubleshoot Mem0.
- Runs all checks then shows one summary, not stopping on first failure
- Verifies read and write with a probe memory that is deleted after
Status by the numbers
- 3 all-time installs (skills.sh)
- +1 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #13,677 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/mem0ai/mem0 --skill statusAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 3 |
|---|---|
| repo stars | ★ 62.5k |
| Last updated | August 5, 2026 |
| Repository | mem0ai/mem0 ↗ |
What it does
Diagnoses Mem0 connectivity, API key validity, identity resolution, and memory read/write to verify the plugin is working.
Files
Health Check / Status
Run a diagnostic check on the Mem0 plugin. Useful for troubleshooting.
Execution
Run ALL checks, then display a single summary. Do not stop on the first failure.
Check 1: API key
Verify the API key is configured. The plugin loads it from MEM0_API_KEY env var or ~/.pi/agent/mem0-config.json.
- If not set: FAIL — "No API key configured"
- If set: PASS — show first 6 chars followed by
...
Check 2: Identity resolution
Report the resolved identity:
user_id: from config, env, or system userproject_id: auto-detected from current directorysession_id: current session identifier
PASS if user_id and project_id are non-empty. WARN if any falls back to defaults.
Check 3: Connectivity
Use mem0_memory tool with action="search", query="health check".
- If returns successfully (even empty): PASS
- If errors: FAIL — show the error message
Check 4: Memory write capability
Use mem0_memory tool with action="add", content="Health check probe — safe to delete.".
- If succeeds: PASS — then clean up by deleting the probe memory.
- If errors: FAIL — show the error.
Display
## mem0 health
PASS API Key m0-dVe...
PASS Identity user=kartik, project=my-app, session=abc123
PASS Connectivity 142ms
PASS Write/Read write + delete OK
All checks passed.If any check fails, add a ## Troubleshooting section with specific fix steps.
Extended mode: Memory Quality Analysis
When invoked with --deep (e.g., /mem0-status --deep), run the standard checks above plus a memory quality scan.
Quality Check 1: Duplicates
Fetch all memories with mem0_memory action="get_all". Compare pairs within the same category for high textual overlap (shared nouns > 60%). Report:
Potential duplicates: <N> pairs
[mem0:<id1>] ~ [mem0:<id2>] — both about "<shared topic>"Quality Check 2: Stale memories
Flag memories older than 180 days that haven't been accessed recently.
Quality Check 3: Contradictions
Within each category, flag pairs that assert opposing facts.
Quality summary
## Memory Quality
Duplicates: <N> · Stale: <N> · Contradictions: <N>If all counts are 0: Memory quality: clean. If any non-zero: append Run /mem0-dream to fix.