remember

Classify and persist user memories across a 3-tier memory system.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/DMokong/r2mcp --skill remember-dmokong
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: remember
Source: https://github.com/DMokong/r2mcp/tree/main/skills/remember
Command: npx skills add https://github.com/DMokong/r2mcp --skill remember-dmokong

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Write memories to the 3-tier long memory system with judgment, deduplication, and conflict resolution. This skill is the single source of truth for what's worth remembering and how to file it.

Core Features & Use Cases

  • Classifies statements into the three memory tiers: preferences, project-context, and conversations.
  • Performs a client-side judgment pipeline (classification, conflict-check, operation selection, metadata generation) and supports both MCP-backed storage and direct fallback modes.
  • Automatically handles cross-references and ensures memory safety, deduplication, and non-blocking operation.

Quick Start

Invoke /remember <your memory> to persist it across the three memory tiers.

Frequently Asked Questions about remember

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

FAQPage Schema
How do I persist context and preferences across Claude Code sessions?

You can persist memories across Claude Code sessions by invoking a command to classify and store them in a 3-tier system handling preferences, project-context, and conversations.

How does cross-reference and deduplication work for long-term memory in Claude Code?

Cross-reference and deduplication operate via a client-side judgment pipeline that checks for conflicts and selects operations like ADD, UPDATE, or ARCHIVE to maintain memory safety.

Can I use direct mode instead of MCP for memory storage in Claude Code?

Yes, the memory system supports both MCP-backed storage and a direct fallback mode, allowing configurable storage operations without strictly requiring an MCP server.

What is the best way to handle conversational corrections and memory updates?

Conversational corrections are handled by the judgment pipeline which classifies the statement, resolves conflicts, and performs an UPDATE or ARCHIVE operation on existing memories.

Does the memory system support automatic session end hooks for Claude Code?

Yes, the memory persistence mechanism applies to ongoing sessions, session end hooks, and conversational corrections to enable durable recall of project context.