From 002366e2a6654955885af394d46602b591a25792 Mon Sep 17 00:00:00 2001 From: Rolando Santamaria Maso Date: Sat, 11 Jul 2026 21:48:58 +0200 Subject: [PATCH] chore(docker): enable extended memory in bundled configs Add memory.extended.enabled = true to both config.restricted.json and config.godmode.json so Docker Compose deployments use the new long-term semantic memory out of the box. --- docker/config.godmode.json | 5 ++++- docker/config.restricted.json | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docker/config.godmode.json b/docker/config.godmode.json index 4dd4968..5768fb7 100644 --- a/docker/config.godmode.json +++ b/docker/config.godmode.json @@ -40,7 +40,10 @@ "llm_extract": true, "llm_consolidate": true, "merge_threshold": 0.7, - "add_threshold": 0.3 + "add_threshold": 0.3, + "extended": { + "enabled": true + } }, "dangerous": { "action": "allow", diff --git a/docker/config.restricted.json b/docker/config.restricted.json index 3e684ff..52fc9ed 100644 --- a/docker/config.restricted.json +++ b/docker/config.restricted.json @@ -40,7 +40,10 @@ "llm_extract": true, "llm_consolidate": true, "merge_threshold": 0.7, - "add_threshold": 0.3 + "add_threshold": 0.3, + "extended": { + "enabled": true + } }, "dangerous": { "non_interactive": "deny",