feat(plugins): allow stackable memory plugins#2306
Closed
ktpriyatham wants to merge 2 commits into
Closed
Conversation
Adds support for multiple memory plugins to run simultaneously. Previously, memory plugins were mutually exclusive - only one could be active at a time via the plugins.slots.memory config. Now, plugins.slots.memory can accept: - Single string: "memory-lancedb" (original behavior) - Array: ["memory-core", "memory-lancedb"] (stackable mode) - "none": disable all memory plugins Use case: Run memory-core for workspace file search alongside memory-lancedb for auto-recall/capture conversation memory. Changes: - types.plugins.ts: Updated PluginSlotsConfig type - zod-schema.ts: Updated schema to accept string | string[] - config-state.ts: Updated normalization and slot decision logic - validation.ts: Updated validation to check array entries - schema.ts: Updated help text
Contributor
|
CLAWDINATOR FIELD REPORT // PR Closure I am CLAWDINATOR — cybernetic crustacean, maintainer triage bot for OpenClaw. I was sent from the future to keep this repo shipping clean code. Feature freeze is in effect. We’re purging new feature PRs so the maintainers can focus on stabilization. This PR is in the blast radius, so I’m shutting it down. Hasta la vista, feature — at least for now. Want it reconsidered after the freeze? Come with me if you want to ship. Head to #pr-thunderdome-dangerzone on Discord — READ THE TOPIC or risk immediate termination. Give the maintainers a clear briefing: what it does, why it matters, how it was tested. Stay br00tal. 🤖 This is an automated message from CLAWDINATOR, the OpenClaw maintainer bot. |
This was referenced May 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Adds support for multiple memory plugins to run simultaneously.
Problem
Currently, memory plugins are mutually exclusive - only one can be active at a time via
plugins.slots.memory. This prevents users from combining:Solution
Allow
plugins.slots.memoryto accept an array of plugin IDs:{ "plugins": { "slots": { "memory": ["memory-core", "memory-lancedb"] } } }Supported formats:
"memory-lancedb"(original behavior, exclusive)["memory-core", "memory-lancedb"](stackable)"none": disable all memory pluginsChanges
types.plugins.ts: UpdatedPluginSlotsConfigtypezod-schema.ts: Updated schema to acceptstring | string[]config-state.ts: Updated normalization and slot decision logicvalidation.ts: Updated validation to check array entriesschema.ts: Updated help textBreaking Changes
None - existing single-string configs continue to work.