fix: correct agents.list path in openclaw.json detection

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-19 09:23:42 +10:00
co-authored by Claude Sonnet 4.6
parent 449f1f4916
commit c366d3ec47
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
"id": "memory-continuity", "id": "memory-continuity",
"name": "Memory Continuity", "name": "Memory Continuity",
"description": "Preserves working state across /new, reset, compaction, and gateway restarts via a simple markdown checkpoint file.", "description": "Preserves working state across /new, reset, compaction, and gateway restarts via a simple markdown checkpoint file.",
"version": "2.4.0", "version": "2.4.1",
"source": "https://github.com/dtzp555-max/memory-continuity", "source": "https://github.com/dtzp555-max/memory-continuity",
"configSchema": { "configSchema": {
"type": "object", "type": "object",
+2 -2
View File
@@ -111,9 +111,9 @@ openclaw_dir = sys.argv[2]
with open(config_file) as f: with open(config_file) as f:
data = json.load(f) data = json.load(f)
default_ws = data.get('defaults', {}).get('workspace', os.path.join(openclaw_dir, 'workspace', 'main')) default_ws = data.get('agents', {}).get('defaults', {}).get('workspace', os.path.join(openclaw_dir, 'workspace', 'main'))
agents = data.get('list', []) agents = data.get('agents', {}).get('list', [])
seen = set() seen = set()
idx = 1 idx = 1