mirror of
https://github.com/dtzp555-max/memory-continuity.git
synced 2026-07-19 09:42:42 +00:00
fix: correct openclaw.json key paths in verify.sh --all-agents
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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.6.0",
|
"version": "2.6.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
@@ -107,9 +107,9 @@ config_file = sys.argv[1]
|
|||||||
openclaw_dir = sys.argv[2]
|
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'))
|
||||||
seen = set()
|
seen = set()
|
||||||
for agent in data.get('list', []):
|
for agent in data.get('agents', {}).get('list', []):
|
||||||
agent_id = agent.get('id', '')
|
agent_id = agent.get('id', '')
|
||||||
if not agent_id or agent_id in seen:
|
if not agent_id or agent_id in seen:
|
||||||
continue
|
continue
|
||||||
|
|||||||
Reference in New Issue
Block a user