External Reranker Plugin for OpenClaw Memory-Core: Repurpose Old GPUs

A developer has released a plugin for OpenClaw that allows memory-core to use an external reranker, moving the MMR algorithm into a plugin and adding a new memory-external-reranker plugin. If you've got an old GPU collecting dust, this is a practical way to put it to work.
How It Works
The design refactors MMR into a separate plugin called memory-mmr, and adds memory-external-reranker as another plugin. With no changes to openclaw.json, the new memory-mmr plugin loads automatically if hybrid memory is enabled. To enable the external reranker, follow the docs in the repo. There's also a fallback to MMR if the reranker is unavailable.
Tested Setup
- Embeddings model:
Qwen/Qwen3-Embedding-4B-GGUF:Q8_0 - Reranker model:
mradermacher/Qwen3-Reranker-4B-GGUF:Q8_0 - Fallback: MMR
- GPU: RTX 3060 (12GB VRAM) — both models run together comfortably
Why Not QMD?
QMD runs locally with no ability to offload the model. If you run OpenClaw in Docker on a host without a usable GPU (or don't want CPU inference), QMD is a performance hit. This plugin lets you use external reranking with models served elsewhere (including that old RTX 3060 sitting idle).
Is It Worth It?
The author reports that memory recall feels improved, though they don't have metrics to quantify it. For setups with a spare GPU or separate inference server, this plugin offers a clean way to offload reranking without changing core memory-core behavior.
Repo and Branch
The plugin is in the external-reranker branch of the fork: github.com/michmill1970/openclaw/tree/external-reranker. The author keeps the fork close to main, updating a few times a day.
📖 Read the full source: r/openclaw
👀 See Also

Werld: Open-Ended Artificial Life Simulation with Evolving Neural Networks
Werld is a real-time artificial life simulation where agents with NEAT neural networks evolve their own neural architecture, sensory processing, and behaviors without hardcoded rules or reward functions. The simulation starts with 30 agents on a Watts-Strogatz small-world graph with 64 sensory channels, 7 continuous motor functions, and 29 heritable genome traits.

ClawMetry adds remote monitoring with E2E encryption for OpenClaw agents
ClawMetry v0.1.0 now includes cloud sync for remote monitoring of OpenClaw agents from any browser or Mac menu bar app, with end-to-end encryption that keeps data encrypted until it reaches your client.

4-layer self-audit system for OpenClaw behavioral evolution
A developer built a 4-layer audit system where Gemini reviews Claude's blind spots weekly, catching patterns Claude missed in self-review. The system includes post-fix verification, pattern mining, external mirroring, and expectation vs reality checks.

Codeflash Analysis: 118 Performance Bugs Found in Two PRs Written with Claude Code
Codeflash measured performance of two major features built with Claude Code and found 118 functions running up to 446x slower than necessary. The analysis revealed patterns of inefficient algorithms, redundant computation, missing caching, and suboptimal data structures.