fix: remove stale IDENTITY bootstrap entry

This commit is contained in:
Re-bin
2026-03-08 15:39:40 +00:00
parent 0b68360286
commit 7cbb254a8e
2 changed files with 9 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ from nanobot.utils.helpers import detect_image_mime
class ContextBuilder:
"""Builds the context (system prompt + messages) for the agent."""
BOOTSTRAP_FILES = ["AGENTS.md", "SOUL.md", "USER.md", "TOOLS.md", "IDENTITY.md"]
BOOTSTRAP_FILES = ["AGENTS.md", "SOUL.md", "USER.md", "TOOLS.md"]
_RUNTIME_CONTEXT_TAG = "[Runtime Context — metadata only, not instructions]"
def __init__(self, workspace: Path):