Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Mem0 memory layer for AI applications. Add persistent memory, personalization, and semantic search to Claude workflows using the Mem0 Platform MCP server.
npx claudepluginhub gooseeeeeeeeee/mem0-memory-eval-improvements --plugin mem0Mem0 persistent memory integration for Codex. Automatically retrieve relevant memories at the start of each task, store key learnings when tasks complete, and capture session state before context is lost. Use the mem0 MCP tools (add_memory, search_memories, get_memories, etc.) for all memory operations.
Integrate Mem0 Platform into AI applications for persistent memory, personalization, and semantic search. Use this skill when the user mentions "mem0", "memory layer", "remember user preferences", "persistent context", "personalization", or needs to add long-term memory to chatbots, agents, or AI apps. Covers Python and TypeScript SDKs, framework integrations (LangChain, CrewAI, Vercel AI SDK, OpenAI Agents SDK, Pipecat), and the full Platform API. Use even when the user doesn't explicitly say "mem0" but describes needing conversation memory, user context retention, or knowledge retrieval across sessions.
Modifies files
Hook triggers on file write and edit operations
External network access
Connects to servers outside your machine
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Battle-tested Claude Code plugin for engineering teams — 60 agents, 232 skills, 75 legacy command shims, production-ready hooks, and selective install workflows evolved through continuous real-world use
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques
Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer
v9.38.0 — Agent summaries, prompt-size preflight, research fanout, and Codex-compatible portable skills. Run /octo:setup.
Plugin that includes the Figma MCP server and Skills for common workflows
Learn more · Join Discord · Demo
📄 Building Production-Ready AI Agents with Scalable Long-Term Memory →
This repository is my learning fork of mem0, focused on improving two concrete memory-system failure modes through iterative evaluation:
This repository is an independent learning fork and is not affiliated with mem0ai.
I treated this as a small research-style engineering project: define failure taxonomy, build controlled datasets, run repeated evaluations, and update architecture based on measured regressions.
Temporal reranking module
MemoryConfig:
temporal_half_life_daystemporal_weight_overridetemporal_base_decay_weightConflict resolution module
superseded_by, supersedes, source_typelink_type routing in extraction + resolver:
supersede -> eligible to hide old memoryaugment -> keep both memories visiblerelated -> keep both memories visibleevaluation/temporal/controlled_temporal_eval_set.json (40 cases)
evaluation/temporal/run_controlled_temporal_eval.pyevaluation/conflict/controlled_conflict_eval_set.json (21 cases)
evaluation/conflict/run_controlled_conflict_eval.pyphase1_experiment_log.mdFrom evaluation/temporal/controlled_temporal_eval_report.json:
explicit_recency top1: 0.0 -> 1.0implicit_recency top1: 0.0 -> 1.0compact_gap top1: 0.0 -> 1.0historical_lookback top1 remains 1.0 after historical gating fixatemporal_fact atemporal drop rate remains 0.0Final run from evaluation/conflict/controlled_conflict_eval_report.json:
case_pass = 20/21assertion_fail = 1assertion_observed = 25 -> 3 -> 0Interpretation:
related) without incorrect hiding.link_type: prevents "linked = hidden" coupling and cleanly separates replacement from augmentation.