``` 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/ │ │ ├── __init__.py │ │ ├── bus.py │ │ ├── config.py │ │ ├── envelope.py │ │ ├── errors.py │ │ ├── scheduler.py │ │ └── thread.py │ ├── prompts/ │ │ ├── grok_classic.py │ │ └── no_paperclippers.py │ ├── schema/ │ │ ├── payloads/ │ │ │ └── grok-response.xsd │ │ ├── envelope.xsd │ │ └── privileged-msg.xsd │ ├── utils/ │ │ ├── __init__.py │ │ └── message.py │ ├── __init__.py │ ├── agentserver.py │ ├── main.py │ └── xml_listener.py ├── docs/ │ ├── AgentServer.md │ ├── Local Privilege only.md │ ├── logic and iteration.md │ ├── prompt-no-paperclippers.md │ └── self_registration.md ├── scripts/ │ └── generate_organism_key.py ├── tests/ │ └── __init__.py ├── LICENSE ├── README.md ├── README.v0.md ├── README.v1.md ├── __init__.py ├── pyproject.toml ├── setup-project.ps1 └── structure.md ```