import json
with open('C:/MCSJAgent/cache/mcsj-jab-cache.json', encoding='utf-8') as f:
    d = json.load(f)
rows = d['rows']
# Show nodes 1-12 with full info
for r in rows[:12]:
    print(f"id={r['id']} depth={r['depth']} role={r['role']!r:20} name={r.get('name','')!r:30} children_count={r['children_count']} bounds={r['bounds']}")
