update fields; cleanup config files

Moved "project_memory_isolation" setting to config.default.json and set "agent_memory_subdir" to "default" (so the default is written verbatim without users having to lookup the Python code). Deleted obsolete config.json file to streamline memory config management.

Alessandro committed Feb 21, 2026 at 18:45 UTC 65b7ed9a11588dad66a9cdc11e706908901316ee
2 files changed +2 -19
plugins/memory/config.default.json
+2 -1
@@ -1,4 +1,5 @@
1 {
2 + "project_memory_isolation": true,
3 "memory_recall_enabled": true,
4 "memory_recall_delayed": false,
5 "memory_recall_interval": 3,
@@ -13,5 +14,5 @@
14 "memory_memorize_enabled": true,
15 "memory_memorize_consolidation": true,
16 "memory_memorize_replace_threshold": 0.9,
16 - "agent_memory_subdir": ""
17 + "agent_memory_subdir": "default"
18 }
plugins/memory/config.json deleted
-18
@@ -1,18 +0,0 @@
1 -{
2 - "project_memory_isolation": true,
3 - "memory_recall_enabled": true,
4 - "memory_recall_delayed": false,
5 - "memory_recall_interval": 3,
6 - "memory_recall_history_len": 10000,
7 - "memory_recall_memories_max_search": 12,
8 - "memory_recall_solutions_max_search": 8,
9 - "memory_recall_memories_max_result": 5,
10 - "memory_recall_solutions_max_result": 3,
11 - "memory_recall_similarity_threshold": 0.7,
12 - "memory_recall_query_prep": false,
13 - "memory_recall_post_filter": false,
14 - "memory_memorize_enabled": true,
15 - "memory_memorize_consolidation": true,
16 - "memory_memorize_replace_threshold": 0.9,
17 - "agent_memory_subdir": "default"
18 -}