Mem0 1.0.0

PassAudited by ClawScan on May 1, 2026.

Overview

This is a coherent Mem0 memory skill, but it persistently stores conversational context and uses an OpenAI API key, so users should review privacy and setup implications.

This skill appears purpose-aligned and not malicious from the provided artifacts. Before installing, be comfortable with persistent memory, OpenAI-backed memory extraction, local storage under ~/.mem0, and the ability to list or delete stored memories when needed.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The assistant may remember and reuse personal context across conversations, including preferences, work details, or family context.

Why it was flagged

The skill intentionally creates persistent memories that can influence later responses. This is purpose-aligned, but incorrect or overly broad stored memories could affect future conversations.

Skill content
automatically learns and recalls user preferences, patterns, and context across all interactions
Recommendation

Install only if you want persistent memory. Periodically review stored memories and use the delete commands for anything inaccurate or no longer wanted.

What this means

Memory operations may use the user's OpenAI account and could incur API usage; conversation content passed for memory extraction is processed by the configured OpenAI provider.

Why it was flagged

The skill uses the user's OpenAI API key for embeddings and memory extraction, even though the registry metadata lists no required environment variables or primary credential.

Skill content
apiKey: process.env.OPENAI_API_KEY || ""
Recommendation

Use an appropriate scoped OpenAI key, monitor usage, and avoid storing secrets or highly sensitive information.

What this means

The skill depends on the local Node/npm environment and the mem0ai package for its core behavior.

Why it was flagged

The skill relies on an external npm dependency, and the registry metadata does not declare an install mechanism or required binary despite Node-based scripts.

Skill content
"dependencies": {
    "mem0ai": "^2.2.1"
  }
Recommendation

Confirm dependencies are installed from trusted sources and prefer using the included lockfile when setting up the package.

What this means

If used accidentally, the assistant's stored memory for that user could be erased.

Why it was flagged

The skill exposes a command that can delete all stored memories for a user. It is clearly documented and purpose-aligned, but it is a destructive memory-management action.

Skill content
node scripts/mem0-delete.js --all --user=abhay
Recommendation

Use bulk deletion only when intentionally clearing memory, and consider listing memories before deleting them.