FSI-Vitalis-CyberCore / src /core /memory_manager.py
AnonymousNomad
FSI Vitalis Core v1.0.0-alpha - Initial sovereign release
43f3517
import json
def load_identity():
"""
Retrieves the system identity from the secure local store.
Ensures persistent contextual awareness across operational cycles.
"""
try:
with open('core/identity.json', 'r') as f:
return json.load(f)
except FileNotFoundError:
return {"user_name": "Unknown", "alias": "Nomad"}