[loop-cycle-36] fix: create soul.md and wire into system context (#125) (#130)

This commit is contained in:
2026-03-15 08:37:24 -04:00
parent 466ad08d7d
commit 92e123c9e5
4 changed files with 155 additions and 1 deletions

View File

@@ -460,6 +460,11 @@ class MemorySystem:
"""
context_parts = []
# 0. Soul identity (immutable, always first)
soul_content = self.read_soul()
if soul_content:
context_parts.append("## Soul Identity\n" + soul_content)
# 1. Hot memory
hot_content = self.hot.read()
context_parts.append("## Hot Memory\n" + hot_content)