``` xml-pipeline/ ├── agentserver/ │ ├── auth/ │ │ ├── __init__.py │ │ └── totp.py │ ├── config/ │ │ ├── organism_identity/ │ │ │ └── README.txt │ │ └── __init__.py │ ├── listeners/ │ │ ├── examples/ │ │ │ ├── __init__.py │ │ │ ├── echo_chamber.py │ │ │ └── grok_personality.py │ │ ├── __init__.py │ │ ├── llm_connection.py │ │ └── llm_listener.py │ ├── message_bus/ │ │ ├── steps/ │ │ │ ├── __init__.py │ │ │ └── repair_step.py │ │ ├── __init__.py │ │ ├── bus.py │ │ ├── config.py │ │ ├── envelope.py │ │ ├── errors.py │ │ ├── message_state.py │ │ ├── scheduler.py │ │ └── thread.py │ ├── prompts/ │ │ ├── grok_classic.py │ │ └── no_paperclippers.py │ ├── schema/ │ │ ├── envelope.xsd │ │ └── privileged-msg.xsd │ ├── utils/ │ │ ├── __init__.py │ │ └── message.py │ ├── __init__.py │ ├── agentserver.py │ ├── main.py │ └── xml_listener.py ├── docs/ │ ├── archive-obsolete/ │ │ ├── logic-and-iteration.md │ │ ├── thread-management.md │ │ └── token-scheduling-issues.md │ ├── configuration.md │ ├── core-principles-v2.1.md │ ├── listener-class-v2.1.md │ ├── message-pump-v2.1.md │ ├── self-grammar-generation.md │ └── why-not-json.md ├── tests/ │ ├── scripts/ │ │ └── generate_organism_key.py │ └── __init__.py ├── LICENSE ├── README.md ├── __init__.py ├── pyproject.toml ├── setup-project.ps1 └── structure.md ```