ReMeMiddleware, use the Python integration instead.
Choose an Integration Pattern
The following patterns differ in how they package service access and memory behavior:
All three patterns connect to the same service boundary:
Skill
A Skill is the behavior layer above the service interface, not a service or transport. The bundledskills/reme_memory/ uses the ReMe CLI; another host can apply the same behavior through MCP tools or HTTP.
To use the Skill, install the complete skills/reme_memory/ directory in the host’s skill location. Keep SKILL.md and its supporting rules together. The host should then:
- Search, then read relevant files before answering about earlier conversations, preferences, decisions, or project history.
- Record only durable facts, preferences, decisions, and lessons; do not store secrets or sensitive information by default.
- Call
auto_memoryafter a useful session or when stable information appears, using a stablesession_idfrom the host lifecycle. - Let ReMe’s cron run
auto_dream, or trigger it from the host lifecycle. - Treat ReMe as memory input; the Agent still decides whether and how to use the result.
Plugin
A plugin packages the pieces needed by a specific host, such as service connection settings, tools, Skills, and session hooks. It should point to an already deployed ReMe service and use the host lifecycle for automatic recall or recording. Installing a plugin does not imply that it starts or owns ReMe.Maintained Integrations
ReMe currently includes maintained integration packages for these hosts:
The following sections cover their host-specific setup and verification.
Claude Code
The Claude Code plugin combines MCP recall, a recall skill, and asynchronous session recording. It connects to a shared ReMe MCP server and does not start ReMe itself.1. Start ReMe
Install ReMe through the ReMe Quick Start, then keep the MCP service running:http://127.0.0.1:2333/mcp. Automatic recording also requires the configured LLM environment.
2. Install the Plugin
Clone the ReMe repository. From its root, add the bundled marketplace and install the plugin in Claude Code:/mcp, and confirm that the reme server and tools are connected.
The package is located under plugins/claude_code/. Its .mcp.json defines the server URL, the reme-memory skill controls recall, and hooks/auto_memory.py calls auto_memory_cc after a session ends.
3. Verify Recall and Recording
Write a distinctive memory from a terminal:plugins/claude_code/reme/.mcp.json too. See the plugin README for hook overrides and log locations.
QwenPaw
QwenPaw integrates through the bundled ReMe Skill described above. The Skill defines when the Agent should recall or record; the ReMe service handles persistence, indexing, and refinement.1. Start ReMe
Keep the default HTTP service running:2. Install the ReMe Skill
Install the repository’s completeskills/reme_memory/ directory in QwenPaw’s skill location. Keep SKILL.md and its behavior rules together.
Once loaded, QwenPaw should:
- search and read before answering about past conversations, preferences, decisions, or project history;
- record durable information with
auto_memoryrather than saving every turn; - obtain explicit consent before storing sensitive information;
- provide a stable
session_idfrom its session lifecycle.
skills/qwenpaw_memory directly maintains MEMORY.md and memory/*.md; it does not call ReMe. Use skills/reme_memory for ReMe integration.3. Verify Recall and Recording
Write a test memory from a terminal:auto_memory explicitly or enable recall only; do not invent a missing message history.