From 2184442bc2f720552ef01a88e073b457bdcabea8 Mon Sep 17 00:00:00 2001 From: dtzp555 Date: Thu, 19 Mar 2026 10:52:39 +1000 Subject: [PATCH] fix: correct openclaw.json key paths in verify.sh --all-agents Co-Authored-By: Claude Sonnet 4.6 --- openclaw.plugin.json | 2 +- scripts/verify.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/openclaw.plugin.json b/openclaw.plugin.json index d5976ba..ba5100b 100644 --- a/openclaw.plugin.json +++ b/openclaw.plugin.json @@ -2,7 +2,7 @@ "id": "memory-continuity", "name": "Memory Continuity", "description": "Preserves working state across /new, reset, compaction, and gateway restarts via a simple markdown checkpoint file.", - "version": "2.6.0", + "version": "2.6.1", "source": "https://github.com/dtzp555-max/memory-continuity", "configSchema": { "type": "object", diff --git a/scripts/verify.sh b/scripts/verify.sh index 22bde6f..45ee87b 100755 --- a/scripts/verify.sh +++ b/scripts/verify.sh @@ -107,9 +107,9 @@ config_file = sys.argv[1] openclaw_dir = sys.argv[2] with open(config_file) as 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')) seen = set() -for agent in data.get('list', []): +for agent in data.get('agents', {}).get('list', []): agent_id = agent.get('id', '') if not agent_id or agent_id in seen: continue